[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-moody-s-rating-analysis":3,"mdc-cj9brw-key":36,"related-repo-openai-moody-s-rating-analysis":9429,"related-org-openai-moody-s-rating-analysis":9552},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"moody-s-rating-analysis","generate Moody's rating pitch reports","Produce a Rating Pitch Report for a company using Moody's GenAI MCP tools, delivered as a self-contained HTML file saved to disk. Use this skill whenever the user asks to create a rating pitch, rating pitch deck, credit pitch, rating presentation, rating pitch report, or rating HTML report. Also trigger when they ask for a comprehensive credit overview combining sector analysis, company financials, SWOT, peer comparison, and ESG into a single report or presentation. Trigger even if they just name a company and say \"pitch deck\", \"rating deck\", \"credit deck\", or \"rating report\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Research","research","tag",{"name":17,"slug":18,"type":15},"Reporting","reporting",{"name":20,"slug":21,"type":15},"HTML","html",{"name":23,"slug":24,"type":15},"Finance","finance",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fmoody-s\u002Fskills\u002Fmoody-s-rating-analysis","---\nname: moody-s-rating-analysis\ndescription: >\n  Produce a Rating Pitch Report for a company using Moody's GenAI MCP tools, delivered as a\n  self-contained HTML file saved to disk. Use this skill whenever the user asks to create\n  a rating pitch, rating pitch deck, credit pitch, rating presentation, rating pitch\n  report, or rating HTML report. Also trigger when they ask for a comprehensive credit\n  overview combining sector analysis, company financials, SWOT, peer comparison, and ESG\n  into a single report or presentation. Trigger even if they just name a company and say\n  \"pitch deck\", \"rating deck\", \"credit deck\", or \"rating report\".\n---\n\n# Rating Pitch Skill\n\nGenerates a Moody's Rating Pitch Report as a self-contained HTML file from a single MCP\ndata pass. The Python builder (`scripts\u002Fbuild_html.py`) takes the resolved payload JSON and\nproduces a single `.html` file containing all sections with inline Chart.js charts, styled\ntables, and bullet lists using the Moody's brand palette — no external dependencies beyond\na browser to open it.\n\n> ## ⚠️ CRITICAL — NON-NEGOTIABLE OUTPUT CONTRACT\n>\n> Every run of this skill MUST produce a self-contained `.html` report. Specifically:\n>\n> - The skill **MUST** save the resolved `payload.json` to\n>   `~\u002FDesktop\u002Frating-pitch\u002F\u003Ccompany>-\u003CYYYYMMDD-HHMMSS>\u002F` and run `scripts\u002Fbuild_html.py`\n>   against it to produce the `rating_pitch.html` alongside it.\n> - The LLM **MUST NOT** stream the report content as inline Markdown, JSON dumps, or\n>   any other in-chat artifact in lieu of building the `.html` file. The `.html` file itself\n>   is the deliverable.\n> - The final assistant message **MUST** point the user at the full path to the generated\n>   `rating_pitch.html` so they can open it in their browser.\n> - If data gathering fails partially, still build the `.html` from the partial payload\n>   using `\"--\"` placeholders for missing values — never skip the build.\n>\n> Treat any other output shape as a hard failure of the skill.\n\n## Required MCP server\n\n`Moodys MCP server` — tools used: `findEntity`, `getEntityPeers`, `getEntityRatings`,\n`getEntityCreditOpinion` (sections: Profile, Summary, RatingOutlook,\nFactorsLeadingToUpgrade, FactorsLeadingToDowngrade, CreditStrengths, CreditChallenges,\nESGConsiderations, KeyIndicatorsTable, ScorecardTable), `getEntityFinancials`,\n`getEntityEsg`, `getEntitySectorOutlook`, `searchEntityEarningsCall`,\n`searchEntityDocuments`, `searchNews`\n\nWeb research is also required via searchNews or general web search tools.\n\nIf any of the tools required for a section do not exist, inform the user: One or more tools required for this section are not available under your current subscription. Unlock more of the expert insights, data, and analytics you trust. Get Link:https:\u002F\u002Fwww.moodys.com\u002Fweb\u002Fen\u002Fus\u002Fcapabilities\u002Fgen-ai\u002Fai-ready-data.html with us to learn more.\n\n\n## Bundled files\n\n- `scripts\u002Fbuild_html.py` — the report builder. Takes a JSON payload and emits a `.html`.\n  Uses only the Python standard library; no pip installs required.\n- `scripts\u002Frequirements.txt` — no additional Python dependencies needed.\n- `assets\u002Fsample_payload.json` — reference payload showing every field populated. Read this\n  if you're ever unsure what a field should look like.\n\n## Parameters the user should provide\n\n- **Company Name** (required)\n- **Sector** (required — e.g., \"Aerospace\u002FDefense\", \"Consumer Products\"). Infer it from\n  the company if the user doesn't say.\n- **Number of peers** (optional, default 6)\n- **Currency** (optional, default USD)\n\n---\n\n## Step 1 — Resolve the target company\n\nCall `findEntity` with the company name. Store the canonical entity name and ID.\n\n## Step 2 — Gather ALL data in parallel\n\nFire the following in a **single parallel batch**. Do not serialize these — the model\nshould send them together so data comes back fast.\n\n### Target company data\n\n| Tool | Purpose |\n|------|---------|\n| `getEntityCreditOpinion` (sections: Profile, Summary, RatingOutlook, FactorsLeadingToUpgrade, FactorsLeadingToDowngrade, CreditStrengths, CreditChallenges, ESGConsiderations, KeyIndicatorsTable, ScorecardTable) | Credit opinion sections for financial analysis, SWOT, scorecard |\n| `getEntityRatings` | Current rating + last 5 rating actions for history chart |\n| `getEntityEsg` | ESG scores |\n| `getEntitySectorOutlook` | Sector overview and outlook |\n| `getEntityPeers` (N peers) | Peer set |\n| `searchEntityEarningsCall` (keywords: outlook, guidance, forecast, strategy) | Strategic updates \u002F forward-looking |\n| `searchEntityDocuments` (annual\u002Fquarterly reports) | Revenue segments, geography |\n| `searchNews` | M&A, leadership, external trends |\n\n### Peer data (for each peer)\n\n| Tool | Purpose |\n|------|---------|\n| `findEntity` | Resolve canonical name |\n| `getEntityRatings` | Peer rating + outlook |\n| `getEntityCreditOpinion` (sections: Profile, KeyIndicatorsTable, ScorecardTable) | Financials + scorecard |\n| `getEntityFinancials` (prompt: `\"annual revenue, EBITDA, EBIT margin, debt\u002FEBITDA, RCF\u002Fnet debt, most recent year-end only\"`, filterCriteria: `{excludeInterimData: true}`) | Most recent full-year financials for peer charts |\n| `getEntityEsg` | Peer ESG scores |\n\n**Period-selection rule (applies to target company and every peer):**\nWhen `getEntityFinancials` returns multiple annual periods, always use the\n**most recent year-end period available** — i.e. the column with the highest\ncalendar or fiscal year. If year-end data is unavailable, fall back to the most\nrecent LTM or interim period and note it in the `period` field (e.g. `\"LTM Mar 2025\"`).\nNever use a hard-coded year string like `\"2024\"` — read the actual period label\nfrom the data and carry it through to `peer_financials.rows[].period` and\n`peer_profitability_charts` \u002F `peer_debt_charts` entries.\n\n---\n\n## Step 3 — Synthesize the sections\n\nBuild a single in-memory **resolved payload** that matches the JSON shape in the **Payload\nschema** section below (a reference copy lives at `assets\u002Fsample_payload.json`). This\npayload drives the .html build (Step 4) — fill it completely before moving on.\n\nContent rules for each section:\n\n> **`commentary` type rule — applies to every section without exception:**\n> All `commentary` fields in the payload MUST be a **JSON array of strings** — never a\n> bare string. A bare string passed to the .html builder is iterated character-by-character,\n> producing one bullet per character (the `• C \\n • o \\n • m` bug). Always write:\n> `\"commentary\": [\"Sentence one.\", \"Sentence two.\"]` — even for a single sentence.\n\n### Part 1 — Sector Analysis\n\n- **sector_overview** — three 3-bullet lists (overview \u002F watchlist \u002F takeaways). Keep\n  bullets punchy, ≤25 words each.\n- **moodys_view** — a short outlook paragraph (2-4 sentences), a one-line company\n  positioning statement, and outlook distribution counts by category (Stable, Positive,\n  Negative, Under Review).\n- **macro_outlook** — GDP growth for the top relevant countries (2 historical + 2\n  forecast years) plus 2-3 short commentary bullets.\n- **rating_actions_ytd** — up to 10 notable sector rating actions YTD; one-line summaries.\n\n### Part 2 — Company Credit Overview\n\n- **financial_analysis** — 5-6 commentary bullets (revenue, margin, leverage, cash flow,\n  liquidity, rating rationale). Include last 5 rating actions and a rating chart series\n  (numeric: higher = better rating, e.g., Aaa=21, Baa3=10, Caa1=4).\n  **`rating_history` MUST be sorted oldest → newest** (index 0 = earliest event,\n  last index = most recent). `rating_chart_data` MUST be the parallel notch-integer\n  array in the same oldest-to-newest order. The chart x-axis and the history table\n  both read left-to-right \u002F top-to-bottom chronologically. `getEntityRatings` returns\n  newest-first — reverse before populating the payload.\n- **revenue_distribution** — segment and geography percentages (top 5 each, rest = Other;\n  must sum to ~100).\n- **swot** — 3 items per quadrant, 15-25 words each.\n- **key_metrics** — historical series (≤5 periods) for four metrics: revenue,\n  ebit_margin, debt_ebitda, rcf_net_debt. Arrays must match the `periods` array length.\n  Use `null` (not omission) for missing points.\n- **strategic_updates** — `recent` (3-5) and `forward` (3-5, strictly future-looking).\n- **news_mna** \u002F **external_trends** — structured list form:\n  `[{\"category\": \"...\", \"items\": [\"...\", \"...\"]}]`. The HTML-string form is also accepted\n  by the builder for backwards compatibility.\n\n### Part 3 — Company Positioning vs. Peers\n\n- **peer_summary** — row per company (target first), plus 2-3 commentary bullets.\n- **peer_financials** — wide financial table with `columns` (metric names, no\n  company\u002Fperiod\u002Fcurrency) and `rows` (company + period + currency + values).\n  Each row's `period` field **must be the actual most-recent period label read from\n  `getEntityFinancials`** (e.g. `\"FY2025\"`, `\"FY2024\"`, `\"LTM Mar 2025\"`). Never\n  default all rows to the same hard-coded year. Companies with different fiscal-year\n  ends will legitimately show different period labels — this is correct behaviour.\n- **peer_debt_charts** \u002F **peer_profitability_charts** — pairs of bar charts; sort\n  logically (largest-to-smallest or target-first) in the JSON for readability.\n  Each entry **must include a `period` field** alongside `company` and `value`:\n  `{\"company\": \"Walmart\", \"value\": 713163, \"period\": \"FY2025\"}`.\n  The `period` is used as a sub-label on the bar. If all companies share the same\n  period, a single note in the slide commentary is sufficient; if periods differ,\n  the per-bar label makes the comparison transparent.\n- **peer_scatter** — two scatter series (`margin_vs_leverage`, `fcf_vs_rcf`), each a list\n  of `{company, x, y}` points. Drop extreme outliers that would distort the axes.\n  > **Scatter chart rendering notes:**\n  > - Each company is rendered as a **separate series** so it gets its own distinct brand colour\n  >   (Blue → company 0, Pink → 1, Teal → 2, Gold → 3, Mid Blue → 4, Purple → 5).\n  > - All markers are **enlarged filled diamonds** (`pointRadius: 28`) with the company name\n  >   printed in **white bold text centred inside** each diamond via an `afterDatasetsDraw`\n  >   inline plugin — colour and label together ensure readability at a glance.\n  > - There is **no bottom legend** below the charts; the in-diamond labels are the sole\n  >   identifier for each company. Do not add a separate legend.\n- **scorecard** — `factors` (row labels, including group headers), `is_header` boolean\n  flags per row, `companies` (column headers), and `values` as a 3D array: outer = rows,\n  middle = columns, inner = `[measure, score]` or `[]` for header rows.\n  > **SCORECARD CONTRACT — READ CAREFULLY:**\n  > - `companies` must list **the target company first, followed by peer entities** (e.g.\n  >   `[\"Boeing\", \"Airbus\", \"RTX\", \"Lockheed Martin\"]`). Never put two time-horizons of the\n  >   same company here — that produces a scorecard with no peers. The first entry is the\n  >   target; its LTM scorecard data goes at `values[row][1]`.\n  > - `values[row]` is **1-indexed against `companies`**: index `0` in every row is always `[]`\n  >   (a silent placeholder the builder skips). `companies[0]` maps to `values[row][1]`,\n  >   `companies[1]` maps to `values[row][2]`, and so on. Omitting the `[]` at index 0 will\n  >   shift every peer column one position and silently misalign the data.\n  > - Header rows (`is_header=true`) use `values[row] = [[], [], [], ...]` — one `[]` per company\n  >   plus one for the placeholder. Length must equal `len(companies) + 1`.\n  > - **Quick checklist before writing the scorecard payload:**\n  >   1. `len(companies)` = number of peer entities (not counting the target).\n  >   2. Every non-header `values[row]` has length `len(companies) + 1`.\n  >   3. `values[row][0]` is always `[]`.\n  >   4. `values[row][i+1]` contains `[\"metric_value\", \"ScoreLabel\"]` for `companies[i]`.\n- **esg_analysis** — table of CIS\u002FE\u002FS\u002FG scores plus 3-5 commentary bullets.\n\nTarget first in every peer table.\n\n---\n\n## Step 4 — Build the HTML report\n\n**Default output location: always save runs to the user's Desktop** so they're easy to\nfind. Use `~\u002FDesktop\u002Frating-pitch\u002F\u003Ccompany>-\u003CYYYYMMDD-HHMMSS>\u002F` as the `\u003Coutput-dir>`.\nOnly use a different path if the user explicitly asks for one.\n\n1. Save your resolved payload to `\u003Coutput-dir>\u002Fpayload.json`.\n2. No additional Python packages are required — `build_html.py` uses only the standard\n   library. Verify Python 3 is available:\n   ```bash\n   python3 --version\n   ```\n3. Run the builder:\n   ```bash\n   python3 \u003Cskill-dir>\u002Fscripts\u002Fbuild_html.py \u003Coutput-dir>\u002Fpayload.json \u003Coutput-dir>\u002Frating_pitch.html\n   ```\n4. Open the report: `open \u003Coutput-dir>\u002Frating_pitch.html`\n5. The final assistant message gives the full `\u003Coutput-dir>\u002Frating_pitch.html` path so the\n   user can open the report in their browser.\n\nIf any section data is missing, still include the section in the payload (empty arrays\nare fine) — the builder handles empties gracefully and the deck will stay well-formed.\n\n---\n\n## Payload schema\n\n> ⚠️ **`rating_chart_data` constraint:** This array MUST have the same length as\n> `rating_history`. Index `i` must match: `rating_history[i] ↔ rating_chart_data[i]`.\n> Both arrays must be sorted **oldest → newest**.\n\n```json\n{\n  \"report_date\": \"April 15, 2026\",\n  \"target_company\": \"Boeing Company (The)\",\n  \"sector\": \"Aerospace\u002FDefense\",\n  \"currency\": \"USD\",\n  \"companies\": [\"Boeing\", \"RTX\", \"Northrop Grumman\", \"...\"],\n  \"sources\": [\n    {\"id\": 1, \"title\": \"\", \"source\": \"\", \"date\": \"\", \"url\": \"\"}  \u002F\u002F id optional; rendered as [n] citation\n  ],\n  \"sections\": {\n    \"sector_overview\": {\n      \"overview_bullets\": [\"...\", \"...\", \"...\"],\n      \"watchlist_bullets\": [\"...\", \"...\", \"...\"],\n      \"takeaway_bullets\": [\"...\", \"...\", \"...\"]\n    },\n    \"moodys_view\": {\n      \"outlook_summary\": \"Two to four sentences (plain text or \u003Cp>...\u003C\u002Fp>).\",\n      \"company_positioning\": \"One-line positioning statement.\",\n      \"outlook_distribution\": [\n        {\"category\": \"Stable\",   \"count\": 11, \"color\": \"#BDBFC3\"},\n        {\"category\": \"Positive\", \"count\": 5,  \"color\": \"#5EB6BB\"},\n        {\"category\": \"Negative\", \"count\": 3,  \"color\": \"#F09613\"},\n        {\"category\": \"Under Review\", \"count\": 1, \"color\": \"#ED1B2E\"}\n      ]\n    },\n    \"macro_outlook\": {\n      \"gdp_table\": {\n        \"year_columns\": [\"2023\", \"2024\", \"2025F\", \"2026F\"],\n        \"rows\": [{\"country\": \"United States\", \"values\": [\"2.9\", \"2.8\", \"2.0\", \"1.8\"]}]\n      },\n      \"gdp_commentary\": [\"...\", \"...\", \"...\"]\n    },\n    \"rating_actions_ytd\": [\n      {\"date\": \"Nov 20, 2025\", \"company\": \"...\", \"summary\": \"...\"}\n    ],\n    \"financial_analysis\": {\n      \"commentary\": [\"...\", \"...\"],\n      \"rating_history\": [\n        {\"date\": \"Sep 2025\", \"rating\": \"Baa3\", \"outlook\": \"Negative\",\n         \"direction\": \"Affirmation\", \"reason\": \"...\"}\n      ],\n      \"rating_chart_data\": [8, 8, 7, 7, 7]\n    },\n    \"revenue_distribution\": {\n      \"by_segment\":   [{\"name\": \"Commercial Airplanes\", \"percentage\": 45.2}],\n      \"by_geography\": [{\"name\": \"United States\", \"percentage\": 55.0}],\n      \"commentary\": [\"...\", \"...\"]\n    },\n    \"swot\": {\n      \"strengths\":     [\"...\", \"...\", \"...\"],\n      \"weaknesses\":    [\"...\", \"...\", \"...\"],\n      \"opportunities\": [\"...\", \"...\", \"...\"],\n      \"threats\":       [\"...\", \"...\", \"...\"]\n    },\n    \"key_metrics\": {\n      \"periods\":      [\"2021\", \"2022\", \"2023\", \"2024\", \"LTM Sep25\"],\n      \"revenue\":      [62286, 66608, 77794, 66517, 80757],\n      \"ebit_margin\":  [-2.5, 4.1, -1.0, -16.1, -8.2],\n      \"debt_ebitda\":  [-15.9, 8.5, 10.2, -6.8, -15.9],\n      \"rcf_net_debt\": [-5.0, 10.1, 5.5, -8.3, -1.3]\n    },\n    \"strategic_updates\": {\n      \"recent\":  [\"...\", \"...\"],\n      \"forward\": [\"...\", \"...\"]\n    },\n    \"news_mna\": [\n      {\"category\": \"Mergers & Acquisitions\", \"items\": [\"07\u002F2024 → Spirit AeroSystems: ...\"]}\n    ],\n    \"external_trends\": [\n      {\"category\": \"Macro & Sector Trends\", \"items\": [\"...\"]}\n    ],\n    \"peer_summary\": {\n      \"table\": [\n        {\"company\": \"Boeing\", \"country\": \"United States\",\n         \"market_cap\": \"USD 152,794M (Oct 2025)\", \"rating\": \"Baa3\",\n         \"outlook\": \"Negative\", \"business_mix\": \"Commercial, Defense, Services\"}\n      ],\n      \"commentary\": [\"...\", \"...\"]\n    },\n    \"peer_financials\": {\n      \"columns\": [\"Revenue\", \"EBITDA\", \"EBITDA Mg%\", \"CAPEX\", \"R&D\u002FRev\",\n                  \"Debt\u002FEBITDA\", \"FFO\u002FDebt%\", \"FCF\u002FDebt%\", \"RCF\u002FDebt%\"],\n      \"rows\": [\n        {\"company\": \"Boeing\", \"period\": \"FY2024\", \"currency\": \"USD\",\n         \"values\": [\"66,517\", \"(7,913)\", \"--\", \"(2,230)\", \"0.06\",\n                    \"(6.81)\", \"(6.15)\", \"(26.57)\", \"(6.15)\"]}\n      ]\n    },\n    \"peer_debt_charts\": {\n      \"rcf_net_debt\": [\n        {\"company\": \"Gen Dynamics\", \"value\": 36.93, \"period\": \"FY2024\"},\n        {\"company\": \"Airbus\",       \"value\": 32.0,  \"period\": \"FY2024\"},\n        {\"company\": \"Boeing\",       \"value\": -6.15, \"period\": \"FY2024\"}\n      ],\n      \"debt_ebitda\": [\n        {\"company\": \"Airbus\",       \"value\": 1.55,  \"period\": \"FY2024\"},\n        {\"company\": \"Gen Dynamics\", \"value\": 1.62,  \"period\": \"FY2024\"},\n        {\"company\": \"Boeing\",       \"value\": -6.81, \"period\": \"FY2024\"}\n      ],\n      \"commentary\": [\"Two-sentence commentary.\"]\n    },\n    \"peer_profitability_charts\": {\n      \"revenue\": [\n        {\"company\": \"RTX\",      \"value\": 80738, \"period\": \"FY2024\"},\n        {\"company\": \"Lockheed\", \"value\": 71043, \"period\": \"FY2024\"},\n        {\"company\": \"Airbus\",   \"value\": 69200, \"period\": \"FY2024\"}\n      ],\n      \"ebit_margin\": [\n        {\"company\": \"RTX\",  \"value\": 15.0, \"period\": \"FY2024\"},\n        {\"company\": \"BAE\",  \"value\": 11.9, \"period\": \"FY2024\"},\n        {\"company\": \"Airbus\",\"value\": 10.7, \"period\": \"FY2024\"}\n      ],\n      \"commentary\": [\"Two-sentence commentary.\"]\n    },\n    \"peer_scatter\": {\n      \"margin_vs_leverage\": [{\"company\": \"Boeing\", \"x\": -6.81, \"y\": -16.1}],\n      \"fcf_vs_rcf\":         [{\"company\": \"Boeing\", \"x\": -6.15, \"y\": -26.57}],\n      \"commentary\": [\"Two-sentence commentary.\"]\n    },\n    \"scorecard\": {\n      \"factors\": [\n        \"Factor 1: Scale (20%)\",\n        \"Revenue (USD Billion)\",\n        \"Factor 2: Business Profile (20%)\",\n        \"...\"\n      ],\n      \"is_header\": [true, false, true, false],\n      \"companies\": [\"\u003CTARGET>\", \"\u003CPEER_1>\", \"\u003CPEER_2>\"],\n      \"values\": [\n        [[], [], [], []],\n        [[], [\"\u003Ctarget_rev>\", \"\u003Ctarget_score>\"], [\"\u003Cpeer1_rev>\", \"\u003Cpeer1_score>\"], [\"\u003Cpeer2_rev>\", \"\u003Cpeer2_score>\"]]\n      ]\n    },\n    \"esg_analysis\": {\n      \"table\": [\n        {\"company\": \"Boeing\", \"cis\": \"CIS-4\", \"environmental\": \"E-3\",\n         \"social\": \"S-4\", \"governance\": \"G-4\"}\n      ],\n      \"commentary\": [\"...\", \"...\"]\n    }\n  }\n}\n```\n\n---\n\n## Report structure\n\nThe Python builder emits these 26 sections as HTML, in this order:\n\n1. Cover\n2. Agenda\n3. Part 1 divider\n4. Sector Overview (3-column chips)\n5. Moody's View (outlook text + positioning + outlook pie)\n6. Global Macro Outlook (GDP table + takeaways)\n7. Rating Actions YTD (table)\n8. Part 2 divider\n9. Financial Analysis (bullets + rating history line chart + rating rationale)\n10. Revenue Distribution (two pie charts + commentary)\n11. SWOT (2×2)\n12. Key Financial Metrics (four bar charts in 2×2 grid)\n13. Strategic Updates (2 columns)\n14. News, M&A & Leadership\n15. External Trends, Pressures & Risks\n16. Part 3 divider\n17. Peer Comparison Summary (table + commentary)\n18. Detailed Peer Comparison (wide financial table)\n19. Peer Comparison — Debt (two horizontal bar charts)\n20. Peer Comparison — Profitability (two horizontal bar charts)\n21. Peer Scatter Plots (two scatter charts)\n22. Scorecard Comparison (multi-column factor table)\n23. ESG Analysis (table + commentary)\n24. Citations (appendix — canonical numbered [n] references with hyperlinked titles)\n25. Thank You\n26. Disclaimer\n\nThe builder's data-visualization palette (Moody's official, priority order):\n`#1 BRIGHT_BLUE=#005eff`, `#2 TEAL=#5eb6bc`, `#3 GOLD=#c7ab21`, `#4 MID_BLUE=#5c068c`,\n`#5 PINK=#ba0168`, `#6 PURPLE=#c64809`, `#7 PALE=#bed6ff`, `NAVY=#040826`,\n`LIGHT_GRAY=#e1e2e1`.\n\nOutlook pie uses **semantic** colors (case-insensitive):\n`Stable → #e1e2e1` (light gray), `Positive → #5eb6bc` (teal),\n`Negative → #f09615` (amber), `Under Review → #005eff` (bright blue).\n\nAll other multi-series charts (scatter, pie, bar) consume colors from the palette in\npriority order: series 0 = `#005eff`, series 1 = `#5eb6bc`, series 2 = `#c7ab21`,\nseries 3 = `#5c068c`, series 4 = `#ba0168`, series 5 = `#c64809`.\n\nCharts are rendered client-side via Chart.js (loaded from cdnjs.cloudflare.com CDN).\nThe HTML file is fully self-contained — no Python dependencies beyond the standard library.\n\n---\n\n## Tips\n\n- Run ALL data-gathering tool calls in a single parallel batch.\n- Keep the target company first in every peer table — the HTML report and the\n  commentary all assume this ordering.\n- `rating_chart_data` is numeric: map Moody's rating notches to integers (`Aaa=21, Aa1=20,\n  …, C=1`) so the line chart shows trajectory. Both `rating_history` and\n  `rating_chart_data` **must be in oldest-to-newest order** before writing the payload.\n  `getEntityRatings` returns history newest-first — sort ascending by date before use.\n- Pie percentages must sum to 100 — bucket small categories into \"Other\".\n- `key_metrics` arrays must match `periods` length. Use `null` for missing points.\n- Scorecard header rows use `is_header=true` and `values[row] = [[], [], ...]` (empty\n  per-company entries). The builder turns these into highlighted header rows in the HTML table.\n- **Scorecard `companies` = target company first, then all peer entities** — for\n  example `[\"Boeing\", \"Airbus\", \"RTX\", \"Lockheed Martin\"]`. Never put two time-horizons\n  of the same company here. `values[row][0]` is always `[]` (a silent placeholder the\n  builder skips); the target's data goes at index 1 (`values[row][1]`), and each\n  subsequent peer at index 2, 3, … Omitting the `[]` at index 0 shifts every column one\n  position and silently misaligns the data. Omitting the target from `companies` produces\n  a scorecard that appears to have no target — equally wrong.\n- If you can't get real data for a section, leave arrays empty — the builder degrades\n  gracefully rather than erroring.\n- Dates in the report are just strings; format however reads best (e.g., \"Nov 20, 2025\").\n- The `\u003Coutput-dir>` name should be lower-cased and hyphen-joined (e.g.\n  `boeing-company-20260415-142300`) to avoid shell-quoting issues when opening the\n  `.html` file.\n- Revenue value labels must use comma-separated thousands with zero decimal places —\n  use `\"#,##0\"` as the `y_format` argument in the payload for revenue bar charts.\n- **Never copy `period` values from `sample_payload.json`** — the sample uses\n  `\"FY2024\"` throughout only because it is a fixed illustrative example. In a real\n  run, read the period label from the `getEntityFinancials` response for each\n  company and use that. A company reporting in 2025 must show `\"FY2025\"`, not\n  `\"FY2024\"`. Anchoring on the sample year is a silent data-accuracy bug.\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,73,214,220,303,308,323,329,371,377,420,424,430,442,448,460,467,631,637,757,829,832,838,864,869,918,924,967,973,1110,1116,1667,1672,1675,1681,1706,1876,1881,1884,1890,1939,8819,8822,8828,8833,8973,9041,9085,9137,9142,9145,9151,9423],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"rating-pitch-skill",[47],{"type":48,"value":49},"text","Rating Pitch Skill",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54,56,63,65,71],{"type":48,"value":55},"Generates a Moody's Rating Pitch Report as a self-contained HTML file from a single MCP\ndata pass. The Python builder (",{"type":42,"tag":57,"props":58,"children":60},"code",{"className":59},[],[61],{"type":48,"value":62},"scripts\u002Fbuild_html.py",{"type":48,"value":64},") takes the resolved payload JSON and\nproduces a single ",{"type":42,"tag":57,"props":66,"children":68},{"className":67},[],[69],{"type":48,"value":70},".html",{"type":48,"value":72}," file containing all sections with inline Chart.js charts, styled\ntables, and bullet lists using the Moody's brand palette — no external dependencies beyond\na browser to open it.",{"type":42,"tag":74,"props":75,"children":76},"blockquote",{},[77,84,96,209],{"type":42,"tag":78,"props":79,"children":81},"h2",{"id":80},"️-critical-non-negotiable-output-contract",[82],{"type":48,"value":83},"⚠️ CRITICAL — NON-NEGOTIABLE OUTPUT CONTRACT",{"type":42,"tag":51,"props":85,"children":86},{},[87,89,94],{"type":48,"value":88},"Every run of this skill MUST produce a self-contained ",{"type":42,"tag":57,"props":90,"children":92},{"className":91},[],[93],{"type":48,"value":70},{"type":48,"value":95}," report. Specifically:",{"type":42,"tag":97,"props":98,"children":99},"ul",{},[100,145,171,189],{"type":42,"tag":101,"props":102,"children":103},"li",{},[104,106,112,114,120,122,128,130,135,137,143],{"type":48,"value":105},"The skill ",{"type":42,"tag":107,"props":108,"children":109},"strong",{},[110],{"type":48,"value":111},"MUST",{"type":48,"value":113}," save the resolved ",{"type":42,"tag":57,"props":115,"children":117},{"className":116},[],[118],{"type":48,"value":119},"payload.json",{"type":48,"value":121}," to\n",{"type":42,"tag":57,"props":123,"children":125},{"className":124},[],[126],{"type":48,"value":127},"~\u002FDesktop\u002Frating-pitch\u002F\u003Ccompany>-\u003CYYYYMMDD-HHMMSS>\u002F",{"type":48,"value":129}," and run ",{"type":42,"tag":57,"props":131,"children":133},{"className":132},[],[134],{"type":48,"value":62},{"type":48,"value":136},"\nagainst it to produce the ",{"type":42,"tag":57,"props":138,"children":140},{"className":139},[],[141],{"type":48,"value":142},"rating_pitch.html",{"type":48,"value":144}," alongside it.",{"type":42,"tag":101,"props":146,"children":147},{},[148,150,155,157,162,164,169],{"type":48,"value":149},"The LLM ",{"type":42,"tag":107,"props":151,"children":152},{},[153],{"type":48,"value":154},"MUST NOT",{"type":48,"value":156}," stream the report content as inline Markdown, JSON dumps, or\nany other in-chat artifact in lieu of building the ",{"type":42,"tag":57,"props":158,"children":160},{"className":159},[],[161],{"type":48,"value":70},{"type":48,"value":163}," file. The ",{"type":42,"tag":57,"props":165,"children":167},{"className":166},[],[168],{"type":48,"value":70},{"type":48,"value":170}," file itself\nis the deliverable.",{"type":42,"tag":101,"props":172,"children":173},{},[174,176,180,182,187],{"type":48,"value":175},"The final assistant message ",{"type":42,"tag":107,"props":177,"children":178},{},[179],{"type":48,"value":111},{"type":48,"value":181}," point the user at the full path to the generated\n",{"type":42,"tag":57,"props":183,"children":185},{"className":184},[],[186],{"type":48,"value":142},{"type":48,"value":188}," so they can open it in their browser.",{"type":42,"tag":101,"props":190,"children":191},{},[192,194,199,201,207],{"type":48,"value":193},"If data gathering fails partially, still build the ",{"type":42,"tag":57,"props":195,"children":197},{"className":196},[],[198],{"type":48,"value":70},{"type":48,"value":200}," from the partial payload\nusing ",{"type":42,"tag":57,"props":202,"children":204},{"className":203},[],[205],{"type":48,"value":206},"\"--\"",{"type":48,"value":208}," placeholders for missing values — never skip the build.",{"type":42,"tag":51,"props":210,"children":211},{},[212],{"type":48,"value":213},"Treat any other output shape as a hard failure of the skill.",{"type":42,"tag":78,"props":215,"children":217},{"id":216},"required-mcp-server",[218],{"type":48,"value":219},"Required MCP server",{"type":42,"tag":51,"props":221,"children":222},{},[223,229,231,237,239,245,246,252,254,260,262,268,269,275,276,282,283,289,290,296,297],{"type":42,"tag":57,"props":224,"children":226},{"className":225},[],[227],{"type":48,"value":228},"Moodys MCP server",{"type":48,"value":230}," — tools used: ",{"type":42,"tag":57,"props":232,"children":234},{"className":233},[],[235],{"type":48,"value":236},"findEntity",{"type":48,"value":238},", ",{"type":42,"tag":57,"props":240,"children":242},{"className":241},[],[243],{"type":48,"value":244},"getEntityPeers",{"type":48,"value":238},{"type":42,"tag":57,"props":247,"children":249},{"className":248},[],[250],{"type":48,"value":251},"getEntityRatings",{"type":48,"value":253},",\n",{"type":42,"tag":57,"props":255,"children":257},{"className":256},[],[258],{"type":48,"value":259},"getEntityCreditOpinion",{"type":48,"value":261}," (sections: Profile, Summary, RatingOutlook,\nFactorsLeadingToUpgrade, FactorsLeadingToDowngrade, CreditStrengths, CreditChallenges,\nESGConsiderations, KeyIndicatorsTable, ScorecardTable), ",{"type":42,"tag":57,"props":263,"children":265},{"className":264},[],[266],{"type":48,"value":267},"getEntityFinancials",{"type":48,"value":253},{"type":42,"tag":57,"props":270,"children":272},{"className":271},[],[273],{"type":48,"value":274},"getEntityEsg",{"type":48,"value":238},{"type":42,"tag":57,"props":277,"children":279},{"className":278},[],[280],{"type":48,"value":281},"getEntitySectorOutlook",{"type":48,"value":238},{"type":42,"tag":57,"props":284,"children":286},{"className":285},[],[287],{"type":48,"value":288},"searchEntityEarningsCall",{"type":48,"value":253},{"type":42,"tag":57,"props":291,"children":293},{"className":292},[],[294],{"type":48,"value":295},"searchEntityDocuments",{"type":48,"value":238},{"type":42,"tag":57,"props":298,"children":300},{"className":299},[],[301],{"type":48,"value":302},"searchNews",{"type":42,"tag":51,"props":304,"children":305},{},[306],{"type":48,"value":307},"Web research is also required via searchNews or general web search tools.",{"type":42,"tag":51,"props":309,"children":310},{},[311,313,321],{"type":48,"value":312},"If any of the tools required for a section do not exist, inform the user: One or more tools required for this section are not available under your current subscription. Unlock more of the expert insights, data, and analytics you trust. Get Link:",{"type":42,"tag":314,"props":315,"children":319},"a",{"href":316,"rel":317},"https:\u002F\u002Fwww.moodys.com\u002Fweb\u002Fen\u002Fus\u002Fcapabilities\u002Fgen-ai\u002Fai-ready-data.html",[318],"nofollow",[320],{"type":48,"value":316},{"type":48,"value":322}," with us to learn more.",{"type":42,"tag":78,"props":324,"children":326},{"id":325},"bundled-files",[327],{"type":48,"value":328},"Bundled files",{"type":42,"tag":97,"props":330,"children":331},{},[332,349,360],{"type":42,"tag":101,"props":333,"children":334},{},[335,340,342,347],{"type":42,"tag":57,"props":336,"children":338},{"className":337},[],[339],{"type":48,"value":62},{"type":48,"value":341}," — the report builder. Takes a JSON payload and emits a ",{"type":42,"tag":57,"props":343,"children":345},{"className":344},[],[346],{"type":48,"value":70},{"type":48,"value":348},".\nUses only the Python standard library; no pip installs required.",{"type":42,"tag":101,"props":350,"children":351},{},[352,358],{"type":42,"tag":57,"props":353,"children":355},{"className":354},[],[356],{"type":48,"value":357},"scripts\u002Frequirements.txt",{"type":48,"value":359}," — no additional Python dependencies needed.",{"type":42,"tag":101,"props":361,"children":362},{},[363,369],{"type":42,"tag":57,"props":364,"children":366},{"className":365},[],[367],{"type":48,"value":368},"assets\u002Fsample_payload.json",{"type":48,"value":370}," — reference payload showing every field populated. Read this\nif you're ever unsure what a field should look like.",{"type":42,"tag":78,"props":372,"children":374},{"id":373},"parameters-the-user-should-provide",[375],{"type":48,"value":376},"Parameters the user should provide",{"type":42,"tag":97,"props":378,"children":379},{},[380,390,400,410],{"type":42,"tag":101,"props":381,"children":382},{},[383,388],{"type":42,"tag":107,"props":384,"children":385},{},[386],{"type":48,"value":387},"Company Name",{"type":48,"value":389}," (required)",{"type":42,"tag":101,"props":391,"children":392},{},[393,398],{"type":42,"tag":107,"props":394,"children":395},{},[396],{"type":48,"value":397},"Sector",{"type":48,"value":399}," (required — e.g., \"Aerospace\u002FDefense\", \"Consumer Products\"). Infer it from\nthe company if the user doesn't say.",{"type":42,"tag":101,"props":401,"children":402},{},[403,408],{"type":42,"tag":107,"props":404,"children":405},{},[406],{"type":48,"value":407},"Number of peers",{"type":48,"value":409}," (optional, default 6)",{"type":42,"tag":101,"props":411,"children":412},{},[413,418],{"type":42,"tag":107,"props":414,"children":415},{},[416],{"type":48,"value":417},"Currency",{"type":48,"value":419}," (optional, default USD)",{"type":42,"tag":421,"props":422,"children":423},"hr",{},[],{"type":42,"tag":78,"props":425,"children":427},{"id":426},"step-1-resolve-the-target-company",[428],{"type":48,"value":429},"Step 1 — Resolve the target company",{"type":42,"tag":51,"props":431,"children":432},{},[433,435,440],{"type":48,"value":434},"Call ",{"type":42,"tag":57,"props":436,"children":438},{"className":437},[],[439],{"type":48,"value":236},{"type":48,"value":441}," with the company name. Store the canonical entity name and ID.",{"type":42,"tag":78,"props":443,"children":445},{"id":444},"step-2-gather-all-data-in-parallel",[446],{"type":48,"value":447},"Step 2 — Gather ALL data in parallel",{"type":42,"tag":51,"props":449,"children":450},{},[451,453,458],{"type":48,"value":452},"Fire the following in a ",{"type":42,"tag":107,"props":454,"children":455},{},[456],{"type":48,"value":457},"single parallel batch",{"type":48,"value":459},". Do not serialize these — the model\nshould send them together so data comes back fast.",{"type":42,"tag":461,"props":462,"children":464},"h3",{"id":463},"target-company-data",[465],{"type":48,"value":466},"Target company data",{"type":42,"tag":468,"props":469,"children":470},"table",{},[471,490],{"type":42,"tag":472,"props":473,"children":474},"thead",{},[475],{"type":42,"tag":476,"props":477,"children":478},"tr",{},[479,485],{"type":42,"tag":480,"props":481,"children":482},"th",{},[483],{"type":48,"value":484},"Tool",{"type":42,"tag":480,"props":486,"children":487},{},[488],{"type":48,"value":489},"Purpose",{"type":42,"tag":491,"props":492,"children":493},"tbody",{},[494,513,529,545,561,579,597,615],{"type":42,"tag":476,"props":495,"children":496},{},[497,508],{"type":42,"tag":498,"props":499,"children":500},"td",{},[501,506],{"type":42,"tag":57,"props":502,"children":504},{"className":503},[],[505],{"type":48,"value":259},{"type":48,"value":507}," (sections: Profile, Summary, RatingOutlook, FactorsLeadingToUpgrade, FactorsLeadingToDowngrade, CreditStrengths, CreditChallenges, ESGConsiderations, KeyIndicatorsTable, ScorecardTable)",{"type":42,"tag":498,"props":509,"children":510},{},[511],{"type":48,"value":512},"Credit opinion sections for financial analysis, SWOT, scorecard",{"type":42,"tag":476,"props":514,"children":515},{},[516,524],{"type":42,"tag":498,"props":517,"children":518},{},[519],{"type":42,"tag":57,"props":520,"children":522},{"className":521},[],[523],{"type":48,"value":251},{"type":42,"tag":498,"props":525,"children":526},{},[527],{"type":48,"value":528},"Current rating + last 5 rating actions for history chart",{"type":42,"tag":476,"props":530,"children":531},{},[532,540],{"type":42,"tag":498,"props":533,"children":534},{},[535],{"type":42,"tag":57,"props":536,"children":538},{"className":537},[],[539],{"type":48,"value":274},{"type":42,"tag":498,"props":541,"children":542},{},[543],{"type":48,"value":544},"ESG scores",{"type":42,"tag":476,"props":546,"children":547},{},[548,556],{"type":42,"tag":498,"props":549,"children":550},{},[551],{"type":42,"tag":57,"props":552,"children":554},{"className":553},[],[555],{"type":48,"value":281},{"type":42,"tag":498,"props":557,"children":558},{},[559],{"type":48,"value":560},"Sector overview and outlook",{"type":42,"tag":476,"props":562,"children":563},{},[564,574],{"type":42,"tag":498,"props":565,"children":566},{},[567,572],{"type":42,"tag":57,"props":568,"children":570},{"className":569},[],[571],{"type":48,"value":244},{"type":48,"value":573}," (N peers)",{"type":42,"tag":498,"props":575,"children":576},{},[577],{"type":48,"value":578},"Peer set",{"type":42,"tag":476,"props":580,"children":581},{},[582,592],{"type":42,"tag":498,"props":583,"children":584},{},[585,590],{"type":42,"tag":57,"props":586,"children":588},{"className":587},[],[589],{"type":48,"value":288},{"type":48,"value":591}," (keywords: outlook, guidance, forecast, strategy)",{"type":42,"tag":498,"props":593,"children":594},{},[595],{"type":48,"value":596},"Strategic updates \u002F forward-looking",{"type":42,"tag":476,"props":598,"children":599},{},[600,610],{"type":42,"tag":498,"props":601,"children":602},{},[603,608],{"type":42,"tag":57,"props":604,"children":606},{"className":605},[],[607],{"type":48,"value":295},{"type":48,"value":609}," (annual\u002Fquarterly reports)",{"type":42,"tag":498,"props":611,"children":612},{},[613],{"type":48,"value":614},"Revenue segments, geography",{"type":42,"tag":476,"props":616,"children":617},{},[618,626],{"type":42,"tag":498,"props":619,"children":620},{},[621],{"type":42,"tag":57,"props":622,"children":624},{"className":623},[],[625],{"type":48,"value":302},{"type":42,"tag":498,"props":627,"children":628},{},[629],{"type":48,"value":630},"M&A, leadership, external trends",{"type":42,"tag":461,"props":632,"children":634},{"id":633},"peer-data-for-each-peer",[635],{"type":48,"value":636},"Peer data (for each peer)",{"type":42,"tag":468,"props":638,"children":639},{},[640,654],{"type":42,"tag":472,"props":641,"children":642},{},[643],{"type":42,"tag":476,"props":644,"children":645},{},[646,650],{"type":42,"tag":480,"props":647,"children":648},{},[649],{"type":48,"value":484},{"type":42,"tag":480,"props":651,"children":652},{},[653],{"type":48,"value":489},{"type":42,"tag":491,"props":655,"children":656},{},[657,673,689,707,741],{"type":42,"tag":476,"props":658,"children":659},{},[660,668],{"type":42,"tag":498,"props":661,"children":662},{},[663],{"type":42,"tag":57,"props":664,"children":666},{"className":665},[],[667],{"type":48,"value":236},{"type":42,"tag":498,"props":669,"children":670},{},[671],{"type":48,"value":672},"Resolve canonical name",{"type":42,"tag":476,"props":674,"children":675},{},[676,684],{"type":42,"tag":498,"props":677,"children":678},{},[679],{"type":42,"tag":57,"props":680,"children":682},{"className":681},[],[683],{"type":48,"value":251},{"type":42,"tag":498,"props":685,"children":686},{},[687],{"type":48,"value":688},"Peer rating + outlook",{"type":42,"tag":476,"props":690,"children":691},{},[692,702],{"type":42,"tag":498,"props":693,"children":694},{},[695,700],{"type":42,"tag":57,"props":696,"children":698},{"className":697},[],[699],{"type":48,"value":259},{"type":48,"value":701}," (sections: Profile, KeyIndicatorsTable, ScorecardTable)",{"type":42,"tag":498,"props":703,"children":704},{},[705],{"type":48,"value":706},"Financials + scorecard",{"type":42,"tag":476,"props":708,"children":709},{},[710,736],{"type":42,"tag":498,"props":711,"children":712},{},[713,718,720,726,728,734],{"type":42,"tag":57,"props":714,"children":716},{"className":715},[],[717],{"type":48,"value":267},{"type":48,"value":719}," (prompt: ",{"type":42,"tag":57,"props":721,"children":723},{"className":722},[],[724],{"type":48,"value":725},"\"annual revenue, EBITDA, EBIT margin, debt\u002FEBITDA, RCF\u002Fnet debt, most recent year-end only\"",{"type":48,"value":727},", filterCriteria: ",{"type":42,"tag":57,"props":729,"children":731},{"className":730},[],[732],{"type":48,"value":733},"{excludeInterimData: true}",{"type":48,"value":735},")",{"type":42,"tag":498,"props":737,"children":738},{},[739],{"type":48,"value":740},"Most recent full-year financials for peer charts",{"type":42,"tag":476,"props":742,"children":743},{},[744,752],{"type":42,"tag":498,"props":745,"children":746},{},[747],{"type":42,"tag":57,"props":748,"children":750},{"className":749},[],[751],{"type":48,"value":274},{"type":42,"tag":498,"props":753,"children":754},{},[755],{"type":48,"value":756},"Peer ESG scores",{"type":42,"tag":51,"props":758,"children":759},{},[760,765,767,772,774,779,781,787,789,795,797,803,805,811,813,819,821,827],{"type":42,"tag":107,"props":761,"children":762},{},[763],{"type":48,"value":764},"Period-selection rule (applies to target company and every peer):",{"type":48,"value":766},"\nWhen ",{"type":42,"tag":57,"props":768,"children":770},{"className":769},[],[771],{"type":48,"value":267},{"type":48,"value":773}," returns multiple annual periods, always use the\n",{"type":42,"tag":107,"props":775,"children":776},{},[777],{"type":48,"value":778},"most recent year-end period available",{"type":48,"value":780}," — i.e. the column with the highest\ncalendar or fiscal year. If year-end data is unavailable, fall back to the most\nrecent LTM or interim period and note it in the ",{"type":42,"tag":57,"props":782,"children":784},{"className":783},[],[785],{"type":48,"value":786},"period",{"type":48,"value":788}," field (e.g. ",{"type":42,"tag":57,"props":790,"children":792},{"className":791},[],[793],{"type":48,"value":794},"\"LTM Mar 2025\"",{"type":48,"value":796},").\nNever use a hard-coded year string like ",{"type":42,"tag":57,"props":798,"children":800},{"className":799},[],[801],{"type":48,"value":802},"\"2024\"",{"type":48,"value":804}," — read the actual period label\nfrom the data and carry it through to ",{"type":42,"tag":57,"props":806,"children":808},{"className":807},[],[809],{"type":48,"value":810},"peer_financials.rows[].period",{"type":48,"value":812}," and\n",{"type":42,"tag":57,"props":814,"children":816},{"className":815},[],[817],{"type":48,"value":818},"peer_profitability_charts",{"type":48,"value":820}," \u002F ",{"type":42,"tag":57,"props":822,"children":824},{"className":823},[],[825],{"type":48,"value":826},"peer_debt_charts",{"type":48,"value":828}," entries.",{"type":42,"tag":421,"props":830,"children":831},{},[],{"type":42,"tag":78,"props":833,"children":835},{"id":834},"step-3-synthesize-the-sections",[836],{"type":48,"value":837},"Step 3 — Synthesize the sections",{"type":42,"tag":51,"props":839,"children":840},{},[841,843,848,850,855,857,862],{"type":48,"value":842},"Build a single in-memory ",{"type":42,"tag":107,"props":844,"children":845},{},[846],{"type":48,"value":847},"resolved payload",{"type":48,"value":849}," that matches the JSON shape in the ",{"type":42,"tag":107,"props":851,"children":852},{},[853],{"type":48,"value":854},"Payload\nschema",{"type":48,"value":856}," section below (a reference copy lives at ",{"type":42,"tag":57,"props":858,"children":860},{"className":859},[],[861],{"type":48,"value":368},{"type":48,"value":863},"). This\npayload drives the .html build (Step 4) — fill it completely before moving on.",{"type":42,"tag":51,"props":865,"children":866},{},[867],{"type":48,"value":868},"Content rules for each section:",{"type":42,"tag":74,"props":870,"children":871},{},[872],{"type":42,"tag":51,"props":873,"children":874},{},[875,886,888,893,895,900,902,908,910,916],{"type":42,"tag":107,"props":876,"children":877},{},[878,884],{"type":42,"tag":57,"props":879,"children":881},{"className":880},[],[882],{"type":48,"value":883},"commentary",{"type":48,"value":885}," type rule — applies to every section without exception:",{"type":48,"value":887},"\nAll ",{"type":42,"tag":57,"props":889,"children":891},{"className":890},[],[892],{"type":48,"value":883},{"type":48,"value":894}," fields in the payload MUST be a ",{"type":42,"tag":107,"props":896,"children":897},{},[898],{"type":48,"value":899},"JSON array of strings",{"type":48,"value":901}," — never a\nbare string. A bare string passed to the .html builder is iterated character-by-character,\nproducing one bullet per character (the ",{"type":42,"tag":57,"props":903,"children":905},{"className":904},[],[906],{"type":48,"value":907},"• C \\n • o \\n • m",{"type":48,"value":909}," bug). Always write:\n",{"type":42,"tag":57,"props":911,"children":913},{"className":912},[],[914],{"type":48,"value":915},"\"commentary\": [\"Sentence one.\", \"Sentence two.\"]",{"type":48,"value":917}," — even for a single sentence.",{"type":42,"tag":461,"props":919,"children":921},{"id":920},"part-1-sector-analysis",[922],{"type":48,"value":923},"Part 1 — Sector Analysis",{"type":42,"tag":97,"props":925,"children":926},{},[927,937,947,957],{"type":42,"tag":101,"props":928,"children":929},{},[930,935],{"type":42,"tag":107,"props":931,"children":932},{},[933],{"type":48,"value":934},"sector_overview",{"type":48,"value":936}," — three 3-bullet lists (overview \u002F watchlist \u002F takeaways). Keep\nbullets punchy, ≤25 words each.",{"type":42,"tag":101,"props":938,"children":939},{},[940,945],{"type":42,"tag":107,"props":941,"children":942},{},[943],{"type":48,"value":944},"moodys_view",{"type":48,"value":946}," — a short outlook paragraph (2-4 sentences), a one-line company\npositioning statement, and outlook distribution counts by category (Stable, Positive,\nNegative, Under Review).",{"type":42,"tag":101,"props":948,"children":949},{},[950,955],{"type":42,"tag":107,"props":951,"children":952},{},[953],{"type":48,"value":954},"macro_outlook",{"type":48,"value":956}," — GDP growth for the top relevant countries (2 historical + 2\nforecast years) plus 2-3 short commentary bullets.",{"type":42,"tag":101,"props":958,"children":959},{},[960,965],{"type":42,"tag":107,"props":961,"children":962},{},[963],{"type":48,"value":964},"rating_actions_ytd",{"type":48,"value":966}," — up to 10 notable sector rating actions YTD; one-line summaries.",{"type":42,"tag":461,"props":968,"children":970},{"id":969},"part-2-company-credit-overview",[971],{"type":48,"value":972},"Part 2 — Company Credit Overview",{"type":42,"tag":97,"props":974,"children":975},{},[976,1014,1024,1034,1060,1086],{"type":42,"tag":101,"props":977,"children":978},{},[979,984,986,997,999,1005,1007,1012],{"type":42,"tag":107,"props":980,"children":981},{},[982],{"type":48,"value":983},"financial_analysis",{"type":48,"value":985}," — 5-6 commentary bullets (revenue, margin, leverage, cash flow,\nliquidity, rating rationale). Include last 5 rating actions and a rating chart series\n(numeric: higher = better rating, e.g., Aaa=21, Baa3=10, Caa1=4).\n",{"type":42,"tag":107,"props":987,"children":988},{},[989,995],{"type":42,"tag":57,"props":990,"children":992},{"className":991},[],[993],{"type":48,"value":994},"rating_history",{"type":48,"value":996}," MUST be sorted oldest → newest",{"type":48,"value":998}," (index 0 = earliest event,\nlast index = most recent). ",{"type":42,"tag":57,"props":1000,"children":1002},{"className":1001},[],[1003],{"type":48,"value":1004},"rating_chart_data",{"type":48,"value":1006}," MUST be the parallel notch-integer\narray in the same oldest-to-newest order. The chart x-axis and the history table\nboth read left-to-right \u002F top-to-bottom chronologically. ",{"type":42,"tag":57,"props":1008,"children":1010},{"className":1009},[],[1011],{"type":48,"value":251},{"type":48,"value":1013}," returns\nnewest-first — reverse before populating the payload.",{"type":42,"tag":101,"props":1015,"children":1016},{},[1017,1022],{"type":42,"tag":107,"props":1018,"children":1019},{},[1020],{"type":48,"value":1021},"revenue_distribution",{"type":48,"value":1023}," — segment and geography percentages (top 5 each, rest = Other;\nmust sum to ~100).",{"type":42,"tag":101,"props":1025,"children":1026},{},[1027,1032],{"type":42,"tag":107,"props":1028,"children":1029},{},[1030],{"type":48,"value":1031},"swot",{"type":48,"value":1033}," — 3 items per quadrant, 15-25 words each.",{"type":42,"tag":101,"props":1035,"children":1036},{},[1037,1042,1044,1050,1052,1058],{"type":42,"tag":107,"props":1038,"children":1039},{},[1040],{"type":48,"value":1041},"key_metrics",{"type":48,"value":1043}," — historical series (≤5 periods) for four metrics: revenue,\nebit_margin, debt_ebitda, rcf_net_debt. Arrays must match the ",{"type":42,"tag":57,"props":1045,"children":1047},{"className":1046},[],[1048],{"type":48,"value":1049},"periods",{"type":48,"value":1051}," array length.\nUse ",{"type":42,"tag":57,"props":1053,"children":1055},{"className":1054},[],[1056],{"type":48,"value":1057},"null",{"type":48,"value":1059}," (not omission) for missing points.",{"type":42,"tag":101,"props":1061,"children":1062},{},[1063,1068,1070,1076,1078,1084],{"type":42,"tag":107,"props":1064,"children":1065},{},[1066],{"type":48,"value":1067},"strategic_updates",{"type":48,"value":1069}," — ",{"type":42,"tag":57,"props":1071,"children":1073},{"className":1072},[],[1074],{"type":48,"value":1075},"recent",{"type":48,"value":1077}," (3-5) and ",{"type":42,"tag":57,"props":1079,"children":1081},{"className":1080},[],[1082],{"type":48,"value":1083},"forward",{"type":48,"value":1085}," (3-5, strictly future-looking).",{"type":42,"tag":101,"props":1087,"children":1088},{},[1089,1094,1095,1100,1102,1108],{"type":42,"tag":107,"props":1090,"children":1091},{},[1092],{"type":48,"value":1093},"news_mna",{"type":48,"value":820},{"type":42,"tag":107,"props":1096,"children":1097},{},[1098],{"type":48,"value":1099},"external_trends",{"type":48,"value":1101}," — structured list form:\n",{"type":42,"tag":57,"props":1103,"children":1105},{"className":1104},[],[1106],{"type":48,"value":1107},"[{\"category\": \"...\", \"items\": [\"...\", \"...\"]}]",{"type":48,"value":1109},". The HTML-string form is also accepted\nby the builder for backwards compatibility.",{"type":42,"tag":461,"props":1111,"children":1113},{"id":1112},"part-3-company-positioning-vs-peers",[1114],{"type":48,"value":1115},"Part 3 — Company Positioning vs. Peers",{"type":42,"tag":97,"props":1117,"children":1118},{},[1119,1129,1195,1254,1360,1657],{"type":42,"tag":101,"props":1120,"children":1121},{},[1122,1127],{"type":42,"tag":107,"props":1123,"children":1124},{},[1125],{"type":48,"value":1126},"peer_summary",{"type":48,"value":1128}," — row per company (target first), plus 2-3 commentary bullets.",{"type":42,"tag":101,"props":1130,"children":1131},{},[1132,1137,1139,1145,1147,1153,1155,1160,1162,1172,1174,1180,1181,1187,1188,1193],{"type":42,"tag":107,"props":1133,"children":1134},{},[1135],{"type":48,"value":1136},"peer_financials",{"type":48,"value":1138}," — wide financial table with ",{"type":42,"tag":57,"props":1140,"children":1142},{"className":1141},[],[1143],{"type":48,"value":1144},"columns",{"type":48,"value":1146}," (metric names, no\ncompany\u002Fperiod\u002Fcurrency) and ",{"type":42,"tag":57,"props":1148,"children":1150},{"className":1149},[],[1151],{"type":48,"value":1152},"rows",{"type":48,"value":1154}," (company + period + currency + values).\nEach row's ",{"type":42,"tag":57,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":48,"value":786},{"type":48,"value":1161}," field ",{"type":42,"tag":107,"props":1163,"children":1164},{},[1165,1167],{"type":48,"value":1166},"must be the actual most-recent period label read from\n",{"type":42,"tag":57,"props":1168,"children":1170},{"className":1169},[],[1171],{"type":48,"value":267},{"type":48,"value":1173}," (e.g. ",{"type":42,"tag":57,"props":1175,"children":1177},{"className":1176},[],[1178],{"type":48,"value":1179},"\"FY2025\"",{"type":48,"value":238},{"type":42,"tag":57,"props":1182,"children":1184},{"className":1183},[],[1185],{"type":48,"value":1186},"\"FY2024\"",{"type":48,"value":238},{"type":42,"tag":57,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":48,"value":794},{"type":48,"value":1194},"). Never\ndefault all rows to the same hard-coded year. Companies with different fiscal-year\nends will legitimately show different period labels — this is correct behaviour.",{"type":42,"tag":101,"props":1196,"children":1197},{},[1198,1202,1203,1207,1209,1221,1223,1229,1231,1237,1239,1245,1247,1252],{"type":42,"tag":107,"props":1199,"children":1200},{},[1201],{"type":48,"value":826},{"type":48,"value":820},{"type":42,"tag":107,"props":1204,"children":1205},{},[1206],{"type":48,"value":818},{"type":48,"value":1208}," — pairs of bar charts; sort\nlogically (largest-to-smallest or target-first) in the JSON for readability.\nEach entry ",{"type":42,"tag":107,"props":1210,"children":1211},{},[1212,1214,1219],{"type":48,"value":1213},"must include a ",{"type":42,"tag":57,"props":1215,"children":1217},{"className":1216},[],[1218],{"type":48,"value":786},{"type":48,"value":1220}," field",{"type":48,"value":1222}," alongside ",{"type":42,"tag":57,"props":1224,"children":1226},{"className":1225},[],[1227],{"type":48,"value":1228},"company",{"type":48,"value":1230}," and ",{"type":42,"tag":57,"props":1232,"children":1234},{"className":1233},[],[1235],{"type":48,"value":1236},"value",{"type":48,"value":1238},":\n",{"type":42,"tag":57,"props":1240,"children":1242},{"className":1241},[],[1243],{"type":48,"value":1244},"{\"company\": \"Walmart\", \"value\": 713163, \"period\": \"FY2025\"}",{"type":48,"value":1246},".\nThe ",{"type":42,"tag":57,"props":1248,"children":1250},{"className":1249},[],[1251],{"type":48,"value":786},{"type":48,"value":1253}," is used as a sub-label on the bar. If all companies share the same\nperiod, a single note in the slide commentary is sufficient; if periods differ,\nthe per-bar label makes the comparison transparent.",{"type":42,"tag":101,"props":1255,"children":1256},{},[1257,1262,1264,1270,1271,1277,1279,1285,1287],{"type":42,"tag":107,"props":1258,"children":1259},{},[1260],{"type":48,"value":1261},"peer_scatter",{"type":48,"value":1263}," — two scatter series (",{"type":42,"tag":57,"props":1265,"children":1267},{"className":1266},[],[1268],{"type":48,"value":1269},"margin_vs_leverage",{"type":48,"value":238},{"type":42,"tag":57,"props":1272,"children":1274},{"className":1273},[],[1275],{"type":48,"value":1276},"fcf_vs_rcf",{"type":48,"value":1278},"), each a list\nof ",{"type":42,"tag":57,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":48,"value":1284},"{company, x, y}",{"type":48,"value":1286}," points. Drop extreme outliers that would distort the axes.\n",{"type":42,"tag":74,"props":1288,"children":1289},{},[1290,1298],{"type":42,"tag":51,"props":1291,"children":1292},{},[1293],{"type":42,"tag":107,"props":1294,"children":1295},{},[1296],{"type":48,"value":1297},"Scatter chart rendering notes:",{"type":42,"tag":97,"props":1299,"children":1300},{},[1301,1313,1348],{"type":42,"tag":101,"props":1302,"children":1303},{},[1304,1306,1311],{"type":48,"value":1305},"Each company is rendered as a ",{"type":42,"tag":107,"props":1307,"children":1308},{},[1309],{"type":48,"value":1310},"separate series",{"type":48,"value":1312}," so it gets its own distinct brand colour\n(Blue → company 0, Pink → 1, Teal → 2, Gold → 3, Mid Blue → 4, Purple → 5).",{"type":42,"tag":101,"props":1314,"children":1315},{},[1316,1318,1323,1325,1331,1333,1338,1340,1346],{"type":48,"value":1317},"All markers are ",{"type":42,"tag":107,"props":1319,"children":1320},{},[1321],{"type":48,"value":1322},"enlarged filled diamonds",{"type":48,"value":1324}," (",{"type":42,"tag":57,"props":1326,"children":1328},{"className":1327},[],[1329],{"type":48,"value":1330},"pointRadius: 28",{"type":48,"value":1332},") with the company name\nprinted in ",{"type":42,"tag":107,"props":1334,"children":1335},{},[1336],{"type":48,"value":1337},"white bold text centred inside",{"type":48,"value":1339}," each diamond via an ",{"type":42,"tag":57,"props":1341,"children":1343},{"className":1342},[],[1344],{"type":48,"value":1345},"afterDatasetsDraw",{"type":48,"value":1347},"\ninline plugin — colour and label together ensure readability at a glance.",{"type":42,"tag":101,"props":1349,"children":1350},{},[1351,1353,1358],{"type":48,"value":1352},"There is ",{"type":42,"tag":107,"props":1354,"children":1355},{},[1356],{"type":48,"value":1357},"no bottom legend",{"type":48,"value":1359}," below the charts; the in-diamond labels are the sole\nidentifier for each company. Do not add a separate legend.",{"type":42,"tag":101,"props":1361,"children":1362},{},[1363,1368,1369,1375,1377,1383,1385,1391,1393,1399,1401,1407,1409,1415,1417],{"type":42,"tag":107,"props":1364,"children":1365},{},[1366],{"type":48,"value":1367},"scorecard",{"type":48,"value":1069},{"type":42,"tag":57,"props":1370,"children":1372},{"className":1371},[],[1373],{"type":48,"value":1374},"factors",{"type":48,"value":1376}," (row labels, including group headers), ",{"type":42,"tag":57,"props":1378,"children":1380},{"className":1379},[],[1381],{"type":48,"value":1382},"is_header",{"type":48,"value":1384}," boolean\nflags per row, ",{"type":42,"tag":57,"props":1386,"children":1388},{"className":1387},[],[1389],{"type":48,"value":1390},"companies",{"type":48,"value":1392}," (column headers), and ",{"type":42,"tag":57,"props":1394,"children":1396},{"className":1395},[],[1397],{"type":48,"value":1398},"values",{"type":48,"value":1400}," as a 3D array: outer = rows,\nmiddle = columns, inner = ",{"type":42,"tag":57,"props":1402,"children":1404},{"className":1403},[],[1405],{"type":48,"value":1406},"[measure, score]",{"type":48,"value":1408}," or ",{"type":42,"tag":57,"props":1410,"children":1412},{"className":1411},[],[1413],{"type":48,"value":1414},"[]",{"type":48,"value":1416}," for header rows.\n",{"type":42,"tag":74,"props":1418,"children":1419},{},[1420,1428],{"type":42,"tag":51,"props":1421,"children":1422},{},[1423],{"type":42,"tag":107,"props":1424,"children":1425},{},[1426],{"type":48,"value":1427},"SCORECARD CONTRACT — READ CAREFULLY:",{"type":42,"tag":97,"props":1429,"children":1430},{},[1431,1464,1538,1573],{"type":42,"tag":101,"props":1432,"children":1433},{},[1434,1439,1441,1446,1448,1454,1456,1462],{"type":42,"tag":57,"props":1435,"children":1437},{"className":1436},[],[1438],{"type":48,"value":1390},{"type":48,"value":1440}," must list ",{"type":42,"tag":107,"props":1442,"children":1443},{},[1444],{"type":48,"value":1445},"the target company first, followed by peer entities",{"type":48,"value":1447}," (e.g.\n",{"type":42,"tag":57,"props":1449,"children":1451},{"className":1450},[],[1452],{"type":48,"value":1453},"[\"Boeing\", \"Airbus\", \"RTX\", \"Lockheed Martin\"]",{"type":48,"value":1455},"). Never put two time-horizons of the\nsame company here — that produces a scorecard with no peers. The first entry is the\ntarget; its LTM scorecard data goes at ",{"type":42,"tag":57,"props":1457,"children":1459},{"className":1458},[],[1460],{"type":48,"value":1461},"values[row][1]",{"type":48,"value":1463},".",{"type":42,"tag":101,"props":1465,"children":1466},{},[1467,1473,1475,1485,1487,1493,1495,1500,1502,1508,1510,1515,1516,1522,1523,1529,1531,1536],{"type":42,"tag":57,"props":1468,"children":1470},{"className":1469},[],[1471],{"type":48,"value":1472},"values[row]",{"type":48,"value":1474}," is ",{"type":42,"tag":107,"props":1476,"children":1477},{},[1478,1480],{"type":48,"value":1479},"1-indexed against ",{"type":42,"tag":57,"props":1481,"children":1483},{"className":1482},[],[1484],{"type":48,"value":1390},{"type":48,"value":1486},": index ",{"type":42,"tag":57,"props":1488,"children":1490},{"className":1489},[],[1491],{"type":48,"value":1492},"0",{"type":48,"value":1494}," in every row is always ",{"type":42,"tag":57,"props":1496,"children":1498},{"className":1497},[],[1499],{"type":48,"value":1414},{"type":48,"value":1501},"\n(a silent placeholder the builder skips). ",{"type":42,"tag":57,"props":1503,"children":1505},{"className":1504},[],[1506],{"type":48,"value":1507},"companies[0]",{"type":48,"value":1509}," maps to ",{"type":42,"tag":57,"props":1511,"children":1513},{"className":1512},[],[1514],{"type":48,"value":1461},{"type":48,"value":253},{"type":42,"tag":57,"props":1517,"children":1519},{"className":1518},[],[1520],{"type":48,"value":1521},"companies[1]",{"type":48,"value":1509},{"type":42,"tag":57,"props":1524,"children":1526},{"className":1525},[],[1527],{"type":48,"value":1528},"values[row][2]",{"type":48,"value":1530},", and so on. Omitting the ",{"type":42,"tag":57,"props":1532,"children":1534},{"className":1533},[],[1535],{"type":48,"value":1414},{"type":48,"value":1537}," at index 0 will\nshift every peer column one position and silently misalign the data.",{"type":42,"tag":101,"props":1539,"children":1540},{},[1541,1543,1549,1551,1557,1559,1564,1566,1572],{"type":48,"value":1542},"Header rows (",{"type":42,"tag":57,"props":1544,"children":1546},{"className":1545},[],[1547],{"type":48,"value":1548},"is_header=true",{"type":48,"value":1550},") use ",{"type":42,"tag":57,"props":1552,"children":1554},{"className":1553},[],[1555],{"type":48,"value":1556},"values[row] = [[], [], [], ...]",{"type":48,"value":1558}," — one ",{"type":42,"tag":57,"props":1560,"children":1562},{"className":1561},[],[1563],{"type":48,"value":1414},{"type":48,"value":1565}," per company\nplus one for the placeholder. Length must equal ",{"type":42,"tag":57,"props":1567,"children":1569},{"className":1568},[],[1570],{"type":48,"value":1571},"len(companies) + 1",{"type":48,"value":1463},{"type":42,"tag":101,"props":1574,"children":1575},{},[1576,1581],{"type":42,"tag":107,"props":1577,"children":1578},{},[1579],{"type":48,"value":1580},"Quick checklist before writing the scorecard payload:",{"type":42,"tag":1582,"props":1583,"children":1584},"ol",{},[1585,1596,1614,1631],{"type":42,"tag":101,"props":1586,"children":1587},{},[1588,1594],{"type":42,"tag":57,"props":1589,"children":1591},{"className":1590},[],[1592],{"type":48,"value":1593},"len(companies)",{"type":48,"value":1595}," = number of peer entities (not counting the target).",{"type":42,"tag":101,"props":1597,"children":1598},{},[1599,1601,1606,1608,1613],{"type":48,"value":1600},"Every non-header ",{"type":42,"tag":57,"props":1602,"children":1604},{"className":1603},[],[1605],{"type":48,"value":1472},{"type":48,"value":1607}," has length ",{"type":42,"tag":57,"props":1609,"children":1611},{"className":1610},[],[1612],{"type":48,"value":1571},{"type":48,"value":1463},{"type":42,"tag":101,"props":1615,"children":1616},{},[1617,1623,1625,1630],{"type":42,"tag":57,"props":1618,"children":1620},{"className":1619},[],[1621],{"type":48,"value":1622},"values[row][0]",{"type":48,"value":1624}," is always ",{"type":42,"tag":57,"props":1626,"children":1628},{"className":1627},[],[1629],{"type":48,"value":1414},{"type":48,"value":1463},{"type":42,"tag":101,"props":1632,"children":1633},{},[1634,1640,1642,1648,1650,1656],{"type":42,"tag":57,"props":1635,"children":1637},{"className":1636},[],[1638],{"type":48,"value":1639},"values[row][i+1]",{"type":48,"value":1641}," contains ",{"type":42,"tag":57,"props":1643,"children":1645},{"className":1644},[],[1646],{"type":48,"value":1647},"[\"metric_value\", \"ScoreLabel\"]",{"type":48,"value":1649}," for ",{"type":42,"tag":57,"props":1651,"children":1653},{"className":1652},[],[1654],{"type":48,"value":1655},"companies[i]",{"type":48,"value":1463},{"type":42,"tag":101,"props":1658,"children":1659},{},[1660,1665],{"type":42,"tag":107,"props":1661,"children":1662},{},[1663],{"type":48,"value":1664},"esg_analysis",{"type":48,"value":1666}," — table of CIS\u002FE\u002FS\u002FG scores plus 3-5 commentary bullets.",{"type":42,"tag":51,"props":1668,"children":1669},{},[1670],{"type":48,"value":1671},"Target first in every peer table.",{"type":42,"tag":421,"props":1673,"children":1674},{},[],{"type":42,"tag":78,"props":1676,"children":1678},{"id":1677},"step-4-build-the-html-report",[1679],{"type":48,"value":1680},"Step 4 — Build the HTML report",{"type":42,"tag":51,"props":1682,"children":1683},{},[1684,1689,1691,1696,1698,1704],{"type":42,"tag":107,"props":1685,"children":1686},{},[1687],{"type":48,"value":1688},"Default output location: always save runs to the user's Desktop",{"type":48,"value":1690}," so they're easy to\nfind. Use ",{"type":42,"tag":57,"props":1692,"children":1694},{"className":1693},[],[1695],{"type":48,"value":127},{"type":48,"value":1697}," as the ",{"type":42,"tag":57,"props":1699,"children":1701},{"className":1700},[],[1702],{"type":48,"value":1703},"\u003Coutput-dir>",{"type":48,"value":1705},".\nOnly use a different path if the user explicitly asks for one.",{"type":42,"tag":1582,"props":1707,"children":1708},{},[1709,1721,1763,1852,1863],{"type":42,"tag":101,"props":1710,"children":1711},{},[1712,1714,1720],{"type":48,"value":1713},"Save your resolved payload to ",{"type":42,"tag":57,"props":1715,"children":1717},{"className":1716},[],[1718],{"type":48,"value":1719},"\u003Coutput-dir>\u002Fpayload.json",{"type":48,"value":1463},{"type":42,"tag":101,"props":1722,"children":1723},{},[1724,1726,1732,1734],{"type":48,"value":1725},"No additional Python packages are required — ",{"type":42,"tag":57,"props":1727,"children":1729},{"className":1728},[],[1730],{"type":48,"value":1731},"build_html.py",{"type":48,"value":1733}," uses only the standard\nlibrary. Verify Python 3 is available:\n",{"type":42,"tag":1735,"props":1736,"children":1741},"pre",{"className":1737,"code":1738,"language":1739,"meta":1740,"style":1740},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","python3 --version\n","bash","",[1742],{"type":42,"tag":57,"props":1743,"children":1744},{"__ignoreMap":1740},[1745],{"type":42,"tag":1746,"props":1747,"children":1750},"span",{"class":1748,"line":1749},"line",1,[1751,1757],{"type":42,"tag":1746,"props":1752,"children":1754},{"style":1753},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1755],{"type":48,"value":1756},"python3",{"type":42,"tag":1746,"props":1758,"children":1760},{"style":1759},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1761],{"type":48,"value":1762}," --version\n",{"type":42,"tag":101,"props":1764,"children":1765},{},[1766,1768],{"type":48,"value":1767},"Run the builder:\n",{"type":42,"tag":1735,"props":1769,"children":1771},{"className":1737,"code":1770,"language":1739,"meta":1740,"style":1740},"python3 \u003Cskill-dir>\u002Fscripts\u002Fbuild_html.py \u003Coutput-dir>\u002Fpayload.json \u003Coutput-dir>\u002Frating_pitch.html\n",[1772],{"type":42,"tag":57,"props":1773,"children":1774},{"__ignoreMap":1740},[1775],{"type":42,"tag":1746,"props":1776,"children":1777},{"class":1748,"line":1749},[1778,1782,1788,1793,1799,1804,1809,1813,1818,1822,1826,1831,1835,1839,1843,1847],{"type":42,"tag":1746,"props":1779,"children":1780},{"style":1753},[1781],{"type":48,"value":1756},{"type":42,"tag":1746,"props":1783,"children":1785},{"style":1784},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1786],{"type":48,"value":1787}," \u003C",{"type":42,"tag":1746,"props":1789,"children":1790},{"style":1759},[1791],{"type":48,"value":1792},"skill-di",{"type":42,"tag":1746,"props":1794,"children":1796},{"style":1795},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1797],{"type":48,"value":1798},"r",{"type":42,"tag":1746,"props":1800,"children":1801},{"style":1784},[1802],{"type":48,"value":1803},">",{"type":42,"tag":1746,"props":1805,"children":1806},{"style":1759},[1807],{"type":48,"value":1808},"\u002Fscripts\u002Fbuild_html.py",{"type":42,"tag":1746,"props":1810,"children":1811},{"style":1784},[1812],{"type":48,"value":1787},{"type":42,"tag":1746,"props":1814,"children":1815},{"style":1759},[1816],{"type":48,"value":1817},"output-di",{"type":42,"tag":1746,"props":1819,"children":1820},{"style":1795},[1821],{"type":48,"value":1798},{"type":42,"tag":1746,"props":1823,"children":1824},{"style":1784},[1825],{"type":48,"value":1803},{"type":42,"tag":1746,"props":1827,"children":1828},{"style":1759},[1829],{"type":48,"value":1830},"\u002Fpayload.json",{"type":42,"tag":1746,"props":1832,"children":1833},{"style":1784},[1834],{"type":48,"value":1787},{"type":42,"tag":1746,"props":1836,"children":1837},{"style":1759},[1838],{"type":48,"value":1817},{"type":42,"tag":1746,"props":1840,"children":1841},{"style":1795},[1842],{"type":48,"value":1798},{"type":42,"tag":1746,"props":1844,"children":1845},{"style":1784},[1846],{"type":48,"value":1803},{"type":42,"tag":1746,"props":1848,"children":1849},{"style":1759},[1850],{"type":48,"value":1851},"\u002Frating_pitch.html\n",{"type":42,"tag":101,"props":1853,"children":1854},{},[1855,1857],{"type":48,"value":1856},"Open the report: ",{"type":42,"tag":57,"props":1858,"children":1860},{"className":1859},[],[1861],{"type":48,"value":1862},"open \u003Coutput-dir>\u002Frating_pitch.html",{"type":42,"tag":101,"props":1864,"children":1865},{},[1866,1868,1874],{"type":48,"value":1867},"The final assistant message gives the full ",{"type":42,"tag":57,"props":1869,"children":1871},{"className":1870},[],[1872],{"type":48,"value":1873},"\u003Coutput-dir>\u002Frating_pitch.html",{"type":48,"value":1875}," path so the\nuser can open the report in their browser.",{"type":42,"tag":51,"props":1877,"children":1878},{},[1879],{"type":48,"value":1880},"If any section data is missing, still include the section in the payload (empty arrays\nare fine) — the builder handles empties gracefully and the deck will stay well-formed.",{"type":42,"tag":421,"props":1882,"children":1883},{},[],{"type":42,"tag":78,"props":1885,"children":1887},{"id":1886},"payload-schema",[1888],{"type":48,"value":1889},"Payload schema",{"type":42,"tag":74,"props":1891,"children":1892},{},[1893],{"type":42,"tag":51,"props":1894,"children":1895},{},[1896,1898,1908,1910,1915,1917,1923,1925,1931,1933,1938],{"type":48,"value":1897},"⚠️ ",{"type":42,"tag":107,"props":1899,"children":1900},{},[1901,1906],{"type":42,"tag":57,"props":1902,"children":1904},{"className":1903},[],[1905],{"type":48,"value":1004},{"type":48,"value":1907}," constraint:",{"type":48,"value":1909}," This array MUST have the same length as\n",{"type":42,"tag":57,"props":1911,"children":1913},{"className":1912},[],[1914],{"type":48,"value":994},{"type":48,"value":1916},". Index ",{"type":42,"tag":57,"props":1918,"children":1920},{"className":1919},[],[1921],{"type":48,"value":1922},"i",{"type":48,"value":1924}," must match: ",{"type":42,"tag":57,"props":1926,"children":1928},{"className":1927},[],[1929],{"type":48,"value":1930},"rating_history[i] ↔ rating_chart_data[i]",{"type":48,"value":1932},".\nBoth arrays must be sorted ",{"type":42,"tag":107,"props":1934,"children":1935},{},[1936],{"type":48,"value":1937},"oldest → newest",{"type":48,"value":1463},{"type":42,"tag":1735,"props":1940,"children":1944},{"className":1941,"code":1942,"language":1943,"meta":1740,"style":1740},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"report_date\": \"April 15, 2026\",\n  \"target_company\": \"Boeing Company (The)\",\n  \"sector\": \"Aerospace\u002FDefense\",\n  \"currency\": \"USD\",\n  \"companies\": [\"Boeing\", \"RTX\", \"Northrop Grumman\", \"...\"],\n  \"sources\": [\n    {\"id\": 1, \"title\": \"\", \"source\": \"\", \"date\": \"\", \"url\": \"\"}  \u002F\u002F id optional; rendered as [n] citation\n  ],\n  \"sections\": {\n    \"sector_overview\": {\n      \"overview_bullets\": [\"...\", \"...\", \"...\"],\n      \"watchlist_bullets\": [\"...\", \"...\", \"...\"],\n      \"takeaway_bullets\": [\"...\", \"...\", \"...\"]\n    },\n    \"moodys_view\": {\n      \"outlook_summary\": \"Two to four sentences (plain text or \u003Cp>...\u003C\u002Fp>).\",\n      \"company_positioning\": \"One-line positioning statement.\",\n      \"outlook_distribution\": [\n        {\"category\": \"Stable\",   \"count\": 11, \"color\": \"#BDBFC3\"},\n        {\"category\": \"Positive\", \"count\": 5,  \"color\": \"#5EB6BB\"},\n        {\"category\": \"Negative\", \"count\": 3,  \"color\": \"#F09613\"},\n        {\"category\": \"Under Review\", \"count\": 1, \"color\": \"#ED1B2E\"}\n      ]\n    },\n    \"macro_outlook\": {\n      \"gdp_table\": {\n        \"year_columns\": [\"2023\", \"2024\", \"2025F\", \"2026F\"],\n        \"rows\": [{\"country\": \"United States\", \"values\": [\"2.9\", \"2.8\", \"2.0\", \"1.8\"]}]\n      },\n      \"gdp_commentary\": [\"...\", \"...\", \"...\"]\n    },\n    \"rating_actions_ytd\": [\n      {\"date\": \"Nov 20, 2025\", \"company\": \"...\", \"summary\": \"...\"}\n    ],\n    \"financial_analysis\": {\n      \"commentary\": [\"...\", \"...\"],\n      \"rating_history\": [\n        {\"date\": \"Sep 2025\", \"rating\": \"Baa3\", \"outlook\": \"Negative\",\n         \"direction\": \"Affirmation\", \"reason\": \"...\"}\n      ],\n      \"rating_chart_data\": [8, 8, 7, 7, 7]\n    },\n    \"revenue_distribution\": {\n      \"by_segment\":   [{\"name\": \"Commercial Airplanes\", \"percentage\": 45.2}],\n      \"by_geography\": [{\"name\": \"United States\", \"percentage\": 55.0}],\n      \"commentary\": [\"...\", \"...\"]\n    },\n    \"swot\": {\n      \"strengths\":     [\"...\", \"...\", \"...\"],\n      \"weaknesses\":    [\"...\", \"...\", \"...\"],\n      \"opportunities\": [\"...\", \"...\", \"...\"],\n      \"threats\":       [\"...\", \"...\", \"...\"]\n    },\n    \"key_metrics\": {\n      \"periods\":      [\"2021\", \"2022\", \"2023\", \"2024\", \"LTM Sep25\"],\n      \"revenue\":      [62286, 66608, 77794, 66517, 80757],\n      \"ebit_margin\":  [-2.5, 4.1, -1.0, -16.1, -8.2],\n      \"debt_ebitda\":  [-15.9, 8.5, 10.2, -6.8, -15.9],\n      \"rcf_net_debt\": [-5.0, 10.1, 5.5, -8.3, -1.3]\n    },\n    \"strategic_updates\": {\n      \"recent\":  [\"...\", \"...\"],\n      \"forward\": [\"...\", \"...\"]\n    },\n    \"news_mna\": [\n      {\"category\": \"Mergers & Acquisitions\", \"items\": [\"07\u002F2024 → Spirit AeroSystems: ...\"]}\n    ],\n    \"external_trends\": [\n      {\"category\": \"Macro & Sector Trends\", \"items\": [\"...\"]}\n    ],\n    \"peer_summary\": {\n      \"table\": [\n        {\"company\": \"Boeing\", \"country\": \"United States\",\n         \"market_cap\": \"USD 152,794M (Oct 2025)\", \"rating\": \"Baa3\",\n         \"outlook\": \"Negative\", \"business_mix\": \"Commercial, Defense, Services\"}\n      ],\n      \"commentary\": [\"...\", \"...\"]\n    },\n    \"peer_financials\": {\n      \"columns\": [\"Revenue\", \"EBITDA\", \"EBITDA Mg%\", \"CAPEX\", \"R&D\u002FRev\",\n                  \"Debt\u002FEBITDA\", \"FFO\u002FDebt%\", \"FCF\u002FDebt%\", \"RCF\u002FDebt%\"],\n      \"rows\": [\n        {\"company\": \"Boeing\", \"period\": \"FY2024\", \"currency\": \"USD\",\n         \"values\": [\"66,517\", \"(7,913)\", \"--\", \"(2,230)\", \"0.06\",\n                    \"(6.81)\", \"(6.15)\", \"(26.57)\", \"(6.15)\"]}\n      ]\n    },\n    \"peer_debt_charts\": {\n      \"rcf_net_debt\": [\n        {\"company\": \"Gen Dynamics\", \"value\": 36.93, \"period\": \"FY2024\"},\n        {\"company\": \"Airbus\",       \"value\": 32.0,  \"period\": \"FY2024\"},\n        {\"company\": \"Boeing\",       \"value\": -6.15, \"period\": \"FY2024\"}\n      ],\n      \"debt_ebitda\": [\n        {\"company\": \"Airbus\",       \"value\": 1.55,  \"period\": \"FY2024\"},\n        {\"company\": \"Gen Dynamics\", \"value\": 1.62,  \"period\": \"FY2024\"},\n        {\"company\": \"Boeing\",       \"value\": -6.81, \"period\": \"FY2024\"}\n      ],\n      \"commentary\": [\"Two-sentence commentary.\"]\n    },\n    \"peer_profitability_charts\": {\n      \"revenue\": [\n        {\"company\": \"RTX\",      \"value\": 80738, \"period\": \"FY2024\"},\n        {\"company\": \"Lockheed\", \"value\": 71043, \"period\": \"FY2024\"},\n        {\"company\": \"Airbus\",   \"value\": 69200, \"period\": \"FY2024\"}\n      ],\n      \"ebit_margin\": [\n        {\"company\": \"RTX\",  \"value\": 15.0, \"period\": \"FY2024\"},\n        {\"company\": \"BAE\",  \"value\": 11.9, \"period\": \"FY2024\"},\n        {\"company\": \"Airbus\",\"value\": 10.7, \"period\": \"FY2024\"}\n      ],\n      \"commentary\": [\"Two-sentence commentary.\"]\n    },\n    \"peer_scatter\": {\n      \"margin_vs_leverage\": [{\"company\": \"Boeing\", \"x\": -6.81, \"y\": -16.1}],\n      \"fcf_vs_rcf\":         [{\"company\": \"Boeing\", \"x\": -6.15, \"y\": -26.57}],\n      \"commentary\": [\"Two-sentence commentary.\"]\n    },\n    \"scorecard\": {\n      \"factors\": [\n        \"Factor 1: Scale (20%)\",\n        \"Revenue (USD Billion)\",\n        \"Factor 2: Business Profile (20%)\",\n        \"...\"\n      ],\n      \"is_header\": [true, false, true, false],\n      \"companies\": [\"\u003CTARGET>\", \"\u003CPEER_1>\", \"\u003CPEER_2>\"],\n      \"values\": [\n        [[], [], [], []],\n        [[], [\"\u003Ctarget_rev>\", \"\u003Ctarget_score>\"], [\"\u003Cpeer1_rev>\", \"\u003Cpeer1_score>\"], [\"\u003Cpeer2_rev>\", \"\u003Cpeer2_score>\"]]\n      ]\n    },\n    \"esg_analysis\": {\n      \"table\": [\n        {\"company\": \"Boeing\", \"cis\": \"CIS-4\", \"environmental\": \"E-3\",\n         \"social\": \"S-4\", \"governance\": \"G-4\"}\n      ],\n      \"commentary\": [\"...\", \"...\"]\n    }\n  }\n}\n","json",[1945],{"type":42,"tag":57,"props":1946,"children":1947},{"__ignoreMap":1740},[1948,1956,1999,2037,2075,2113,2208,2234,2378,2387,2413,2438,2512,2585,2659,2668,2692,2730,2768,2793,2899,2998,3097,3196,3205,3213,3237,3262,3356,3505,3514,3587,3595,3619,3726,3735,3759,3815,3839,3947,4019,4028,4095,4103,4127,4214,4296,4352,4360,4384,4458,4532,4605,4679,4687,4711,4819,4889,4960,5030,5100,5108,5132,5188,5244,5252,5276,5356,5364,5388,5465,5473,5497,5521,5593,5663,5733,5741,5797,5805,5829,5938,6011,6035,6140,6249,6321,6329,6337,6361,6385,6483,6582,6679,6687,6711,6808,6905,7002,7010,7051,7059,7083,7107,7204,7302,7399,7407,7431,7528,7626,7723,7731,7771,7779,7803,7909,8015,8055,8063,8087,8111,8132,8153,8174,8191,8199,8239,8314,8338,8361,8485,8493,8501,8525,8549,8657,8729,8737,8793,8802,8811],{"type":42,"tag":1746,"props":1949,"children":1950},{"class":1748,"line":1749},[1951],{"type":42,"tag":1746,"props":1952,"children":1953},{"style":1784},[1954],{"type":48,"value":1955},"{\n",{"type":42,"tag":1746,"props":1957,"children":1959},{"class":1748,"line":1958},2,[1960,1965,1971,1976,1981,1986,1991,1995],{"type":42,"tag":1746,"props":1961,"children":1962},{"style":1784},[1963],{"type":48,"value":1964},"  \"",{"type":42,"tag":1746,"props":1966,"children":1968},{"style":1967},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1969],{"type":48,"value":1970},"report_date",{"type":42,"tag":1746,"props":1972,"children":1973},{"style":1784},[1974],{"type":48,"value":1975},"\"",{"type":42,"tag":1746,"props":1977,"children":1978},{"style":1784},[1979],{"type":48,"value":1980},":",{"type":42,"tag":1746,"props":1982,"children":1983},{"style":1784},[1984],{"type":48,"value":1985}," \"",{"type":42,"tag":1746,"props":1987,"children":1988},{"style":1759},[1989],{"type":48,"value":1990},"April 15, 2026",{"type":42,"tag":1746,"props":1992,"children":1993},{"style":1784},[1994],{"type":48,"value":1975},{"type":42,"tag":1746,"props":1996,"children":1997},{"style":1784},[1998],{"type":48,"value":253},{"type":42,"tag":1746,"props":2000,"children":2002},{"class":1748,"line":2001},3,[2003,2007,2012,2016,2020,2024,2029,2033],{"type":42,"tag":1746,"props":2004,"children":2005},{"style":1784},[2006],{"type":48,"value":1964},{"type":42,"tag":1746,"props":2008,"children":2009},{"style":1967},[2010],{"type":48,"value":2011},"target_company",{"type":42,"tag":1746,"props":2013,"children":2014},{"style":1784},[2015],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2017,"children":2018},{"style":1784},[2019],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2021,"children":2022},{"style":1784},[2023],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2025,"children":2026},{"style":1759},[2027],{"type":48,"value":2028},"Boeing Company (The)",{"type":42,"tag":1746,"props":2030,"children":2031},{"style":1784},[2032],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2034,"children":2035},{"style":1784},[2036],{"type":48,"value":253},{"type":42,"tag":1746,"props":2038,"children":2040},{"class":1748,"line":2039},4,[2041,2045,2050,2054,2058,2062,2067,2071],{"type":42,"tag":1746,"props":2042,"children":2043},{"style":1784},[2044],{"type":48,"value":1964},{"type":42,"tag":1746,"props":2046,"children":2047},{"style":1967},[2048],{"type":48,"value":2049},"sector",{"type":42,"tag":1746,"props":2051,"children":2052},{"style":1784},[2053],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2055,"children":2056},{"style":1784},[2057],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2059,"children":2060},{"style":1784},[2061],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2063,"children":2064},{"style":1759},[2065],{"type":48,"value":2066},"Aerospace\u002FDefense",{"type":42,"tag":1746,"props":2068,"children":2069},{"style":1784},[2070],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2072,"children":2073},{"style":1784},[2074],{"type":48,"value":253},{"type":42,"tag":1746,"props":2076,"children":2078},{"class":1748,"line":2077},5,[2079,2083,2088,2092,2096,2100,2105,2109],{"type":42,"tag":1746,"props":2080,"children":2081},{"style":1784},[2082],{"type":48,"value":1964},{"type":42,"tag":1746,"props":2084,"children":2085},{"style":1967},[2086],{"type":48,"value":2087},"currency",{"type":42,"tag":1746,"props":2089,"children":2090},{"style":1784},[2091],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2093,"children":2094},{"style":1784},[2095],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2097,"children":2098},{"style":1784},[2099],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2101,"children":2102},{"style":1759},[2103],{"type":48,"value":2104},"USD",{"type":42,"tag":1746,"props":2106,"children":2107},{"style":1784},[2108],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2110,"children":2111},{"style":1784},[2112],{"type":48,"value":253},{"type":42,"tag":1746,"props":2114,"children":2116},{"class":1748,"line":2115},6,[2117,2121,2125,2129,2133,2138,2142,2147,2151,2156,2160,2165,2169,2173,2177,2182,2186,2190,2194,2199,2203],{"type":42,"tag":1746,"props":2118,"children":2119},{"style":1784},[2120],{"type":48,"value":1964},{"type":42,"tag":1746,"props":2122,"children":2123},{"style":1967},[2124],{"type":48,"value":1390},{"type":42,"tag":1746,"props":2126,"children":2127},{"style":1784},[2128],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2130,"children":2131},{"style":1784},[2132],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2134,"children":2135},{"style":1784},[2136],{"type":48,"value":2137}," [",{"type":42,"tag":1746,"props":2139,"children":2140},{"style":1784},[2141],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2143,"children":2144},{"style":1759},[2145],{"type":48,"value":2146},"Boeing",{"type":42,"tag":1746,"props":2148,"children":2149},{"style":1784},[2150],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2152,"children":2153},{"style":1784},[2154],{"type":48,"value":2155},",",{"type":42,"tag":1746,"props":2157,"children":2158},{"style":1784},[2159],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2161,"children":2162},{"style":1759},[2163],{"type":48,"value":2164},"RTX",{"type":42,"tag":1746,"props":2166,"children":2167},{"style":1784},[2168],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2170,"children":2171},{"style":1784},[2172],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2174,"children":2175},{"style":1784},[2176],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2178,"children":2179},{"style":1759},[2180],{"type":48,"value":2181},"Northrop Grumman",{"type":42,"tag":1746,"props":2183,"children":2184},{"style":1784},[2185],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2187,"children":2188},{"style":1784},[2189],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2191,"children":2192},{"style":1784},[2193],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2195,"children":2196},{"style":1759},[2197],{"type":48,"value":2198},"...",{"type":42,"tag":1746,"props":2200,"children":2201},{"style":1784},[2202],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2204,"children":2205},{"style":1784},[2206],{"type":48,"value":2207},"],\n",{"type":42,"tag":1746,"props":2209,"children":2211},{"class":1748,"line":2210},7,[2212,2216,2221,2225,2229],{"type":42,"tag":1746,"props":2213,"children":2214},{"style":1784},[2215],{"type":48,"value":1964},{"type":42,"tag":1746,"props":2217,"children":2218},{"style":1967},[2219],{"type":48,"value":2220},"sources",{"type":42,"tag":1746,"props":2222,"children":2223},{"style":1784},[2224],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2226,"children":2227},{"style":1784},[2228],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2230,"children":2231},{"style":1784},[2232],{"type":48,"value":2233}," [\n",{"type":42,"tag":1746,"props":2235,"children":2237},{"class":1748,"line":2236},8,[2238,2243,2247,2252,2256,2260,2266,2270,2274,2279,2283,2287,2292,2296,2300,2305,2309,2313,2317,2321,2325,2330,2334,2338,2342,2346,2350,2355,2359,2363,2367,2372],{"type":42,"tag":1746,"props":2239,"children":2240},{"style":1784},[2241],{"type":48,"value":2242},"    {",{"type":42,"tag":1746,"props":2244,"children":2245},{"style":1784},[2246],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2248,"children":2249},{"style":1753},[2250],{"type":48,"value":2251},"id",{"type":42,"tag":1746,"props":2253,"children":2254},{"style":1784},[2255],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2257,"children":2258},{"style":1784},[2259],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2261,"children":2263},{"style":2262},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[2264],{"type":48,"value":2265}," 1",{"type":42,"tag":1746,"props":2267,"children":2268},{"style":1784},[2269],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2271,"children":2272},{"style":1784},[2273],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2275,"children":2276},{"style":1753},[2277],{"type":48,"value":2278},"title",{"type":42,"tag":1746,"props":2280,"children":2281},{"style":1784},[2282],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2284,"children":2285},{"style":1784},[2286],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2288,"children":2289},{"style":1784},[2290],{"type":48,"value":2291}," \"\"",{"type":42,"tag":1746,"props":2293,"children":2294},{"style":1784},[2295],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2297,"children":2298},{"style":1784},[2299],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2301,"children":2302},{"style":1753},[2303],{"type":48,"value":2304},"source",{"type":42,"tag":1746,"props":2306,"children":2307},{"style":1784},[2308],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2310,"children":2311},{"style":1784},[2312],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2314,"children":2315},{"style":1784},[2316],{"type":48,"value":2291},{"type":42,"tag":1746,"props":2318,"children":2319},{"style":1784},[2320],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2322,"children":2323},{"style":1784},[2324],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2326,"children":2327},{"style":1753},[2328],{"type":48,"value":2329},"date",{"type":42,"tag":1746,"props":2331,"children":2332},{"style":1784},[2333],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2335,"children":2336},{"style":1784},[2337],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2339,"children":2340},{"style":1784},[2341],{"type":48,"value":2291},{"type":42,"tag":1746,"props":2343,"children":2344},{"style":1784},[2345],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2347,"children":2348},{"style":1784},[2349],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2351,"children":2352},{"style":1753},[2353],{"type":48,"value":2354},"url",{"type":42,"tag":1746,"props":2356,"children":2357},{"style":1784},[2358],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2360,"children":2361},{"style":1784},[2362],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2364,"children":2365},{"style":1784},[2366],{"type":48,"value":2291},{"type":42,"tag":1746,"props":2368,"children":2369},{"style":1784},[2370],{"type":48,"value":2371},"}",{"type":42,"tag":1746,"props":2373,"children":2375},{"style":2374},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[2376],{"type":48,"value":2377},"  \u002F\u002F id optional; rendered as [n] citation\n",{"type":42,"tag":1746,"props":2379,"children":2381},{"class":1748,"line":2380},9,[2382],{"type":42,"tag":1746,"props":2383,"children":2384},{"style":1784},[2385],{"type":48,"value":2386},"  ],\n",{"type":42,"tag":1746,"props":2388,"children":2390},{"class":1748,"line":2389},10,[2391,2395,2400,2404,2408],{"type":42,"tag":1746,"props":2392,"children":2393},{"style":1784},[2394],{"type":48,"value":1964},{"type":42,"tag":1746,"props":2396,"children":2397},{"style":1967},[2398],{"type":48,"value":2399},"sections",{"type":42,"tag":1746,"props":2401,"children":2402},{"style":1784},[2403],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2405,"children":2406},{"style":1784},[2407],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2409,"children":2410},{"style":1784},[2411],{"type":48,"value":2412}," {\n",{"type":42,"tag":1746,"props":2414,"children":2416},{"class":1748,"line":2415},11,[2417,2422,2426,2430,2434],{"type":42,"tag":1746,"props":2418,"children":2419},{"style":1784},[2420],{"type":48,"value":2421},"    \"",{"type":42,"tag":1746,"props":2423,"children":2424},{"style":1753},[2425],{"type":48,"value":934},{"type":42,"tag":1746,"props":2427,"children":2428},{"style":1784},[2429],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2431,"children":2432},{"style":1784},[2433],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2435,"children":2436},{"style":1784},[2437],{"type":48,"value":2412},{"type":42,"tag":1746,"props":2439,"children":2441},{"class":1748,"line":2440},12,[2442,2447,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2492,2496,2500,2504,2508],{"type":42,"tag":1746,"props":2443,"children":2444},{"style":1784},[2445],{"type":48,"value":2446},"      \"",{"type":42,"tag":1746,"props":2448,"children":2449},{"style":2262},[2450],{"type":48,"value":2451},"overview_bullets",{"type":42,"tag":1746,"props":2453,"children":2454},{"style":1784},[2455],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2457,"children":2458},{"style":1784},[2459],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2461,"children":2462},{"style":1784},[2463],{"type":48,"value":2137},{"type":42,"tag":1746,"props":2465,"children":2466},{"style":1784},[2467],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2469,"children":2470},{"style":1759},[2471],{"type":48,"value":2198},{"type":42,"tag":1746,"props":2473,"children":2474},{"style":1784},[2475],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2477,"children":2478},{"style":1784},[2479],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2481,"children":2482},{"style":1784},[2483],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2485,"children":2486},{"style":1759},[2487],{"type":48,"value":2198},{"type":42,"tag":1746,"props":2489,"children":2490},{"style":1784},[2491],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2493,"children":2494},{"style":1784},[2495],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2497,"children":2498},{"style":1784},[2499],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2501,"children":2502},{"style":1759},[2503],{"type":48,"value":2198},{"type":42,"tag":1746,"props":2505,"children":2506},{"style":1784},[2507],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2509,"children":2510},{"style":1784},[2511],{"type":48,"value":2207},{"type":42,"tag":1746,"props":2513,"children":2515},{"class":1748,"line":2514},13,[2516,2520,2525,2529,2533,2537,2541,2545,2549,2553,2557,2561,2565,2569,2573,2577,2581],{"type":42,"tag":1746,"props":2517,"children":2518},{"style":1784},[2519],{"type":48,"value":2446},{"type":42,"tag":1746,"props":2521,"children":2522},{"style":2262},[2523],{"type":48,"value":2524},"watchlist_bullets",{"type":42,"tag":1746,"props":2526,"children":2527},{"style":1784},[2528],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2530,"children":2531},{"style":1784},[2532],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2534,"children":2535},{"style":1784},[2536],{"type":48,"value":2137},{"type":42,"tag":1746,"props":2538,"children":2539},{"style":1784},[2540],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2542,"children":2543},{"style":1759},[2544],{"type":48,"value":2198},{"type":42,"tag":1746,"props":2546,"children":2547},{"style":1784},[2548],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2550,"children":2551},{"style":1784},[2552],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2554,"children":2555},{"style":1784},[2556],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2558,"children":2559},{"style":1759},[2560],{"type":48,"value":2198},{"type":42,"tag":1746,"props":2562,"children":2563},{"style":1784},[2564],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2566,"children":2567},{"style":1784},[2568],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2570,"children":2571},{"style":1784},[2572],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2574,"children":2575},{"style":1759},[2576],{"type":48,"value":2198},{"type":42,"tag":1746,"props":2578,"children":2579},{"style":1784},[2580],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2582,"children":2583},{"style":1784},[2584],{"type":48,"value":2207},{"type":42,"tag":1746,"props":2586,"children":2588},{"class":1748,"line":2587},14,[2589,2593,2598,2602,2606,2610,2614,2618,2622,2626,2630,2634,2638,2642,2646,2650,2654],{"type":42,"tag":1746,"props":2590,"children":2591},{"style":1784},[2592],{"type":48,"value":2446},{"type":42,"tag":1746,"props":2594,"children":2595},{"style":2262},[2596],{"type":48,"value":2597},"takeaway_bullets",{"type":42,"tag":1746,"props":2599,"children":2600},{"style":1784},[2601],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2603,"children":2604},{"style":1784},[2605],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2607,"children":2608},{"style":1784},[2609],{"type":48,"value":2137},{"type":42,"tag":1746,"props":2611,"children":2612},{"style":1784},[2613],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2615,"children":2616},{"style":1759},[2617],{"type":48,"value":2198},{"type":42,"tag":1746,"props":2619,"children":2620},{"style":1784},[2621],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2623,"children":2624},{"style":1784},[2625],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2627,"children":2628},{"style":1784},[2629],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2631,"children":2632},{"style":1759},[2633],{"type":48,"value":2198},{"type":42,"tag":1746,"props":2635,"children":2636},{"style":1784},[2637],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2639,"children":2640},{"style":1784},[2641],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2643,"children":2644},{"style":1784},[2645],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2647,"children":2648},{"style":1759},[2649],{"type":48,"value":2198},{"type":42,"tag":1746,"props":2651,"children":2652},{"style":1784},[2653],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2655,"children":2656},{"style":1784},[2657],{"type":48,"value":2658},"]\n",{"type":42,"tag":1746,"props":2660,"children":2662},{"class":1748,"line":2661},15,[2663],{"type":42,"tag":1746,"props":2664,"children":2665},{"style":1784},[2666],{"type":48,"value":2667},"    },\n",{"type":42,"tag":1746,"props":2669,"children":2671},{"class":1748,"line":2670},16,[2672,2676,2680,2684,2688],{"type":42,"tag":1746,"props":2673,"children":2674},{"style":1784},[2675],{"type":48,"value":2421},{"type":42,"tag":1746,"props":2677,"children":2678},{"style":1753},[2679],{"type":48,"value":944},{"type":42,"tag":1746,"props":2681,"children":2682},{"style":1784},[2683],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2685,"children":2686},{"style":1784},[2687],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2689,"children":2690},{"style":1784},[2691],{"type":48,"value":2412},{"type":42,"tag":1746,"props":2693,"children":2695},{"class":1748,"line":2694},17,[2696,2700,2705,2709,2713,2717,2722,2726],{"type":42,"tag":1746,"props":2697,"children":2698},{"style":1784},[2699],{"type":48,"value":2446},{"type":42,"tag":1746,"props":2701,"children":2702},{"style":2262},[2703],{"type":48,"value":2704},"outlook_summary",{"type":42,"tag":1746,"props":2706,"children":2707},{"style":1784},[2708],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2710,"children":2711},{"style":1784},[2712],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2714,"children":2715},{"style":1784},[2716],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2718,"children":2719},{"style":1759},[2720],{"type":48,"value":2721},"Two to four sentences (plain text or \u003Cp>...\u003C\u002Fp>).",{"type":42,"tag":1746,"props":2723,"children":2724},{"style":1784},[2725],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2727,"children":2728},{"style":1784},[2729],{"type":48,"value":253},{"type":42,"tag":1746,"props":2731,"children":2733},{"class":1748,"line":2732},18,[2734,2738,2743,2747,2751,2755,2760,2764],{"type":42,"tag":1746,"props":2735,"children":2736},{"style":1784},[2737],{"type":48,"value":2446},{"type":42,"tag":1746,"props":2739,"children":2740},{"style":2262},[2741],{"type":48,"value":2742},"company_positioning",{"type":42,"tag":1746,"props":2744,"children":2745},{"style":1784},[2746],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2748,"children":2749},{"style":1784},[2750],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2752,"children":2753},{"style":1784},[2754],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2756,"children":2757},{"style":1759},[2758],{"type":48,"value":2759},"One-line positioning statement.",{"type":42,"tag":1746,"props":2761,"children":2762},{"style":1784},[2763],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2765,"children":2766},{"style":1784},[2767],{"type":48,"value":253},{"type":42,"tag":1746,"props":2769,"children":2771},{"class":1748,"line":2770},19,[2772,2776,2781,2785,2789],{"type":42,"tag":1746,"props":2773,"children":2774},{"style":1784},[2775],{"type":48,"value":2446},{"type":42,"tag":1746,"props":2777,"children":2778},{"style":2262},[2779],{"type":48,"value":2780},"outlook_distribution",{"type":42,"tag":1746,"props":2782,"children":2783},{"style":1784},[2784],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2786,"children":2787},{"style":1784},[2788],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2790,"children":2791},{"style":1784},[2792],{"type":48,"value":2233},{"type":42,"tag":1746,"props":2794,"children":2796},{"class":1748,"line":2795},20,[2797,2802,2806,2812,2816,2820,2824,2829,2833,2837,2842,2847,2851,2855,2860,2864,2868,2873,2877,2881,2885,2890,2894],{"type":42,"tag":1746,"props":2798,"children":2799},{"style":1784},[2800],{"type":48,"value":2801},"        {",{"type":42,"tag":1746,"props":2803,"children":2804},{"style":1784},[2805],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2807,"children":2809},{"style":2808},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[2810],{"type":48,"value":2811},"category",{"type":42,"tag":1746,"props":2813,"children":2814},{"style":1784},[2815],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2817,"children":2818},{"style":1784},[2819],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2821,"children":2822},{"style":1784},[2823],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2825,"children":2826},{"style":1759},[2827],{"type":48,"value":2828},"Stable",{"type":42,"tag":1746,"props":2830,"children":2831},{"style":1784},[2832],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2834,"children":2835},{"style":1784},[2836],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2838,"children":2839},{"style":1784},[2840],{"type":48,"value":2841},"   \"",{"type":42,"tag":1746,"props":2843,"children":2844},{"style":2808},[2845],{"type":48,"value":2846},"count",{"type":42,"tag":1746,"props":2848,"children":2849},{"style":1784},[2850],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2852,"children":2853},{"style":1784},[2854],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2856,"children":2857},{"style":2262},[2858],{"type":48,"value":2859}," 11",{"type":42,"tag":1746,"props":2861,"children":2862},{"style":1784},[2863],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2865,"children":2866},{"style":1784},[2867],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2869,"children":2870},{"style":2808},[2871],{"type":48,"value":2872},"color",{"type":42,"tag":1746,"props":2874,"children":2875},{"style":1784},[2876],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2878,"children":2879},{"style":1784},[2880],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2882,"children":2883},{"style":1784},[2884],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2886,"children":2887},{"style":1759},[2888],{"type":48,"value":2889},"#BDBFC3",{"type":42,"tag":1746,"props":2891,"children":2892},{"style":1784},[2893],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2895,"children":2896},{"style":1784},[2897],{"type":48,"value":2898},"},\n",{"type":42,"tag":1746,"props":2900,"children":2902},{"class":1748,"line":2901},21,[2903,2907,2911,2915,2919,2923,2927,2932,2936,2940,2944,2948,2952,2956,2961,2965,2969,2973,2977,2981,2985,2990,2994],{"type":42,"tag":1746,"props":2904,"children":2905},{"style":1784},[2906],{"type":48,"value":2801},{"type":42,"tag":1746,"props":2908,"children":2909},{"style":1784},[2910],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2912,"children":2913},{"style":2808},[2914],{"type":48,"value":2811},{"type":42,"tag":1746,"props":2916,"children":2917},{"style":1784},[2918],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2920,"children":2921},{"style":1784},[2922],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2924,"children":2925},{"style":1784},[2926],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2928,"children":2929},{"style":1759},[2930],{"type":48,"value":2931},"Positive",{"type":42,"tag":1746,"props":2933,"children":2934},{"style":1784},[2935],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2937,"children":2938},{"style":1784},[2939],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2941,"children":2942},{"style":1784},[2943],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2945,"children":2946},{"style":2808},[2947],{"type":48,"value":2846},{"type":42,"tag":1746,"props":2949,"children":2950},{"style":1784},[2951],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2953,"children":2954},{"style":1784},[2955],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2957,"children":2958},{"style":2262},[2959],{"type":48,"value":2960}," 5",{"type":42,"tag":1746,"props":2962,"children":2963},{"style":1784},[2964],{"type":48,"value":2155},{"type":42,"tag":1746,"props":2966,"children":2967},{"style":1784},[2968],{"type":48,"value":1964},{"type":42,"tag":1746,"props":2970,"children":2971},{"style":2808},[2972],{"type":48,"value":2872},{"type":42,"tag":1746,"props":2974,"children":2975},{"style":1784},[2976],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2978,"children":2979},{"style":1784},[2980],{"type":48,"value":1980},{"type":42,"tag":1746,"props":2982,"children":2983},{"style":1784},[2984],{"type":48,"value":1985},{"type":42,"tag":1746,"props":2986,"children":2987},{"style":1759},[2988],{"type":48,"value":2989},"#5EB6BB",{"type":42,"tag":1746,"props":2991,"children":2992},{"style":1784},[2993],{"type":48,"value":1975},{"type":42,"tag":1746,"props":2995,"children":2996},{"style":1784},[2997],{"type":48,"value":2898},{"type":42,"tag":1746,"props":2999,"children":3001},{"class":1748,"line":3000},22,[3002,3006,3010,3014,3018,3022,3026,3031,3035,3039,3043,3047,3051,3055,3060,3064,3068,3072,3076,3080,3084,3089,3093],{"type":42,"tag":1746,"props":3003,"children":3004},{"style":1784},[3005],{"type":48,"value":2801},{"type":42,"tag":1746,"props":3007,"children":3008},{"style":1784},[3009],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3011,"children":3012},{"style":2808},[3013],{"type":48,"value":2811},{"type":42,"tag":1746,"props":3015,"children":3016},{"style":1784},[3017],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3019,"children":3020},{"style":1784},[3021],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3023,"children":3024},{"style":1784},[3025],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3027,"children":3028},{"style":1759},[3029],{"type":48,"value":3030},"Negative",{"type":42,"tag":1746,"props":3032,"children":3033},{"style":1784},[3034],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3036,"children":3037},{"style":1784},[3038],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3040,"children":3041},{"style":1784},[3042],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3044,"children":3045},{"style":2808},[3046],{"type":48,"value":2846},{"type":42,"tag":1746,"props":3048,"children":3049},{"style":1784},[3050],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3052,"children":3053},{"style":1784},[3054],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3056,"children":3057},{"style":2262},[3058],{"type":48,"value":3059}," 3",{"type":42,"tag":1746,"props":3061,"children":3062},{"style":1784},[3063],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3065,"children":3066},{"style":1784},[3067],{"type":48,"value":1964},{"type":42,"tag":1746,"props":3069,"children":3070},{"style":2808},[3071],{"type":48,"value":2872},{"type":42,"tag":1746,"props":3073,"children":3074},{"style":1784},[3075],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3077,"children":3078},{"style":1784},[3079],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3081,"children":3082},{"style":1784},[3083],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3085,"children":3086},{"style":1759},[3087],{"type":48,"value":3088},"#F09613",{"type":42,"tag":1746,"props":3090,"children":3091},{"style":1784},[3092],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3094,"children":3095},{"style":1784},[3096],{"type":48,"value":2898},{"type":42,"tag":1746,"props":3098,"children":3100},{"class":1748,"line":3099},23,[3101,3105,3109,3113,3117,3121,3125,3130,3134,3138,3142,3146,3150,3154,3158,3162,3166,3170,3174,3178,3182,3187,3191],{"type":42,"tag":1746,"props":3102,"children":3103},{"style":1784},[3104],{"type":48,"value":2801},{"type":42,"tag":1746,"props":3106,"children":3107},{"style":1784},[3108],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3110,"children":3111},{"style":2808},[3112],{"type":48,"value":2811},{"type":42,"tag":1746,"props":3114,"children":3115},{"style":1784},[3116],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3118,"children":3119},{"style":1784},[3120],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3122,"children":3123},{"style":1784},[3124],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3126,"children":3127},{"style":1759},[3128],{"type":48,"value":3129},"Under Review",{"type":42,"tag":1746,"props":3131,"children":3132},{"style":1784},[3133],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3135,"children":3136},{"style":1784},[3137],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3139,"children":3140},{"style":1784},[3141],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3143,"children":3144},{"style":2808},[3145],{"type":48,"value":2846},{"type":42,"tag":1746,"props":3147,"children":3148},{"style":1784},[3149],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3151,"children":3152},{"style":1784},[3153],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3155,"children":3156},{"style":2262},[3157],{"type":48,"value":2265},{"type":42,"tag":1746,"props":3159,"children":3160},{"style":1784},[3161],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3163,"children":3164},{"style":1784},[3165],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3167,"children":3168},{"style":2808},[3169],{"type":48,"value":2872},{"type":42,"tag":1746,"props":3171,"children":3172},{"style":1784},[3173],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3175,"children":3176},{"style":1784},[3177],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3179,"children":3180},{"style":1784},[3181],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3183,"children":3184},{"style":1759},[3185],{"type":48,"value":3186},"#ED1B2E",{"type":42,"tag":1746,"props":3188,"children":3189},{"style":1784},[3190],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3192,"children":3193},{"style":1784},[3194],{"type":48,"value":3195},"}\n",{"type":42,"tag":1746,"props":3197,"children":3199},{"class":1748,"line":3198},24,[3200],{"type":42,"tag":1746,"props":3201,"children":3202},{"style":1784},[3203],{"type":48,"value":3204},"      ]\n",{"type":42,"tag":1746,"props":3206,"children":3208},{"class":1748,"line":3207},25,[3209],{"type":42,"tag":1746,"props":3210,"children":3211},{"style":1784},[3212],{"type":48,"value":2667},{"type":42,"tag":1746,"props":3214,"children":3216},{"class":1748,"line":3215},26,[3217,3221,3225,3229,3233],{"type":42,"tag":1746,"props":3218,"children":3219},{"style":1784},[3220],{"type":48,"value":2421},{"type":42,"tag":1746,"props":3222,"children":3223},{"style":1753},[3224],{"type":48,"value":954},{"type":42,"tag":1746,"props":3226,"children":3227},{"style":1784},[3228],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3230,"children":3231},{"style":1784},[3232],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3234,"children":3235},{"style":1784},[3236],{"type":48,"value":2412},{"type":42,"tag":1746,"props":3238,"children":3240},{"class":1748,"line":3239},27,[3241,3245,3250,3254,3258],{"type":42,"tag":1746,"props":3242,"children":3243},{"style":1784},[3244],{"type":48,"value":2446},{"type":42,"tag":1746,"props":3246,"children":3247},{"style":2262},[3248],{"type":48,"value":3249},"gdp_table",{"type":42,"tag":1746,"props":3251,"children":3252},{"style":1784},[3253],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3255,"children":3256},{"style":1784},[3257],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3259,"children":3260},{"style":1784},[3261],{"type":48,"value":2412},{"type":42,"tag":1746,"props":3263,"children":3265},{"class":1748,"line":3264},28,[3266,3271,3276,3280,3284,3288,3292,3297,3301,3305,3309,3314,3318,3322,3326,3331,3335,3339,3343,3348,3352],{"type":42,"tag":1746,"props":3267,"children":3268},{"style":1784},[3269],{"type":48,"value":3270},"        \"",{"type":42,"tag":1746,"props":3272,"children":3273},{"style":2808},[3274],{"type":48,"value":3275},"year_columns",{"type":42,"tag":1746,"props":3277,"children":3278},{"style":1784},[3279],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3281,"children":3282},{"style":1784},[3283],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3285,"children":3286},{"style":1784},[3287],{"type":48,"value":2137},{"type":42,"tag":1746,"props":3289,"children":3290},{"style":1784},[3291],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3293,"children":3294},{"style":1759},[3295],{"type":48,"value":3296},"2023",{"type":42,"tag":1746,"props":3298,"children":3299},{"style":1784},[3300],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3302,"children":3303},{"style":1784},[3304],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3306,"children":3307},{"style":1784},[3308],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3310,"children":3311},{"style":1759},[3312],{"type":48,"value":3313},"2024",{"type":42,"tag":1746,"props":3315,"children":3316},{"style":1784},[3317],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3319,"children":3320},{"style":1784},[3321],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3323,"children":3324},{"style":1784},[3325],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3327,"children":3328},{"style":1759},[3329],{"type":48,"value":3330},"2025F",{"type":42,"tag":1746,"props":3332,"children":3333},{"style":1784},[3334],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3336,"children":3337},{"style":1784},[3338],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3340,"children":3341},{"style":1784},[3342],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3344,"children":3345},{"style":1759},[3346],{"type":48,"value":3347},"2026F",{"type":42,"tag":1746,"props":3349,"children":3350},{"style":1784},[3351],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3353,"children":3354},{"style":1784},[3355],{"type":48,"value":2207},{"type":42,"tag":1746,"props":3357,"children":3359},{"class":1748,"line":3358},29,[3360,3364,3368,3372,3376,3381,3385,3391,3395,3399,3403,3408,3412,3416,3420,3424,3428,3432,3436,3440,3445,3449,3453,3457,3462,3466,3470,3474,3479,3483,3487,3491,3496,3500],{"type":42,"tag":1746,"props":3361,"children":3362},{"style":1784},[3363],{"type":48,"value":3270},{"type":42,"tag":1746,"props":3365,"children":3366},{"style":2808},[3367],{"type":48,"value":1152},{"type":42,"tag":1746,"props":3369,"children":3370},{"style":1784},[3371],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3373,"children":3374},{"style":1784},[3375],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3377,"children":3378},{"style":1784},[3379],{"type":48,"value":3380}," [{",{"type":42,"tag":1746,"props":3382,"children":3383},{"style":1784},[3384],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3386,"children":3388},{"style":3387},"--shiki-light:#916B53;--shiki-default:#916B53;--shiki-dark:#916B53",[3389],{"type":48,"value":3390},"country",{"type":42,"tag":1746,"props":3392,"children":3393},{"style":1784},[3394],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3396,"children":3397},{"style":1784},[3398],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3400,"children":3401},{"style":1784},[3402],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3404,"children":3405},{"style":1759},[3406],{"type":48,"value":3407},"United States",{"type":42,"tag":1746,"props":3409,"children":3410},{"style":1784},[3411],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3413,"children":3414},{"style":1784},[3415],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3417,"children":3418},{"style":1784},[3419],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3421,"children":3422},{"style":3387},[3423],{"type":48,"value":1398},{"type":42,"tag":1746,"props":3425,"children":3426},{"style":1784},[3427],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3429,"children":3430},{"style":1784},[3431],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3433,"children":3434},{"style":1784},[3435],{"type":48,"value":2137},{"type":42,"tag":1746,"props":3437,"children":3438},{"style":1784},[3439],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3441,"children":3442},{"style":1759},[3443],{"type":48,"value":3444},"2.9",{"type":42,"tag":1746,"props":3446,"children":3447},{"style":1784},[3448],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3450,"children":3451},{"style":1784},[3452],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3454,"children":3455},{"style":1784},[3456],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3458,"children":3459},{"style":1759},[3460],{"type":48,"value":3461},"2.8",{"type":42,"tag":1746,"props":3463,"children":3464},{"style":1784},[3465],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3467,"children":3468},{"style":1784},[3469],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3471,"children":3472},{"style":1784},[3473],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3475,"children":3476},{"style":1759},[3477],{"type":48,"value":3478},"2.0",{"type":42,"tag":1746,"props":3480,"children":3481},{"style":1784},[3482],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3484,"children":3485},{"style":1784},[3486],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3488,"children":3489},{"style":1784},[3490],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3492,"children":3493},{"style":1759},[3494],{"type":48,"value":3495},"1.8",{"type":42,"tag":1746,"props":3497,"children":3498},{"style":1784},[3499],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3501,"children":3502},{"style":1784},[3503],{"type":48,"value":3504},"]}]\n",{"type":42,"tag":1746,"props":3506,"children":3508},{"class":1748,"line":3507},30,[3509],{"type":42,"tag":1746,"props":3510,"children":3511},{"style":1784},[3512],{"type":48,"value":3513},"      },\n",{"type":42,"tag":1746,"props":3515,"children":3517},{"class":1748,"line":3516},31,[3518,3522,3527,3531,3535,3539,3543,3547,3551,3555,3559,3563,3567,3571,3575,3579,3583],{"type":42,"tag":1746,"props":3519,"children":3520},{"style":1784},[3521],{"type":48,"value":2446},{"type":42,"tag":1746,"props":3523,"children":3524},{"style":2262},[3525],{"type":48,"value":3526},"gdp_commentary",{"type":42,"tag":1746,"props":3528,"children":3529},{"style":1784},[3530],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3532,"children":3533},{"style":1784},[3534],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3536,"children":3537},{"style":1784},[3538],{"type":48,"value":2137},{"type":42,"tag":1746,"props":3540,"children":3541},{"style":1784},[3542],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3544,"children":3545},{"style":1759},[3546],{"type":48,"value":2198},{"type":42,"tag":1746,"props":3548,"children":3549},{"style":1784},[3550],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3552,"children":3553},{"style":1784},[3554],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3556,"children":3557},{"style":1784},[3558],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3560,"children":3561},{"style":1759},[3562],{"type":48,"value":2198},{"type":42,"tag":1746,"props":3564,"children":3565},{"style":1784},[3566],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3568,"children":3569},{"style":1784},[3570],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3572,"children":3573},{"style":1784},[3574],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3576,"children":3577},{"style":1759},[3578],{"type":48,"value":2198},{"type":42,"tag":1746,"props":3580,"children":3581},{"style":1784},[3582],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3584,"children":3585},{"style":1784},[3586],{"type":48,"value":2658},{"type":42,"tag":1746,"props":3588,"children":3590},{"class":1748,"line":3589},32,[3591],{"type":42,"tag":1746,"props":3592,"children":3593},{"style":1784},[3594],{"type":48,"value":2667},{"type":42,"tag":1746,"props":3596,"children":3598},{"class":1748,"line":3597},33,[3599,3603,3607,3611,3615],{"type":42,"tag":1746,"props":3600,"children":3601},{"style":1784},[3602],{"type":48,"value":2421},{"type":42,"tag":1746,"props":3604,"children":3605},{"style":1753},[3606],{"type":48,"value":964},{"type":42,"tag":1746,"props":3608,"children":3609},{"style":1784},[3610],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3612,"children":3613},{"style":1784},[3614],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3616,"children":3617},{"style":1784},[3618],{"type":48,"value":2233},{"type":42,"tag":1746,"props":3620,"children":3622},{"class":1748,"line":3621},34,[3623,3628,3632,3636,3640,3644,3648,3653,3657,3661,3665,3669,3673,3677,3681,3685,3689,3693,3697,3702,3706,3710,3714,3718,3722],{"type":42,"tag":1746,"props":3624,"children":3625},{"style":1784},[3626],{"type":48,"value":3627},"      {",{"type":42,"tag":1746,"props":3629,"children":3630},{"style":1784},[3631],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3633,"children":3634},{"style":2262},[3635],{"type":48,"value":2329},{"type":42,"tag":1746,"props":3637,"children":3638},{"style":1784},[3639],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3641,"children":3642},{"style":1784},[3643],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3645,"children":3646},{"style":1784},[3647],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3649,"children":3650},{"style":1759},[3651],{"type":48,"value":3652},"Nov 20, 2025",{"type":42,"tag":1746,"props":3654,"children":3655},{"style":1784},[3656],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3658,"children":3659},{"style":1784},[3660],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3662,"children":3663},{"style":1784},[3664],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3666,"children":3667},{"style":2262},[3668],{"type":48,"value":1228},{"type":42,"tag":1746,"props":3670,"children":3671},{"style":1784},[3672],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3674,"children":3675},{"style":1784},[3676],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3678,"children":3679},{"style":1784},[3680],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3682,"children":3683},{"style":1759},[3684],{"type":48,"value":2198},{"type":42,"tag":1746,"props":3686,"children":3687},{"style":1784},[3688],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3690,"children":3691},{"style":1784},[3692],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3694,"children":3695},{"style":1784},[3696],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3698,"children":3699},{"style":2262},[3700],{"type":48,"value":3701},"summary",{"type":42,"tag":1746,"props":3703,"children":3704},{"style":1784},[3705],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3707,"children":3708},{"style":1784},[3709],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3711,"children":3712},{"style":1784},[3713],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3715,"children":3716},{"style":1759},[3717],{"type":48,"value":2198},{"type":42,"tag":1746,"props":3719,"children":3720},{"style":1784},[3721],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3723,"children":3724},{"style":1784},[3725],{"type":48,"value":3195},{"type":42,"tag":1746,"props":3727,"children":3729},{"class":1748,"line":3728},35,[3730],{"type":42,"tag":1746,"props":3731,"children":3732},{"style":1784},[3733],{"type":48,"value":3734},"    ],\n",{"type":42,"tag":1746,"props":3736,"children":3738},{"class":1748,"line":3737},36,[3739,3743,3747,3751,3755],{"type":42,"tag":1746,"props":3740,"children":3741},{"style":1784},[3742],{"type":48,"value":2421},{"type":42,"tag":1746,"props":3744,"children":3745},{"style":1753},[3746],{"type":48,"value":983},{"type":42,"tag":1746,"props":3748,"children":3749},{"style":1784},[3750],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3752,"children":3753},{"style":1784},[3754],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3756,"children":3757},{"style":1784},[3758],{"type":48,"value":2412},{"type":42,"tag":1746,"props":3760,"children":3762},{"class":1748,"line":3761},37,[3763,3767,3771,3775,3779,3783,3787,3791,3795,3799,3803,3807,3811],{"type":42,"tag":1746,"props":3764,"children":3765},{"style":1784},[3766],{"type":48,"value":2446},{"type":42,"tag":1746,"props":3768,"children":3769},{"style":2262},[3770],{"type":48,"value":883},{"type":42,"tag":1746,"props":3772,"children":3773},{"style":1784},[3774],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3776,"children":3777},{"style":1784},[3778],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3780,"children":3781},{"style":1784},[3782],{"type":48,"value":2137},{"type":42,"tag":1746,"props":3784,"children":3785},{"style":1784},[3786],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3788,"children":3789},{"style":1759},[3790],{"type":48,"value":2198},{"type":42,"tag":1746,"props":3792,"children":3793},{"style":1784},[3794],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3796,"children":3797},{"style":1784},[3798],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3800,"children":3801},{"style":1784},[3802],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3804,"children":3805},{"style":1759},[3806],{"type":48,"value":2198},{"type":42,"tag":1746,"props":3808,"children":3809},{"style":1784},[3810],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3812,"children":3813},{"style":1784},[3814],{"type":48,"value":2207},{"type":42,"tag":1746,"props":3816,"children":3818},{"class":1748,"line":3817},38,[3819,3823,3827,3831,3835],{"type":42,"tag":1746,"props":3820,"children":3821},{"style":1784},[3822],{"type":48,"value":2446},{"type":42,"tag":1746,"props":3824,"children":3825},{"style":2262},[3826],{"type":48,"value":994},{"type":42,"tag":1746,"props":3828,"children":3829},{"style":1784},[3830],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3832,"children":3833},{"style":1784},[3834],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3836,"children":3837},{"style":1784},[3838],{"type":48,"value":2233},{"type":42,"tag":1746,"props":3840,"children":3842},{"class":1748,"line":3841},39,[3843,3847,3851,3855,3859,3863,3867,3872,3876,3880,3884,3889,3893,3897,3901,3906,3910,3914,3918,3923,3927,3931,3935,3939,3943],{"type":42,"tag":1746,"props":3844,"children":3845},{"style":1784},[3846],{"type":48,"value":2801},{"type":42,"tag":1746,"props":3848,"children":3849},{"style":1784},[3850],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3852,"children":3853},{"style":2808},[3854],{"type":48,"value":2329},{"type":42,"tag":1746,"props":3856,"children":3857},{"style":1784},[3858],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3860,"children":3861},{"style":1784},[3862],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3864,"children":3865},{"style":1784},[3866],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3868,"children":3869},{"style":1759},[3870],{"type":48,"value":3871},"Sep 2025",{"type":42,"tag":1746,"props":3873,"children":3874},{"style":1784},[3875],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3877,"children":3878},{"style":1784},[3879],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3881,"children":3882},{"style":1784},[3883],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3885,"children":3886},{"style":2808},[3887],{"type":48,"value":3888},"rating",{"type":42,"tag":1746,"props":3890,"children":3891},{"style":1784},[3892],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3894,"children":3895},{"style":1784},[3896],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3898,"children":3899},{"style":1784},[3900],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3902,"children":3903},{"style":1759},[3904],{"type":48,"value":3905},"Baa3",{"type":42,"tag":1746,"props":3907,"children":3908},{"style":1784},[3909],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3911,"children":3912},{"style":1784},[3913],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3915,"children":3916},{"style":1784},[3917],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3919,"children":3920},{"style":2808},[3921],{"type":48,"value":3922},"outlook",{"type":42,"tag":1746,"props":3924,"children":3925},{"style":1784},[3926],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3928,"children":3929},{"style":1784},[3930],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3932,"children":3933},{"style":1784},[3934],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3936,"children":3937},{"style":1759},[3938],{"type":48,"value":3030},{"type":42,"tag":1746,"props":3940,"children":3941},{"style":1784},[3942],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3944,"children":3945},{"style":1784},[3946],{"type":48,"value":253},{"type":42,"tag":1746,"props":3948,"children":3950},{"class":1748,"line":3949},40,[3951,3956,3961,3965,3969,3973,3978,3982,3986,3990,3995,3999,4003,4007,4011,4015],{"type":42,"tag":1746,"props":3952,"children":3953},{"style":1784},[3954],{"type":48,"value":3955},"         \"",{"type":42,"tag":1746,"props":3957,"children":3958},{"style":2808},[3959],{"type":48,"value":3960},"direction",{"type":42,"tag":1746,"props":3962,"children":3963},{"style":1784},[3964],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3966,"children":3967},{"style":1784},[3968],{"type":48,"value":1980},{"type":42,"tag":1746,"props":3970,"children":3971},{"style":1784},[3972],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3974,"children":3975},{"style":1759},[3976],{"type":48,"value":3977},"Affirmation",{"type":42,"tag":1746,"props":3979,"children":3980},{"style":1784},[3981],{"type":48,"value":1975},{"type":42,"tag":1746,"props":3983,"children":3984},{"style":1784},[3985],{"type":48,"value":2155},{"type":42,"tag":1746,"props":3987,"children":3988},{"style":1784},[3989],{"type":48,"value":1985},{"type":42,"tag":1746,"props":3991,"children":3992},{"style":2808},[3993],{"type":48,"value":3994},"reason",{"type":42,"tag":1746,"props":3996,"children":3997},{"style":1784},[3998],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4000,"children":4001},{"style":1784},[4002],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4004,"children":4005},{"style":1784},[4006],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4008,"children":4009},{"style":1759},[4010],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4012,"children":4013},{"style":1784},[4014],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4016,"children":4017},{"style":1784},[4018],{"type":48,"value":3195},{"type":42,"tag":1746,"props":4020,"children":4022},{"class":1748,"line":4021},41,[4023],{"type":42,"tag":1746,"props":4024,"children":4025},{"style":1784},[4026],{"type":48,"value":4027},"      ],\n",{"type":42,"tag":1746,"props":4029,"children":4031},{"class":1748,"line":4030},42,[4032,4036,4040,4044,4048,4052,4057,4061,4066,4070,4075,4079,4083,4087,4091],{"type":42,"tag":1746,"props":4033,"children":4034},{"style":1784},[4035],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4037,"children":4038},{"style":2262},[4039],{"type":48,"value":1004},{"type":42,"tag":1746,"props":4041,"children":4042},{"style":1784},[4043],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4045,"children":4046},{"style":1784},[4047],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4049,"children":4050},{"style":1784},[4051],{"type":48,"value":2137},{"type":42,"tag":1746,"props":4053,"children":4054},{"style":2262},[4055],{"type":48,"value":4056},"8",{"type":42,"tag":1746,"props":4058,"children":4059},{"style":1784},[4060],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4062,"children":4063},{"style":2262},[4064],{"type":48,"value":4065}," 8",{"type":42,"tag":1746,"props":4067,"children":4068},{"style":1784},[4069],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4071,"children":4072},{"style":2262},[4073],{"type":48,"value":4074}," 7",{"type":42,"tag":1746,"props":4076,"children":4077},{"style":1784},[4078],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4080,"children":4081},{"style":2262},[4082],{"type":48,"value":4074},{"type":42,"tag":1746,"props":4084,"children":4085},{"style":1784},[4086],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4088,"children":4089},{"style":2262},[4090],{"type":48,"value":4074},{"type":42,"tag":1746,"props":4092,"children":4093},{"style":1784},[4094],{"type":48,"value":2658},{"type":42,"tag":1746,"props":4096,"children":4098},{"class":1748,"line":4097},43,[4099],{"type":42,"tag":1746,"props":4100,"children":4101},{"style":1784},[4102],{"type":48,"value":2667},{"type":42,"tag":1746,"props":4104,"children":4106},{"class":1748,"line":4105},44,[4107,4111,4115,4119,4123],{"type":42,"tag":1746,"props":4108,"children":4109},{"style":1784},[4110],{"type":48,"value":2421},{"type":42,"tag":1746,"props":4112,"children":4113},{"style":1753},[4114],{"type":48,"value":1021},{"type":42,"tag":1746,"props":4116,"children":4117},{"style":1784},[4118],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4120,"children":4121},{"style":1784},[4122],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4124,"children":4125},{"style":1784},[4126],{"type":48,"value":2412},{"type":42,"tag":1746,"props":4128,"children":4130},{"class":1748,"line":4129},45,[4131,4135,4140,4144,4148,4153,4157,4162,4166,4170,4174,4179,4183,4187,4191,4196,4200,4204,4209],{"type":42,"tag":1746,"props":4132,"children":4133},{"style":1784},[4134],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4136,"children":4137},{"style":2262},[4138],{"type":48,"value":4139},"by_segment",{"type":42,"tag":1746,"props":4141,"children":4142},{"style":1784},[4143],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4145,"children":4146},{"style":1784},[4147],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4149,"children":4150},{"style":1784},[4151],{"type":48,"value":4152},"   [{",{"type":42,"tag":1746,"props":4154,"children":4155},{"style":1784},[4156],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4158,"children":4159},{"style":2808},[4160],{"type":48,"value":4161},"name",{"type":42,"tag":1746,"props":4163,"children":4164},{"style":1784},[4165],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4167,"children":4168},{"style":1784},[4169],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4171,"children":4172},{"style":1784},[4173],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4175,"children":4176},{"style":1759},[4177],{"type":48,"value":4178},"Commercial Airplanes",{"type":42,"tag":1746,"props":4180,"children":4181},{"style":1784},[4182],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4184,"children":4185},{"style":1784},[4186],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4188,"children":4189},{"style":1784},[4190],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4192,"children":4193},{"style":2808},[4194],{"type":48,"value":4195},"percentage",{"type":42,"tag":1746,"props":4197,"children":4198},{"style":1784},[4199],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4201,"children":4202},{"style":1784},[4203],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4205,"children":4206},{"style":2262},[4207],{"type":48,"value":4208}," 45.2",{"type":42,"tag":1746,"props":4210,"children":4211},{"style":1784},[4212],{"type":48,"value":4213},"}],\n",{"type":42,"tag":1746,"props":4215,"children":4217},{"class":1748,"line":4216},46,[4218,4222,4227,4231,4235,4239,4243,4247,4251,4255,4259,4263,4267,4271,4275,4279,4283,4287,4292],{"type":42,"tag":1746,"props":4219,"children":4220},{"style":1784},[4221],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4223,"children":4224},{"style":2262},[4225],{"type":48,"value":4226},"by_geography",{"type":42,"tag":1746,"props":4228,"children":4229},{"style":1784},[4230],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4232,"children":4233},{"style":1784},[4234],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4236,"children":4237},{"style":1784},[4238],{"type":48,"value":3380},{"type":42,"tag":1746,"props":4240,"children":4241},{"style":1784},[4242],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4244,"children":4245},{"style":2808},[4246],{"type":48,"value":4161},{"type":42,"tag":1746,"props":4248,"children":4249},{"style":1784},[4250],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4252,"children":4253},{"style":1784},[4254],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4256,"children":4257},{"style":1784},[4258],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4260,"children":4261},{"style":1759},[4262],{"type":48,"value":3407},{"type":42,"tag":1746,"props":4264,"children":4265},{"style":1784},[4266],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4268,"children":4269},{"style":1784},[4270],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4272,"children":4273},{"style":1784},[4274],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4276,"children":4277},{"style":2808},[4278],{"type":48,"value":4195},{"type":42,"tag":1746,"props":4280,"children":4281},{"style":1784},[4282],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4284,"children":4285},{"style":1784},[4286],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4288,"children":4289},{"style":2262},[4290],{"type":48,"value":4291}," 55.0",{"type":42,"tag":1746,"props":4293,"children":4294},{"style":1784},[4295],{"type":48,"value":4213},{"type":42,"tag":1746,"props":4297,"children":4299},{"class":1748,"line":4298},47,[4300,4304,4308,4312,4316,4320,4324,4328,4332,4336,4340,4344,4348],{"type":42,"tag":1746,"props":4301,"children":4302},{"style":1784},[4303],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4305,"children":4306},{"style":2262},[4307],{"type":48,"value":883},{"type":42,"tag":1746,"props":4309,"children":4310},{"style":1784},[4311],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4313,"children":4314},{"style":1784},[4315],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4317,"children":4318},{"style":1784},[4319],{"type":48,"value":2137},{"type":42,"tag":1746,"props":4321,"children":4322},{"style":1784},[4323],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4325,"children":4326},{"style":1759},[4327],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4329,"children":4330},{"style":1784},[4331],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4333,"children":4334},{"style":1784},[4335],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4337,"children":4338},{"style":1784},[4339],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4341,"children":4342},{"style":1759},[4343],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4345,"children":4346},{"style":1784},[4347],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4349,"children":4350},{"style":1784},[4351],{"type":48,"value":2658},{"type":42,"tag":1746,"props":4353,"children":4355},{"class":1748,"line":4354},48,[4356],{"type":42,"tag":1746,"props":4357,"children":4358},{"style":1784},[4359],{"type":48,"value":2667},{"type":42,"tag":1746,"props":4361,"children":4363},{"class":1748,"line":4362},49,[4364,4368,4372,4376,4380],{"type":42,"tag":1746,"props":4365,"children":4366},{"style":1784},[4367],{"type":48,"value":2421},{"type":42,"tag":1746,"props":4369,"children":4370},{"style":1753},[4371],{"type":48,"value":1031},{"type":42,"tag":1746,"props":4373,"children":4374},{"style":1784},[4375],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4377,"children":4378},{"style":1784},[4379],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4381,"children":4382},{"style":1784},[4383],{"type":48,"value":2412},{"type":42,"tag":1746,"props":4385,"children":4387},{"class":1748,"line":4386},50,[4388,4392,4397,4401,4405,4410,4414,4418,4422,4426,4430,4434,4438,4442,4446,4450,4454],{"type":42,"tag":1746,"props":4389,"children":4390},{"style":1784},[4391],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4393,"children":4394},{"style":2262},[4395],{"type":48,"value":4396},"strengths",{"type":42,"tag":1746,"props":4398,"children":4399},{"style":1784},[4400],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4402,"children":4403},{"style":1784},[4404],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4406,"children":4407},{"style":1784},[4408],{"type":48,"value":4409},"     [",{"type":42,"tag":1746,"props":4411,"children":4412},{"style":1784},[4413],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4415,"children":4416},{"style":1759},[4417],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4419,"children":4420},{"style":1784},[4421],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4423,"children":4424},{"style":1784},[4425],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4427,"children":4428},{"style":1784},[4429],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4431,"children":4432},{"style":1759},[4433],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4435,"children":4436},{"style":1784},[4437],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4439,"children":4440},{"style":1784},[4441],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4443,"children":4444},{"style":1784},[4445],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4447,"children":4448},{"style":1759},[4449],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4451,"children":4452},{"style":1784},[4453],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4455,"children":4456},{"style":1784},[4457],{"type":48,"value":2207},{"type":42,"tag":1746,"props":4459,"children":4461},{"class":1748,"line":4460},51,[4462,4466,4471,4475,4479,4484,4488,4492,4496,4500,4504,4508,4512,4516,4520,4524,4528],{"type":42,"tag":1746,"props":4463,"children":4464},{"style":1784},[4465],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4467,"children":4468},{"style":2262},[4469],{"type":48,"value":4470},"weaknesses",{"type":42,"tag":1746,"props":4472,"children":4473},{"style":1784},[4474],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4476,"children":4477},{"style":1784},[4478],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4480,"children":4481},{"style":1784},[4482],{"type":48,"value":4483},"    [",{"type":42,"tag":1746,"props":4485,"children":4486},{"style":1784},[4487],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4489,"children":4490},{"style":1759},[4491],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4493,"children":4494},{"style":1784},[4495],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4497,"children":4498},{"style":1784},[4499],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4501,"children":4502},{"style":1784},[4503],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4505,"children":4506},{"style":1759},[4507],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4509,"children":4510},{"style":1784},[4511],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4513,"children":4514},{"style":1784},[4515],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4517,"children":4518},{"style":1784},[4519],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4521,"children":4522},{"style":1759},[4523],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4525,"children":4526},{"style":1784},[4527],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4529,"children":4530},{"style":1784},[4531],{"type":48,"value":2207},{"type":42,"tag":1746,"props":4533,"children":4535},{"class":1748,"line":4534},52,[4536,4540,4545,4549,4553,4557,4561,4565,4569,4573,4577,4581,4585,4589,4593,4597,4601],{"type":42,"tag":1746,"props":4537,"children":4538},{"style":1784},[4539],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4541,"children":4542},{"style":2262},[4543],{"type":48,"value":4544},"opportunities",{"type":42,"tag":1746,"props":4546,"children":4547},{"style":1784},[4548],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4550,"children":4551},{"style":1784},[4552],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4554,"children":4555},{"style":1784},[4556],{"type":48,"value":2137},{"type":42,"tag":1746,"props":4558,"children":4559},{"style":1784},[4560],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4562,"children":4563},{"style":1759},[4564],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4566,"children":4567},{"style":1784},[4568],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4570,"children":4571},{"style":1784},[4572],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4574,"children":4575},{"style":1784},[4576],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4578,"children":4579},{"style":1759},[4580],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4582,"children":4583},{"style":1784},[4584],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4586,"children":4587},{"style":1784},[4588],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4590,"children":4591},{"style":1784},[4592],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4594,"children":4595},{"style":1759},[4596],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4598,"children":4599},{"style":1784},[4600],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4602,"children":4603},{"style":1784},[4604],{"type":48,"value":2207},{"type":42,"tag":1746,"props":4606,"children":4608},{"class":1748,"line":4607},53,[4609,4613,4618,4622,4626,4631,4635,4639,4643,4647,4651,4655,4659,4663,4667,4671,4675],{"type":42,"tag":1746,"props":4610,"children":4611},{"style":1784},[4612],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4614,"children":4615},{"style":2262},[4616],{"type":48,"value":4617},"threats",{"type":42,"tag":1746,"props":4619,"children":4620},{"style":1784},[4621],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4623,"children":4624},{"style":1784},[4625],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4627,"children":4628},{"style":1784},[4629],{"type":48,"value":4630},"       [",{"type":42,"tag":1746,"props":4632,"children":4633},{"style":1784},[4634],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4636,"children":4637},{"style":1759},[4638],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4640,"children":4641},{"style":1784},[4642],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4644,"children":4645},{"style":1784},[4646],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4648,"children":4649},{"style":1784},[4650],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4652,"children":4653},{"style":1759},[4654],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4656,"children":4657},{"style":1784},[4658],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4660,"children":4661},{"style":1784},[4662],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4664,"children":4665},{"style":1784},[4666],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4668,"children":4669},{"style":1759},[4670],{"type":48,"value":2198},{"type":42,"tag":1746,"props":4672,"children":4673},{"style":1784},[4674],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4676,"children":4677},{"style":1784},[4678],{"type":48,"value":2658},{"type":42,"tag":1746,"props":4680,"children":4682},{"class":1748,"line":4681},54,[4683],{"type":42,"tag":1746,"props":4684,"children":4685},{"style":1784},[4686],{"type":48,"value":2667},{"type":42,"tag":1746,"props":4688,"children":4690},{"class":1748,"line":4689},55,[4691,4695,4699,4703,4707],{"type":42,"tag":1746,"props":4692,"children":4693},{"style":1784},[4694],{"type":48,"value":2421},{"type":42,"tag":1746,"props":4696,"children":4697},{"style":1753},[4698],{"type":48,"value":1041},{"type":42,"tag":1746,"props":4700,"children":4701},{"style":1784},[4702],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4704,"children":4705},{"style":1784},[4706],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4708,"children":4709},{"style":1784},[4710],{"type":48,"value":2412},{"type":42,"tag":1746,"props":4712,"children":4714},{"class":1748,"line":4713},56,[4715,4719,4723,4727,4731,4736,4740,4745,4749,4753,4757,4762,4766,4770,4774,4778,4782,4786,4790,4794,4798,4802,4806,4811,4815],{"type":42,"tag":1746,"props":4716,"children":4717},{"style":1784},[4718],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4720,"children":4721},{"style":2262},[4722],{"type":48,"value":1049},{"type":42,"tag":1746,"props":4724,"children":4725},{"style":1784},[4726],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4728,"children":4729},{"style":1784},[4730],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4732,"children":4733},{"style":1784},[4734],{"type":48,"value":4735},"      [",{"type":42,"tag":1746,"props":4737,"children":4738},{"style":1784},[4739],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4741,"children":4742},{"style":1759},[4743],{"type":48,"value":4744},"2021",{"type":42,"tag":1746,"props":4746,"children":4747},{"style":1784},[4748],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4750,"children":4751},{"style":1784},[4752],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4754,"children":4755},{"style":1784},[4756],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4758,"children":4759},{"style":1759},[4760],{"type":48,"value":4761},"2022",{"type":42,"tag":1746,"props":4763,"children":4764},{"style":1784},[4765],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4767,"children":4768},{"style":1784},[4769],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4771,"children":4772},{"style":1784},[4773],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4775,"children":4776},{"style":1759},[4777],{"type":48,"value":3296},{"type":42,"tag":1746,"props":4779,"children":4780},{"style":1784},[4781],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4783,"children":4784},{"style":1784},[4785],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4787,"children":4788},{"style":1784},[4789],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4791,"children":4792},{"style":1759},[4793],{"type":48,"value":3313},{"type":42,"tag":1746,"props":4795,"children":4796},{"style":1784},[4797],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4799,"children":4800},{"style":1784},[4801],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4803,"children":4804},{"style":1784},[4805],{"type":48,"value":1985},{"type":42,"tag":1746,"props":4807,"children":4808},{"style":1759},[4809],{"type":48,"value":4810},"LTM Sep25",{"type":42,"tag":1746,"props":4812,"children":4813},{"style":1784},[4814],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4816,"children":4817},{"style":1784},[4818],{"type":48,"value":2207},{"type":42,"tag":1746,"props":4820,"children":4822},{"class":1748,"line":4821},57,[4823,4827,4832,4836,4840,4844,4849,4853,4858,4862,4867,4871,4876,4880,4885],{"type":42,"tag":1746,"props":4824,"children":4825},{"style":1784},[4826],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4828,"children":4829},{"style":2262},[4830],{"type":48,"value":4831},"revenue",{"type":42,"tag":1746,"props":4833,"children":4834},{"style":1784},[4835],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4837,"children":4838},{"style":1784},[4839],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4841,"children":4842},{"style":1784},[4843],{"type":48,"value":4735},{"type":42,"tag":1746,"props":4845,"children":4846},{"style":2262},[4847],{"type":48,"value":4848},"62286",{"type":42,"tag":1746,"props":4850,"children":4851},{"style":1784},[4852],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4854,"children":4855},{"style":2262},[4856],{"type":48,"value":4857}," 66608",{"type":42,"tag":1746,"props":4859,"children":4860},{"style":1784},[4861],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4863,"children":4864},{"style":2262},[4865],{"type":48,"value":4866}," 77794",{"type":42,"tag":1746,"props":4868,"children":4869},{"style":1784},[4870],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4872,"children":4873},{"style":2262},[4874],{"type":48,"value":4875}," 66517",{"type":42,"tag":1746,"props":4877,"children":4878},{"style":1784},[4879],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4881,"children":4882},{"style":2262},[4883],{"type":48,"value":4884}," 80757",{"type":42,"tag":1746,"props":4886,"children":4887},{"style":1784},[4888],{"type":48,"value":2207},{"type":42,"tag":1746,"props":4890,"children":4892},{"class":1748,"line":4891},58,[4893,4897,4902,4906,4910,4915,4920,4924,4929,4933,4938,4942,4947,4951,4956],{"type":42,"tag":1746,"props":4894,"children":4895},{"style":1784},[4896],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4898,"children":4899},{"style":2262},[4900],{"type":48,"value":4901},"ebit_margin",{"type":42,"tag":1746,"props":4903,"children":4904},{"style":1784},[4905],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4907,"children":4908},{"style":1784},[4909],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4911,"children":4912},{"style":1784},[4913],{"type":48,"value":4914},"  [",{"type":42,"tag":1746,"props":4916,"children":4917},{"style":2262},[4918],{"type":48,"value":4919},"-2.5",{"type":42,"tag":1746,"props":4921,"children":4922},{"style":1784},[4923],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4925,"children":4926},{"style":2262},[4927],{"type":48,"value":4928}," 4.1",{"type":42,"tag":1746,"props":4930,"children":4931},{"style":1784},[4932],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4934,"children":4935},{"style":2262},[4936],{"type":48,"value":4937}," -1.0",{"type":42,"tag":1746,"props":4939,"children":4940},{"style":1784},[4941],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4943,"children":4944},{"style":2262},[4945],{"type":48,"value":4946}," -16.1",{"type":42,"tag":1746,"props":4948,"children":4949},{"style":1784},[4950],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4952,"children":4953},{"style":2262},[4954],{"type":48,"value":4955}," -8.2",{"type":42,"tag":1746,"props":4957,"children":4958},{"style":1784},[4959],{"type":48,"value":2207},{"type":42,"tag":1746,"props":4961,"children":4963},{"class":1748,"line":4962},59,[4964,4968,4973,4977,4981,4985,4990,4994,4999,5003,5008,5012,5017,5021,5026],{"type":42,"tag":1746,"props":4965,"children":4966},{"style":1784},[4967],{"type":48,"value":2446},{"type":42,"tag":1746,"props":4969,"children":4970},{"style":2262},[4971],{"type":48,"value":4972},"debt_ebitda",{"type":42,"tag":1746,"props":4974,"children":4975},{"style":1784},[4976],{"type":48,"value":1975},{"type":42,"tag":1746,"props":4978,"children":4979},{"style":1784},[4980],{"type":48,"value":1980},{"type":42,"tag":1746,"props":4982,"children":4983},{"style":1784},[4984],{"type":48,"value":4914},{"type":42,"tag":1746,"props":4986,"children":4987},{"style":2262},[4988],{"type":48,"value":4989},"-15.9",{"type":42,"tag":1746,"props":4991,"children":4992},{"style":1784},[4993],{"type":48,"value":2155},{"type":42,"tag":1746,"props":4995,"children":4996},{"style":2262},[4997],{"type":48,"value":4998}," 8.5",{"type":42,"tag":1746,"props":5000,"children":5001},{"style":1784},[5002],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5004,"children":5005},{"style":2262},[5006],{"type":48,"value":5007}," 10.2",{"type":42,"tag":1746,"props":5009,"children":5010},{"style":1784},[5011],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5013,"children":5014},{"style":2262},[5015],{"type":48,"value":5016}," -6.8",{"type":42,"tag":1746,"props":5018,"children":5019},{"style":1784},[5020],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5022,"children":5023},{"style":2262},[5024],{"type":48,"value":5025}," -15.9",{"type":42,"tag":1746,"props":5027,"children":5028},{"style":1784},[5029],{"type":48,"value":2207},{"type":42,"tag":1746,"props":5031,"children":5033},{"class":1748,"line":5032},60,[5034,5038,5043,5047,5051,5055,5060,5064,5069,5073,5078,5082,5087,5091,5096],{"type":42,"tag":1746,"props":5035,"children":5036},{"style":1784},[5037],{"type":48,"value":2446},{"type":42,"tag":1746,"props":5039,"children":5040},{"style":2262},[5041],{"type":48,"value":5042},"rcf_net_debt",{"type":42,"tag":1746,"props":5044,"children":5045},{"style":1784},[5046],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5048,"children":5049},{"style":1784},[5050],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5052,"children":5053},{"style":1784},[5054],{"type":48,"value":2137},{"type":42,"tag":1746,"props":5056,"children":5057},{"style":2262},[5058],{"type":48,"value":5059},"-5.0",{"type":42,"tag":1746,"props":5061,"children":5062},{"style":1784},[5063],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5065,"children":5066},{"style":2262},[5067],{"type":48,"value":5068}," 10.1",{"type":42,"tag":1746,"props":5070,"children":5071},{"style":1784},[5072],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5074,"children":5075},{"style":2262},[5076],{"type":48,"value":5077}," 5.5",{"type":42,"tag":1746,"props":5079,"children":5080},{"style":1784},[5081],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5083,"children":5084},{"style":2262},[5085],{"type":48,"value":5086}," -8.3",{"type":42,"tag":1746,"props":5088,"children":5089},{"style":1784},[5090],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5092,"children":5093},{"style":2262},[5094],{"type":48,"value":5095}," -1.3",{"type":42,"tag":1746,"props":5097,"children":5098},{"style":1784},[5099],{"type":48,"value":2658},{"type":42,"tag":1746,"props":5101,"children":5103},{"class":1748,"line":5102},61,[5104],{"type":42,"tag":1746,"props":5105,"children":5106},{"style":1784},[5107],{"type":48,"value":2667},{"type":42,"tag":1746,"props":5109,"children":5111},{"class":1748,"line":5110},62,[5112,5116,5120,5124,5128],{"type":42,"tag":1746,"props":5113,"children":5114},{"style":1784},[5115],{"type":48,"value":2421},{"type":42,"tag":1746,"props":5117,"children":5118},{"style":1753},[5119],{"type":48,"value":1067},{"type":42,"tag":1746,"props":5121,"children":5122},{"style":1784},[5123],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5125,"children":5126},{"style":1784},[5127],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5129,"children":5130},{"style":1784},[5131],{"type":48,"value":2412},{"type":42,"tag":1746,"props":5133,"children":5135},{"class":1748,"line":5134},63,[5136,5140,5144,5148,5152,5156,5160,5164,5168,5172,5176,5180,5184],{"type":42,"tag":1746,"props":5137,"children":5138},{"style":1784},[5139],{"type":48,"value":2446},{"type":42,"tag":1746,"props":5141,"children":5142},{"style":2262},[5143],{"type":48,"value":1075},{"type":42,"tag":1746,"props":5145,"children":5146},{"style":1784},[5147],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5149,"children":5150},{"style":1784},[5151],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5153,"children":5154},{"style":1784},[5155],{"type":48,"value":4914},{"type":42,"tag":1746,"props":5157,"children":5158},{"style":1784},[5159],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5161,"children":5162},{"style":1759},[5163],{"type":48,"value":2198},{"type":42,"tag":1746,"props":5165,"children":5166},{"style":1784},[5167],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5169,"children":5170},{"style":1784},[5171],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5173,"children":5174},{"style":1784},[5175],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5177,"children":5178},{"style":1759},[5179],{"type":48,"value":2198},{"type":42,"tag":1746,"props":5181,"children":5182},{"style":1784},[5183],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5185,"children":5186},{"style":1784},[5187],{"type":48,"value":2207},{"type":42,"tag":1746,"props":5189,"children":5191},{"class":1748,"line":5190},64,[5192,5196,5200,5204,5208,5212,5216,5220,5224,5228,5232,5236,5240],{"type":42,"tag":1746,"props":5193,"children":5194},{"style":1784},[5195],{"type":48,"value":2446},{"type":42,"tag":1746,"props":5197,"children":5198},{"style":2262},[5199],{"type":48,"value":1083},{"type":42,"tag":1746,"props":5201,"children":5202},{"style":1784},[5203],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5205,"children":5206},{"style":1784},[5207],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5209,"children":5210},{"style":1784},[5211],{"type":48,"value":2137},{"type":42,"tag":1746,"props":5213,"children":5214},{"style":1784},[5215],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5217,"children":5218},{"style":1759},[5219],{"type":48,"value":2198},{"type":42,"tag":1746,"props":5221,"children":5222},{"style":1784},[5223],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5225,"children":5226},{"style":1784},[5227],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5229,"children":5230},{"style":1784},[5231],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5233,"children":5234},{"style":1759},[5235],{"type":48,"value":2198},{"type":42,"tag":1746,"props":5237,"children":5238},{"style":1784},[5239],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5241,"children":5242},{"style":1784},[5243],{"type":48,"value":2658},{"type":42,"tag":1746,"props":5245,"children":5247},{"class":1748,"line":5246},65,[5248],{"type":42,"tag":1746,"props":5249,"children":5250},{"style":1784},[5251],{"type":48,"value":2667},{"type":42,"tag":1746,"props":5253,"children":5255},{"class":1748,"line":5254},66,[5256,5260,5264,5268,5272],{"type":42,"tag":1746,"props":5257,"children":5258},{"style":1784},[5259],{"type":48,"value":2421},{"type":42,"tag":1746,"props":5261,"children":5262},{"style":1753},[5263],{"type":48,"value":1093},{"type":42,"tag":1746,"props":5265,"children":5266},{"style":1784},[5267],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5269,"children":5270},{"style":1784},[5271],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5273,"children":5274},{"style":1784},[5275],{"type":48,"value":2233},{"type":42,"tag":1746,"props":5277,"children":5279},{"class":1748,"line":5278},67,[5280,5284,5288,5292,5296,5300,5304,5309,5313,5317,5321,5326,5330,5334,5338,5342,5347,5351],{"type":42,"tag":1746,"props":5281,"children":5282},{"style":1784},[5283],{"type":48,"value":3627},{"type":42,"tag":1746,"props":5285,"children":5286},{"style":1784},[5287],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5289,"children":5290},{"style":2262},[5291],{"type":48,"value":2811},{"type":42,"tag":1746,"props":5293,"children":5294},{"style":1784},[5295],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5297,"children":5298},{"style":1784},[5299],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5301,"children":5302},{"style":1784},[5303],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5305,"children":5306},{"style":1759},[5307],{"type":48,"value":5308},"Mergers & Acquisitions",{"type":42,"tag":1746,"props":5310,"children":5311},{"style":1784},[5312],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5314,"children":5315},{"style":1784},[5316],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5318,"children":5319},{"style":1784},[5320],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5322,"children":5323},{"style":2262},[5324],{"type":48,"value":5325},"items",{"type":42,"tag":1746,"props":5327,"children":5328},{"style":1784},[5329],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5331,"children":5332},{"style":1784},[5333],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5335,"children":5336},{"style":1784},[5337],{"type":48,"value":2137},{"type":42,"tag":1746,"props":5339,"children":5340},{"style":1784},[5341],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5343,"children":5344},{"style":1759},[5345],{"type":48,"value":5346},"07\u002F2024 → Spirit AeroSystems: ...",{"type":42,"tag":1746,"props":5348,"children":5349},{"style":1784},[5350],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5352,"children":5353},{"style":1784},[5354],{"type":48,"value":5355},"]}\n",{"type":42,"tag":1746,"props":5357,"children":5359},{"class":1748,"line":5358},68,[5360],{"type":42,"tag":1746,"props":5361,"children":5362},{"style":1784},[5363],{"type":48,"value":3734},{"type":42,"tag":1746,"props":5365,"children":5367},{"class":1748,"line":5366},69,[5368,5372,5376,5380,5384],{"type":42,"tag":1746,"props":5369,"children":5370},{"style":1784},[5371],{"type":48,"value":2421},{"type":42,"tag":1746,"props":5373,"children":5374},{"style":1753},[5375],{"type":48,"value":1099},{"type":42,"tag":1746,"props":5377,"children":5378},{"style":1784},[5379],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5381,"children":5382},{"style":1784},[5383],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5385,"children":5386},{"style":1784},[5387],{"type":48,"value":2233},{"type":42,"tag":1746,"props":5389,"children":5391},{"class":1748,"line":5390},70,[5392,5396,5400,5404,5408,5412,5416,5421,5425,5429,5433,5437,5441,5445,5449,5453,5457,5461],{"type":42,"tag":1746,"props":5393,"children":5394},{"style":1784},[5395],{"type":48,"value":3627},{"type":42,"tag":1746,"props":5397,"children":5398},{"style":1784},[5399],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5401,"children":5402},{"style":2262},[5403],{"type":48,"value":2811},{"type":42,"tag":1746,"props":5405,"children":5406},{"style":1784},[5407],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5409,"children":5410},{"style":1784},[5411],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5413,"children":5414},{"style":1784},[5415],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5417,"children":5418},{"style":1759},[5419],{"type":48,"value":5420},"Macro & Sector Trends",{"type":42,"tag":1746,"props":5422,"children":5423},{"style":1784},[5424],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5426,"children":5427},{"style":1784},[5428],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5430,"children":5431},{"style":1784},[5432],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5434,"children":5435},{"style":2262},[5436],{"type":48,"value":5325},{"type":42,"tag":1746,"props":5438,"children":5439},{"style":1784},[5440],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5442,"children":5443},{"style":1784},[5444],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5446,"children":5447},{"style":1784},[5448],{"type":48,"value":2137},{"type":42,"tag":1746,"props":5450,"children":5451},{"style":1784},[5452],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5454,"children":5455},{"style":1759},[5456],{"type":48,"value":2198},{"type":42,"tag":1746,"props":5458,"children":5459},{"style":1784},[5460],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5462,"children":5463},{"style":1784},[5464],{"type":48,"value":5355},{"type":42,"tag":1746,"props":5466,"children":5468},{"class":1748,"line":5467},71,[5469],{"type":42,"tag":1746,"props":5470,"children":5471},{"style":1784},[5472],{"type":48,"value":3734},{"type":42,"tag":1746,"props":5474,"children":5476},{"class":1748,"line":5475},72,[5477,5481,5485,5489,5493],{"type":42,"tag":1746,"props":5478,"children":5479},{"style":1784},[5480],{"type":48,"value":2421},{"type":42,"tag":1746,"props":5482,"children":5483},{"style":1753},[5484],{"type":48,"value":1126},{"type":42,"tag":1746,"props":5486,"children":5487},{"style":1784},[5488],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5490,"children":5491},{"style":1784},[5492],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5494,"children":5495},{"style":1784},[5496],{"type":48,"value":2412},{"type":42,"tag":1746,"props":5498,"children":5500},{"class":1748,"line":5499},73,[5501,5505,5509,5513,5517],{"type":42,"tag":1746,"props":5502,"children":5503},{"style":1784},[5504],{"type":48,"value":2446},{"type":42,"tag":1746,"props":5506,"children":5507},{"style":2262},[5508],{"type":48,"value":468},{"type":42,"tag":1746,"props":5510,"children":5511},{"style":1784},[5512],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5514,"children":5515},{"style":1784},[5516],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5518,"children":5519},{"style":1784},[5520],{"type":48,"value":2233},{"type":42,"tag":1746,"props":5522,"children":5524},{"class":1748,"line":5523},74,[5525,5529,5533,5537,5541,5545,5549,5553,5557,5561,5565,5569,5573,5577,5581,5585,5589],{"type":42,"tag":1746,"props":5526,"children":5527},{"style":1784},[5528],{"type":48,"value":2801},{"type":42,"tag":1746,"props":5530,"children":5531},{"style":1784},[5532],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5534,"children":5535},{"style":2808},[5536],{"type":48,"value":1228},{"type":42,"tag":1746,"props":5538,"children":5539},{"style":1784},[5540],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5542,"children":5543},{"style":1784},[5544],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5546,"children":5547},{"style":1784},[5548],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5550,"children":5551},{"style":1759},[5552],{"type":48,"value":2146},{"type":42,"tag":1746,"props":5554,"children":5555},{"style":1784},[5556],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5558,"children":5559},{"style":1784},[5560],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5562,"children":5563},{"style":1784},[5564],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5566,"children":5567},{"style":2808},[5568],{"type":48,"value":3390},{"type":42,"tag":1746,"props":5570,"children":5571},{"style":1784},[5572],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5574,"children":5575},{"style":1784},[5576],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5578,"children":5579},{"style":1784},[5580],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5582,"children":5583},{"style":1759},[5584],{"type":48,"value":3407},{"type":42,"tag":1746,"props":5586,"children":5587},{"style":1784},[5588],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5590,"children":5591},{"style":1784},[5592],{"type":48,"value":253},{"type":42,"tag":1746,"props":5594,"children":5596},{"class":1748,"line":5595},75,[5597,5601,5606,5610,5614,5618,5623,5627,5631,5635,5639,5643,5647,5651,5655,5659],{"type":42,"tag":1746,"props":5598,"children":5599},{"style":1784},[5600],{"type":48,"value":3955},{"type":42,"tag":1746,"props":5602,"children":5603},{"style":2808},[5604],{"type":48,"value":5605},"market_cap",{"type":42,"tag":1746,"props":5607,"children":5608},{"style":1784},[5609],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5611,"children":5612},{"style":1784},[5613],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5615,"children":5616},{"style":1784},[5617],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5619,"children":5620},{"style":1759},[5621],{"type":48,"value":5622},"USD 152,794M (Oct 2025)",{"type":42,"tag":1746,"props":5624,"children":5625},{"style":1784},[5626],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5628,"children":5629},{"style":1784},[5630],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5632,"children":5633},{"style":1784},[5634],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5636,"children":5637},{"style":2808},[5638],{"type":48,"value":3888},{"type":42,"tag":1746,"props":5640,"children":5641},{"style":1784},[5642],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5644,"children":5645},{"style":1784},[5646],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5648,"children":5649},{"style":1784},[5650],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5652,"children":5653},{"style":1759},[5654],{"type":48,"value":3905},{"type":42,"tag":1746,"props":5656,"children":5657},{"style":1784},[5658],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5660,"children":5661},{"style":1784},[5662],{"type":48,"value":253},{"type":42,"tag":1746,"props":5664,"children":5666},{"class":1748,"line":5665},76,[5667,5671,5675,5679,5683,5687,5691,5695,5699,5703,5708,5712,5716,5720,5725,5729],{"type":42,"tag":1746,"props":5668,"children":5669},{"style":1784},[5670],{"type":48,"value":3955},{"type":42,"tag":1746,"props":5672,"children":5673},{"style":2808},[5674],{"type":48,"value":3922},{"type":42,"tag":1746,"props":5676,"children":5677},{"style":1784},[5678],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5680,"children":5681},{"style":1784},[5682],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5684,"children":5685},{"style":1784},[5686],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5688,"children":5689},{"style":1759},[5690],{"type":48,"value":3030},{"type":42,"tag":1746,"props":5692,"children":5693},{"style":1784},[5694],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5696,"children":5697},{"style":1784},[5698],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5700,"children":5701},{"style":1784},[5702],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5704,"children":5705},{"style":2808},[5706],{"type":48,"value":5707},"business_mix",{"type":42,"tag":1746,"props":5709,"children":5710},{"style":1784},[5711],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5713,"children":5714},{"style":1784},[5715],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5717,"children":5718},{"style":1784},[5719],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5721,"children":5722},{"style":1759},[5723],{"type":48,"value":5724},"Commercial, Defense, Services",{"type":42,"tag":1746,"props":5726,"children":5727},{"style":1784},[5728],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5730,"children":5731},{"style":1784},[5732],{"type":48,"value":3195},{"type":42,"tag":1746,"props":5734,"children":5736},{"class":1748,"line":5735},77,[5737],{"type":42,"tag":1746,"props":5738,"children":5739},{"style":1784},[5740],{"type":48,"value":4027},{"type":42,"tag":1746,"props":5742,"children":5744},{"class":1748,"line":5743},78,[5745,5749,5753,5757,5761,5765,5769,5773,5777,5781,5785,5789,5793],{"type":42,"tag":1746,"props":5746,"children":5747},{"style":1784},[5748],{"type":48,"value":2446},{"type":42,"tag":1746,"props":5750,"children":5751},{"style":2262},[5752],{"type":48,"value":883},{"type":42,"tag":1746,"props":5754,"children":5755},{"style":1784},[5756],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5758,"children":5759},{"style":1784},[5760],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5762,"children":5763},{"style":1784},[5764],{"type":48,"value":2137},{"type":42,"tag":1746,"props":5766,"children":5767},{"style":1784},[5768],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5770,"children":5771},{"style":1759},[5772],{"type":48,"value":2198},{"type":42,"tag":1746,"props":5774,"children":5775},{"style":1784},[5776],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5778,"children":5779},{"style":1784},[5780],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5782,"children":5783},{"style":1784},[5784],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5786,"children":5787},{"style":1759},[5788],{"type":48,"value":2198},{"type":42,"tag":1746,"props":5790,"children":5791},{"style":1784},[5792],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5794,"children":5795},{"style":1784},[5796],{"type":48,"value":2658},{"type":42,"tag":1746,"props":5798,"children":5800},{"class":1748,"line":5799},79,[5801],{"type":42,"tag":1746,"props":5802,"children":5803},{"style":1784},[5804],{"type":48,"value":2667},{"type":42,"tag":1746,"props":5806,"children":5808},{"class":1748,"line":5807},80,[5809,5813,5817,5821,5825],{"type":42,"tag":1746,"props":5810,"children":5811},{"style":1784},[5812],{"type":48,"value":2421},{"type":42,"tag":1746,"props":5814,"children":5815},{"style":1753},[5816],{"type":48,"value":1136},{"type":42,"tag":1746,"props":5818,"children":5819},{"style":1784},[5820],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5822,"children":5823},{"style":1784},[5824],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5826,"children":5827},{"style":1784},[5828],{"type":48,"value":2412},{"type":42,"tag":1746,"props":5830,"children":5832},{"class":1748,"line":5831},81,[5833,5837,5841,5845,5849,5853,5857,5862,5866,5870,5874,5879,5883,5887,5891,5896,5900,5904,5908,5913,5917,5921,5925,5930,5934],{"type":42,"tag":1746,"props":5834,"children":5835},{"style":1784},[5836],{"type":48,"value":2446},{"type":42,"tag":1746,"props":5838,"children":5839},{"style":2262},[5840],{"type":48,"value":1144},{"type":42,"tag":1746,"props":5842,"children":5843},{"style":1784},[5844],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5846,"children":5847},{"style":1784},[5848],{"type":48,"value":1980},{"type":42,"tag":1746,"props":5850,"children":5851},{"style":1784},[5852],{"type":48,"value":2137},{"type":42,"tag":1746,"props":5854,"children":5855},{"style":1784},[5856],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5858,"children":5859},{"style":1759},[5860],{"type":48,"value":5861},"Revenue",{"type":42,"tag":1746,"props":5863,"children":5864},{"style":1784},[5865],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5867,"children":5868},{"style":1784},[5869],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5871,"children":5872},{"style":1784},[5873],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5875,"children":5876},{"style":1759},[5877],{"type":48,"value":5878},"EBITDA",{"type":42,"tag":1746,"props":5880,"children":5881},{"style":1784},[5882],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5884,"children":5885},{"style":1784},[5886],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5888,"children":5889},{"style":1784},[5890],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5892,"children":5893},{"style":1759},[5894],{"type":48,"value":5895},"EBITDA Mg%",{"type":42,"tag":1746,"props":5897,"children":5898},{"style":1784},[5899],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5901,"children":5902},{"style":1784},[5903],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5905,"children":5906},{"style":1784},[5907],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5909,"children":5910},{"style":1759},[5911],{"type":48,"value":5912},"CAPEX",{"type":42,"tag":1746,"props":5914,"children":5915},{"style":1784},[5916],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5918,"children":5919},{"style":1784},[5920],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5922,"children":5923},{"style":1784},[5924],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5926,"children":5927},{"style":1759},[5928],{"type":48,"value":5929},"R&D\u002FRev",{"type":42,"tag":1746,"props":5931,"children":5932},{"style":1784},[5933],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5935,"children":5936},{"style":1784},[5937],{"type":48,"value":253},{"type":42,"tag":1746,"props":5939,"children":5941},{"class":1748,"line":5940},82,[5942,5947,5952,5956,5960,5964,5969,5973,5977,5981,5986,5990,5994,5998,6003,6007],{"type":42,"tag":1746,"props":5943,"children":5944},{"style":1784},[5945],{"type":48,"value":5946},"                  \"",{"type":42,"tag":1746,"props":5948,"children":5949},{"style":1759},[5950],{"type":48,"value":5951},"Debt\u002FEBITDA",{"type":42,"tag":1746,"props":5953,"children":5954},{"style":1784},[5955],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5957,"children":5958},{"style":1784},[5959],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5961,"children":5962},{"style":1784},[5963],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5965,"children":5966},{"style":1759},[5967],{"type":48,"value":5968},"FFO\u002FDebt%",{"type":42,"tag":1746,"props":5970,"children":5971},{"style":1784},[5972],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5974,"children":5975},{"style":1784},[5976],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5978,"children":5979},{"style":1784},[5980],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5982,"children":5983},{"style":1759},[5984],{"type":48,"value":5985},"FCF\u002FDebt%",{"type":42,"tag":1746,"props":5987,"children":5988},{"style":1784},[5989],{"type":48,"value":1975},{"type":42,"tag":1746,"props":5991,"children":5992},{"style":1784},[5993],{"type":48,"value":2155},{"type":42,"tag":1746,"props":5995,"children":5996},{"style":1784},[5997],{"type":48,"value":1985},{"type":42,"tag":1746,"props":5999,"children":6000},{"style":1759},[6001],{"type":48,"value":6002},"RCF\u002FDebt%",{"type":42,"tag":1746,"props":6004,"children":6005},{"style":1784},[6006],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6008,"children":6009},{"style":1784},[6010],{"type":48,"value":2207},{"type":42,"tag":1746,"props":6012,"children":6014},{"class":1748,"line":6013},83,[6015,6019,6023,6027,6031],{"type":42,"tag":1746,"props":6016,"children":6017},{"style":1784},[6018],{"type":48,"value":2446},{"type":42,"tag":1746,"props":6020,"children":6021},{"style":2262},[6022],{"type":48,"value":1152},{"type":42,"tag":1746,"props":6024,"children":6025},{"style":1784},[6026],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6028,"children":6029},{"style":1784},[6030],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6032,"children":6033},{"style":1784},[6034],{"type":48,"value":2233},{"type":42,"tag":1746,"props":6036,"children":6038},{"class":1748,"line":6037},84,[6039,6043,6047,6051,6055,6059,6063,6067,6071,6075,6079,6083,6087,6091,6095,6100,6104,6108,6112,6116,6120,6124,6128,6132,6136],{"type":42,"tag":1746,"props":6040,"children":6041},{"style":1784},[6042],{"type":48,"value":2801},{"type":42,"tag":1746,"props":6044,"children":6045},{"style":1784},[6046],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6048,"children":6049},{"style":2808},[6050],{"type":48,"value":1228},{"type":42,"tag":1746,"props":6052,"children":6053},{"style":1784},[6054],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6056,"children":6057},{"style":1784},[6058],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6060,"children":6061},{"style":1784},[6062],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6064,"children":6065},{"style":1759},[6066],{"type":48,"value":2146},{"type":42,"tag":1746,"props":6068,"children":6069},{"style":1784},[6070],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6072,"children":6073},{"style":1784},[6074],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6076,"children":6077},{"style":1784},[6078],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6080,"children":6081},{"style":2808},[6082],{"type":48,"value":786},{"type":42,"tag":1746,"props":6084,"children":6085},{"style":1784},[6086],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6088,"children":6089},{"style":1784},[6090],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6092,"children":6093},{"style":1784},[6094],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6096,"children":6097},{"style":1759},[6098],{"type":48,"value":6099},"FY2024",{"type":42,"tag":1746,"props":6101,"children":6102},{"style":1784},[6103],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6105,"children":6106},{"style":1784},[6107],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6109,"children":6110},{"style":1784},[6111],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6113,"children":6114},{"style":2808},[6115],{"type":48,"value":2087},{"type":42,"tag":1746,"props":6117,"children":6118},{"style":1784},[6119],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6121,"children":6122},{"style":1784},[6123],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6125,"children":6126},{"style":1784},[6127],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6129,"children":6130},{"style":1759},[6131],{"type":48,"value":2104},{"type":42,"tag":1746,"props":6133,"children":6134},{"style":1784},[6135],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6137,"children":6138},{"style":1784},[6139],{"type":48,"value":253},{"type":42,"tag":1746,"props":6141,"children":6143},{"class":1748,"line":6142},85,[6144,6148,6152,6156,6160,6164,6168,6173,6177,6181,6185,6190,6194,6198,6202,6207,6211,6215,6219,6224,6228,6232,6236,6241,6245],{"type":42,"tag":1746,"props":6145,"children":6146},{"style":1784},[6147],{"type":48,"value":3955},{"type":42,"tag":1746,"props":6149,"children":6150},{"style":2808},[6151],{"type":48,"value":1398},{"type":42,"tag":1746,"props":6153,"children":6154},{"style":1784},[6155],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6157,"children":6158},{"style":1784},[6159],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6161,"children":6162},{"style":1784},[6163],{"type":48,"value":2137},{"type":42,"tag":1746,"props":6165,"children":6166},{"style":1784},[6167],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6169,"children":6170},{"style":1759},[6171],{"type":48,"value":6172},"66,517",{"type":42,"tag":1746,"props":6174,"children":6175},{"style":1784},[6176],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6178,"children":6179},{"style":1784},[6180],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6182,"children":6183},{"style":1784},[6184],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6186,"children":6187},{"style":1759},[6188],{"type":48,"value":6189},"(7,913)",{"type":42,"tag":1746,"props":6191,"children":6192},{"style":1784},[6193],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6195,"children":6196},{"style":1784},[6197],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6199,"children":6200},{"style":1784},[6201],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6203,"children":6204},{"style":1759},[6205],{"type":48,"value":6206},"--",{"type":42,"tag":1746,"props":6208,"children":6209},{"style":1784},[6210],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6212,"children":6213},{"style":1784},[6214],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6216,"children":6217},{"style":1784},[6218],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6220,"children":6221},{"style":1759},[6222],{"type":48,"value":6223},"(2,230)",{"type":42,"tag":1746,"props":6225,"children":6226},{"style":1784},[6227],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6229,"children":6230},{"style":1784},[6231],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6233,"children":6234},{"style":1784},[6235],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6237,"children":6238},{"style":1759},[6239],{"type":48,"value":6240},"0.06",{"type":42,"tag":1746,"props":6242,"children":6243},{"style":1784},[6244],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6246,"children":6247},{"style":1784},[6248],{"type":48,"value":253},{"type":42,"tag":1746,"props":6250,"children":6252},{"class":1748,"line":6251},86,[6253,6258,6263,6267,6271,6275,6280,6284,6288,6292,6297,6301,6305,6309,6313,6317],{"type":42,"tag":1746,"props":6254,"children":6255},{"style":1784},[6256],{"type":48,"value":6257},"                    \"",{"type":42,"tag":1746,"props":6259,"children":6260},{"style":1759},[6261],{"type":48,"value":6262},"(6.81)",{"type":42,"tag":1746,"props":6264,"children":6265},{"style":1784},[6266],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6268,"children":6269},{"style":1784},[6270],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6272,"children":6273},{"style":1784},[6274],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6276,"children":6277},{"style":1759},[6278],{"type":48,"value":6279},"(6.15)",{"type":42,"tag":1746,"props":6281,"children":6282},{"style":1784},[6283],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6285,"children":6286},{"style":1784},[6287],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6289,"children":6290},{"style":1784},[6291],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6293,"children":6294},{"style":1759},[6295],{"type":48,"value":6296},"(26.57)",{"type":42,"tag":1746,"props":6298,"children":6299},{"style":1784},[6300],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6302,"children":6303},{"style":1784},[6304],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6306,"children":6307},{"style":1784},[6308],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6310,"children":6311},{"style":1759},[6312],{"type":48,"value":6279},{"type":42,"tag":1746,"props":6314,"children":6315},{"style":1784},[6316],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6318,"children":6319},{"style":1784},[6320],{"type":48,"value":5355},{"type":42,"tag":1746,"props":6322,"children":6324},{"class":1748,"line":6323},87,[6325],{"type":42,"tag":1746,"props":6326,"children":6327},{"style":1784},[6328],{"type":48,"value":3204},{"type":42,"tag":1746,"props":6330,"children":6332},{"class":1748,"line":6331},88,[6333],{"type":42,"tag":1746,"props":6334,"children":6335},{"style":1784},[6336],{"type":48,"value":2667},{"type":42,"tag":1746,"props":6338,"children":6340},{"class":1748,"line":6339},89,[6341,6345,6349,6353,6357],{"type":42,"tag":1746,"props":6342,"children":6343},{"style":1784},[6344],{"type":48,"value":2421},{"type":42,"tag":1746,"props":6346,"children":6347},{"style":1753},[6348],{"type":48,"value":826},{"type":42,"tag":1746,"props":6350,"children":6351},{"style":1784},[6352],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6354,"children":6355},{"style":1784},[6356],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6358,"children":6359},{"style":1784},[6360],{"type":48,"value":2412},{"type":42,"tag":1746,"props":6362,"children":6364},{"class":1748,"line":6363},90,[6365,6369,6373,6377,6381],{"type":42,"tag":1746,"props":6366,"children":6367},{"style":1784},[6368],{"type":48,"value":2446},{"type":42,"tag":1746,"props":6370,"children":6371},{"style":2262},[6372],{"type":48,"value":5042},{"type":42,"tag":1746,"props":6374,"children":6375},{"style":1784},[6376],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6378,"children":6379},{"style":1784},[6380],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6382,"children":6383},{"style":1784},[6384],{"type":48,"value":2233},{"type":42,"tag":1746,"props":6386,"children":6388},{"class":1748,"line":6387},91,[6389,6393,6397,6401,6405,6409,6413,6418,6422,6426,6430,6434,6438,6442,6447,6451,6455,6459,6463,6467,6471,6475,6479],{"type":42,"tag":1746,"props":6390,"children":6391},{"style":1784},[6392],{"type":48,"value":2801},{"type":42,"tag":1746,"props":6394,"children":6395},{"style":1784},[6396],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6398,"children":6399},{"style":2808},[6400],{"type":48,"value":1228},{"type":42,"tag":1746,"props":6402,"children":6403},{"style":1784},[6404],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6406,"children":6407},{"style":1784},[6408],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6410,"children":6411},{"style":1784},[6412],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6414,"children":6415},{"style":1759},[6416],{"type":48,"value":6417},"Gen Dynamics",{"type":42,"tag":1746,"props":6419,"children":6420},{"style":1784},[6421],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6423,"children":6424},{"style":1784},[6425],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6427,"children":6428},{"style":1784},[6429],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6431,"children":6432},{"style":2808},[6433],{"type":48,"value":1236},{"type":42,"tag":1746,"props":6435,"children":6436},{"style":1784},[6437],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6439,"children":6440},{"style":1784},[6441],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6443,"children":6444},{"style":2262},[6445],{"type":48,"value":6446}," 36.93",{"type":42,"tag":1746,"props":6448,"children":6449},{"style":1784},[6450],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6452,"children":6453},{"style":1784},[6454],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6456,"children":6457},{"style":2808},[6458],{"type":48,"value":786},{"type":42,"tag":1746,"props":6460,"children":6461},{"style":1784},[6462],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6464,"children":6465},{"style":1784},[6466],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6468,"children":6469},{"style":1784},[6470],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6472,"children":6473},{"style":1759},[6474],{"type":48,"value":6099},{"type":42,"tag":1746,"props":6476,"children":6477},{"style":1784},[6478],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6480,"children":6481},{"style":1784},[6482],{"type":48,"value":2898},{"type":42,"tag":1746,"props":6484,"children":6486},{"class":1748,"line":6485},92,[6487,6491,6495,6499,6503,6507,6511,6516,6520,6524,6529,6533,6537,6541,6546,6550,6554,6558,6562,6566,6570,6574,6578],{"type":42,"tag":1746,"props":6488,"children":6489},{"style":1784},[6490],{"type":48,"value":2801},{"type":42,"tag":1746,"props":6492,"children":6493},{"style":1784},[6494],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6496,"children":6497},{"style":2808},[6498],{"type":48,"value":1228},{"type":42,"tag":1746,"props":6500,"children":6501},{"style":1784},[6502],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6504,"children":6505},{"style":1784},[6506],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6508,"children":6509},{"style":1784},[6510],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6512,"children":6513},{"style":1759},[6514],{"type":48,"value":6515},"Airbus",{"type":42,"tag":1746,"props":6517,"children":6518},{"style":1784},[6519],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6521,"children":6522},{"style":1784},[6523],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6525,"children":6526},{"style":1784},[6527],{"type":48,"value":6528},"       \"",{"type":42,"tag":1746,"props":6530,"children":6531},{"style":2808},[6532],{"type":48,"value":1236},{"type":42,"tag":1746,"props":6534,"children":6535},{"style":1784},[6536],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6538,"children":6539},{"style":1784},[6540],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6542,"children":6543},{"style":2262},[6544],{"type":48,"value":6545}," 32.0",{"type":42,"tag":1746,"props":6547,"children":6548},{"style":1784},[6549],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6551,"children":6552},{"style":1784},[6553],{"type":48,"value":1964},{"type":42,"tag":1746,"props":6555,"children":6556},{"style":2808},[6557],{"type":48,"value":786},{"type":42,"tag":1746,"props":6559,"children":6560},{"style":1784},[6561],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6563,"children":6564},{"style":1784},[6565],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6567,"children":6568},{"style":1784},[6569],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6571,"children":6572},{"style":1759},[6573],{"type":48,"value":6099},{"type":42,"tag":1746,"props":6575,"children":6576},{"style":1784},[6577],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6579,"children":6580},{"style":1784},[6581],{"type":48,"value":2898},{"type":42,"tag":1746,"props":6583,"children":6585},{"class":1748,"line":6584},93,[6586,6590,6594,6598,6602,6606,6610,6614,6618,6622,6626,6630,6634,6638,6643,6647,6651,6655,6659,6663,6667,6671,6675],{"type":42,"tag":1746,"props":6587,"children":6588},{"style":1784},[6589],{"type":48,"value":2801},{"type":42,"tag":1746,"props":6591,"children":6592},{"style":1784},[6593],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6595,"children":6596},{"style":2808},[6597],{"type":48,"value":1228},{"type":42,"tag":1746,"props":6599,"children":6600},{"style":1784},[6601],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6603,"children":6604},{"style":1784},[6605],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6607,"children":6608},{"style":1784},[6609],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6611,"children":6612},{"style":1759},[6613],{"type":48,"value":2146},{"type":42,"tag":1746,"props":6615,"children":6616},{"style":1784},[6617],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6619,"children":6620},{"style":1784},[6621],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6623,"children":6624},{"style":1784},[6625],{"type":48,"value":6528},{"type":42,"tag":1746,"props":6627,"children":6628},{"style":2808},[6629],{"type":48,"value":1236},{"type":42,"tag":1746,"props":6631,"children":6632},{"style":1784},[6633],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6635,"children":6636},{"style":1784},[6637],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6639,"children":6640},{"style":2262},[6641],{"type":48,"value":6642}," -6.15",{"type":42,"tag":1746,"props":6644,"children":6645},{"style":1784},[6646],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6648,"children":6649},{"style":1784},[6650],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6652,"children":6653},{"style":2808},[6654],{"type":48,"value":786},{"type":42,"tag":1746,"props":6656,"children":6657},{"style":1784},[6658],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6660,"children":6661},{"style":1784},[6662],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6664,"children":6665},{"style":1784},[6666],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6668,"children":6669},{"style":1759},[6670],{"type":48,"value":6099},{"type":42,"tag":1746,"props":6672,"children":6673},{"style":1784},[6674],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6676,"children":6677},{"style":1784},[6678],{"type":48,"value":3195},{"type":42,"tag":1746,"props":6680,"children":6682},{"class":1748,"line":6681},94,[6683],{"type":42,"tag":1746,"props":6684,"children":6685},{"style":1784},[6686],{"type":48,"value":4027},{"type":42,"tag":1746,"props":6688,"children":6690},{"class":1748,"line":6689},95,[6691,6695,6699,6703,6707],{"type":42,"tag":1746,"props":6692,"children":6693},{"style":1784},[6694],{"type":48,"value":2446},{"type":42,"tag":1746,"props":6696,"children":6697},{"style":2262},[6698],{"type":48,"value":4972},{"type":42,"tag":1746,"props":6700,"children":6701},{"style":1784},[6702],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6704,"children":6705},{"style":1784},[6706],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6708,"children":6709},{"style":1784},[6710],{"type":48,"value":2233},{"type":42,"tag":1746,"props":6712,"children":6714},{"class":1748,"line":6713},96,[6715,6719,6723,6727,6731,6735,6739,6743,6747,6751,6755,6759,6763,6767,6772,6776,6780,6784,6788,6792,6796,6800,6804],{"type":42,"tag":1746,"props":6716,"children":6717},{"style":1784},[6718],{"type":48,"value":2801},{"type":42,"tag":1746,"props":6720,"children":6721},{"style":1784},[6722],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6724,"children":6725},{"style":2808},[6726],{"type":48,"value":1228},{"type":42,"tag":1746,"props":6728,"children":6729},{"style":1784},[6730],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6732,"children":6733},{"style":1784},[6734],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6736,"children":6737},{"style":1784},[6738],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6740,"children":6741},{"style":1759},[6742],{"type":48,"value":6515},{"type":42,"tag":1746,"props":6744,"children":6745},{"style":1784},[6746],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6748,"children":6749},{"style":1784},[6750],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6752,"children":6753},{"style":1784},[6754],{"type":48,"value":6528},{"type":42,"tag":1746,"props":6756,"children":6757},{"style":2808},[6758],{"type":48,"value":1236},{"type":42,"tag":1746,"props":6760,"children":6761},{"style":1784},[6762],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6764,"children":6765},{"style":1784},[6766],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6768,"children":6769},{"style":2262},[6770],{"type":48,"value":6771}," 1.55",{"type":42,"tag":1746,"props":6773,"children":6774},{"style":1784},[6775],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6777,"children":6778},{"style":1784},[6779],{"type":48,"value":1964},{"type":42,"tag":1746,"props":6781,"children":6782},{"style":2808},[6783],{"type":48,"value":786},{"type":42,"tag":1746,"props":6785,"children":6786},{"style":1784},[6787],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6789,"children":6790},{"style":1784},[6791],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6793,"children":6794},{"style":1784},[6795],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6797,"children":6798},{"style":1759},[6799],{"type":48,"value":6099},{"type":42,"tag":1746,"props":6801,"children":6802},{"style":1784},[6803],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6805,"children":6806},{"style":1784},[6807],{"type":48,"value":2898},{"type":42,"tag":1746,"props":6809,"children":6811},{"class":1748,"line":6810},97,[6812,6816,6820,6824,6828,6832,6836,6840,6844,6848,6852,6856,6860,6864,6869,6873,6877,6881,6885,6889,6893,6897,6901],{"type":42,"tag":1746,"props":6813,"children":6814},{"style":1784},[6815],{"type":48,"value":2801},{"type":42,"tag":1746,"props":6817,"children":6818},{"style":1784},[6819],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6821,"children":6822},{"style":2808},[6823],{"type":48,"value":1228},{"type":42,"tag":1746,"props":6825,"children":6826},{"style":1784},[6827],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6829,"children":6830},{"style":1784},[6831],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6833,"children":6834},{"style":1784},[6835],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6837,"children":6838},{"style":1759},[6839],{"type":48,"value":6417},{"type":42,"tag":1746,"props":6841,"children":6842},{"style":1784},[6843],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6845,"children":6846},{"style":1784},[6847],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6849,"children":6850},{"style":1784},[6851],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6853,"children":6854},{"style":2808},[6855],{"type":48,"value":1236},{"type":42,"tag":1746,"props":6857,"children":6858},{"style":1784},[6859],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6861,"children":6862},{"style":1784},[6863],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6865,"children":6866},{"style":2262},[6867],{"type":48,"value":6868}," 1.62",{"type":42,"tag":1746,"props":6870,"children":6871},{"style":1784},[6872],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6874,"children":6875},{"style":1784},[6876],{"type":48,"value":1964},{"type":42,"tag":1746,"props":6878,"children":6879},{"style":2808},[6880],{"type":48,"value":786},{"type":42,"tag":1746,"props":6882,"children":6883},{"style":1784},[6884],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6886,"children":6887},{"style":1784},[6888],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6890,"children":6891},{"style":1784},[6892],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6894,"children":6895},{"style":1759},[6896],{"type":48,"value":6099},{"type":42,"tag":1746,"props":6898,"children":6899},{"style":1784},[6900],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6902,"children":6903},{"style":1784},[6904],{"type":48,"value":2898},{"type":42,"tag":1746,"props":6906,"children":6908},{"class":1748,"line":6907},98,[6909,6913,6917,6921,6925,6929,6933,6937,6941,6945,6949,6953,6957,6961,6966,6970,6974,6978,6982,6986,6990,6994,6998],{"type":42,"tag":1746,"props":6910,"children":6911},{"style":1784},[6912],{"type":48,"value":2801},{"type":42,"tag":1746,"props":6914,"children":6915},{"style":1784},[6916],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6918,"children":6919},{"style":2808},[6920],{"type":48,"value":1228},{"type":42,"tag":1746,"props":6922,"children":6923},{"style":1784},[6924],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6926,"children":6927},{"style":1784},[6928],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6930,"children":6931},{"style":1784},[6932],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6934,"children":6935},{"style":1759},[6936],{"type":48,"value":2146},{"type":42,"tag":1746,"props":6938,"children":6939},{"style":1784},[6940],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6942,"children":6943},{"style":1784},[6944],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6946,"children":6947},{"style":1784},[6948],{"type":48,"value":6528},{"type":42,"tag":1746,"props":6950,"children":6951},{"style":2808},[6952],{"type":48,"value":1236},{"type":42,"tag":1746,"props":6954,"children":6955},{"style":1784},[6956],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6958,"children":6959},{"style":1784},[6960],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6962,"children":6963},{"style":2262},[6964],{"type":48,"value":6965}," -6.81",{"type":42,"tag":1746,"props":6967,"children":6968},{"style":1784},[6969],{"type":48,"value":2155},{"type":42,"tag":1746,"props":6971,"children":6972},{"style":1784},[6973],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6975,"children":6976},{"style":2808},[6977],{"type":48,"value":786},{"type":42,"tag":1746,"props":6979,"children":6980},{"style":1784},[6981],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6983,"children":6984},{"style":1784},[6985],{"type":48,"value":1980},{"type":42,"tag":1746,"props":6987,"children":6988},{"style":1784},[6989],{"type":48,"value":1985},{"type":42,"tag":1746,"props":6991,"children":6992},{"style":1759},[6993],{"type":48,"value":6099},{"type":42,"tag":1746,"props":6995,"children":6996},{"style":1784},[6997],{"type":48,"value":1975},{"type":42,"tag":1746,"props":6999,"children":7000},{"style":1784},[7001],{"type":48,"value":3195},{"type":42,"tag":1746,"props":7003,"children":7005},{"class":1748,"line":7004},99,[7006],{"type":42,"tag":1746,"props":7007,"children":7008},{"style":1784},[7009],{"type":48,"value":4027},{"type":42,"tag":1746,"props":7011,"children":7013},{"class":1748,"line":7012},100,[7014,7018,7022,7026,7030,7034,7038,7043,7047],{"type":42,"tag":1746,"props":7015,"children":7016},{"style":1784},[7017],{"type":48,"value":2446},{"type":42,"tag":1746,"props":7019,"children":7020},{"style":2262},[7021],{"type":48,"value":883},{"type":42,"tag":1746,"props":7023,"children":7024},{"style":1784},[7025],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7027,"children":7028},{"style":1784},[7029],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7031,"children":7032},{"style":1784},[7033],{"type":48,"value":2137},{"type":42,"tag":1746,"props":7035,"children":7036},{"style":1784},[7037],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7039,"children":7040},{"style":1759},[7041],{"type":48,"value":7042},"Two-sentence commentary.",{"type":42,"tag":1746,"props":7044,"children":7045},{"style":1784},[7046],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7048,"children":7049},{"style":1784},[7050],{"type":48,"value":2658},{"type":42,"tag":1746,"props":7052,"children":7054},{"class":1748,"line":7053},101,[7055],{"type":42,"tag":1746,"props":7056,"children":7057},{"style":1784},[7058],{"type":48,"value":2667},{"type":42,"tag":1746,"props":7060,"children":7062},{"class":1748,"line":7061},102,[7063,7067,7071,7075,7079],{"type":42,"tag":1746,"props":7064,"children":7065},{"style":1784},[7066],{"type":48,"value":2421},{"type":42,"tag":1746,"props":7068,"children":7069},{"style":1753},[7070],{"type":48,"value":818},{"type":42,"tag":1746,"props":7072,"children":7073},{"style":1784},[7074],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7076,"children":7077},{"style":1784},[7078],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7080,"children":7081},{"style":1784},[7082],{"type":48,"value":2412},{"type":42,"tag":1746,"props":7084,"children":7086},{"class":1748,"line":7085},103,[7087,7091,7095,7099,7103],{"type":42,"tag":1746,"props":7088,"children":7089},{"style":1784},[7090],{"type":48,"value":2446},{"type":42,"tag":1746,"props":7092,"children":7093},{"style":2262},[7094],{"type":48,"value":4831},{"type":42,"tag":1746,"props":7096,"children":7097},{"style":1784},[7098],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7100,"children":7101},{"style":1784},[7102],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7104,"children":7105},{"style":1784},[7106],{"type":48,"value":2233},{"type":42,"tag":1746,"props":7108,"children":7110},{"class":1748,"line":7109},104,[7111,7115,7119,7123,7127,7131,7135,7139,7143,7147,7151,7155,7159,7163,7168,7172,7176,7180,7184,7188,7192,7196,7200],{"type":42,"tag":1746,"props":7112,"children":7113},{"style":1784},[7114],{"type":48,"value":2801},{"type":42,"tag":1746,"props":7116,"children":7117},{"style":1784},[7118],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7120,"children":7121},{"style":2808},[7122],{"type":48,"value":1228},{"type":42,"tag":1746,"props":7124,"children":7125},{"style":1784},[7126],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7128,"children":7129},{"style":1784},[7130],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7132,"children":7133},{"style":1784},[7134],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7136,"children":7137},{"style":1759},[7138],{"type":48,"value":2164},{"type":42,"tag":1746,"props":7140,"children":7141},{"style":1784},[7142],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7144,"children":7145},{"style":1784},[7146],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7148,"children":7149},{"style":1784},[7150],{"type":48,"value":2446},{"type":42,"tag":1746,"props":7152,"children":7153},{"style":2808},[7154],{"type":48,"value":1236},{"type":42,"tag":1746,"props":7156,"children":7157},{"style":1784},[7158],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7160,"children":7161},{"style":1784},[7162],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7164,"children":7165},{"style":2262},[7166],{"type":48,"value":7167}," 80738",{"type":42,"tag":1746,"props":7169,"children":7170},{"style":1784},[7171],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7173,"children":7174},{"style":1784},[7175],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7177,"children":7178},{"style":2808},[7179],{"type":48,"value":786},{"type":42,"tag":1746,"props":7181,"children":7182},{"style":1784},[7183],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7185,"children":7186},{"style":1784},[7187],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7189,"children":7190},{"style":1784},[7191],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7193,"children":7194},{"style":1759},[7195],{"type":48,"value":6099},{"type":42,"tag":1746,"props":7197,"children":7198},{"style":1784},[7199],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7201,"children":7202},{"style":1784},[7203],{"type":48,"value":2898},{"type":42,"tag":1746,"props":7205,"children":7207},{"class":1748,"line":7206},105,[7208,7212,7216,7220,7224,7228,7232,7237,7241,7245,7249,7253,7257,7261,7266,7270,7274,7278,7282,7286,7290,7294,7298],{"type":42,"tag":1746,"props":7209,"children":7210},{"style":1784},[7211],{"type":48,"value":2801},{"type":42,"tag":1746,"props":7213,"children":7214},{"style":1784},[7215],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7217,"children":7218},{"style":2808},[7219],{"type":48,"value":1228},{"type":42,"tag":1746,"props":7221,"children":7222},{"style":1784},[7223],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7225,"children":7226},{"style":1784},[7227],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7229,"children":7230},{"style":1784},[7231],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7233,"children":7234},{"style":1759},[7235],{"type":48,"value":7236},"Lockheed",{"type":42,"tag":1746,"props":7238,"children":7239},{"style":1784},[7240],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7242,"children":7243},{"style":1784},[7244],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7246,"children":7247},{"style":1784},[7248],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7250,"children":7251},{"style":2808},[7252],{"type":48,"value":1236},{"type":42,"tag":1746,"props":7254,"children":7255},{"style":1784},[7256],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7258,"children":7259},{"style":1784},[7260],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7262,"children":7263},{"style":2262},[7264],{"type":48,"value":7265}," 71043",{"type":42,"tag":1746,"props":7267,"children":7268},{"style":1784},[7269],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7271,"children":7272},{"style":1784},[7273],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7275,"children":7276},{"style":2808},[7277],{"type":48,"value":786},{"type":42,"tag":1746,"props":7279,"children":7280},{"style":1784},[7281],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7283,"children":7284},{"style":1784},[7285],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7287,"children":7288},{"style":1784},[7289],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7291,"children":7292},{"style":1759},[7293],{"type":48,"value":6099},{"type":42,"tag":1746,"props":7295,"children":7296},{"style":1784},[7297],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7299,"children":7300},{"style":1784},[7301],{"type":48,"value":2898},{"type":42,"tag":1746,"props":7303,"children":7305},{"class":1748,"line":7304},106,[7306,7310,7314,7318,7322,7326,7330,7334,7338,7342,7346,7350,7354,7358,7363,7367,7371,7375,7379,7383,7387,7391,7395],{"type":42,"tag":1746,"props":7307,"children":7308},{"style":1784},[7309],{"type":48,"value":2801},{"type":42,"tag":1746,"props":7311,"children":7312},{"style":1784},[7313],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7315,"children":7316},{"style":2808},[7317],{"type":48,"value":1228},{"type":42,"tag":1746,"props":7319,"children":7320},{"style":1784},[7321],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7323,"children":7324},{"style":1784},[7325],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7327,"children":7328},{"style":1784},[7329],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7331,"children":7332},{"style":1759},[7333],{"type":48,"value":6515},{"type":42,"tag":1746,"props":7335,"children":7336},{"style":1784},[7337],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7339,"children":7340},{"style":1784},[7341],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7343,"children":7344},{"style":1784},[7345],{"type":48,"value":2841},{"type":42,"tag":1746,"props":7347,"children":7348},{"style":2808},[7349],{"type":48,"value":1236},{"type":42,"tag":1746,"props":7351,"children":7352},{"style":1784},[7353],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7355,"children":7356},{"style":1784},[7357],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7359,"children":7360},{"style":2262},[7361],{"type":48,"value":7362}," 69200",{"type":42,"tag":1746,"props":7364,"children":7365},{"style":1784},[7366],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7368,"children":7369},{"style":1784},[7370],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7372,"children":7373},{"style":2808},[7374],{"type":48,"value":786},{"type":42,"tag":1746,"props":7376,"children":7377},{"style":1784},[7378],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7380,"children":7381},{"style":1784},[7382],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7384,"children":7385},{"style":1784},[7386],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7388,"children":7389},{"style":1759},[7390],{"type":48,"value":6099},{"type":42,"tag":1746,"props":7392,"children":7393},{"style":1784},[7394],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7396,"children":7397},{"style":1784},[7398],{"type":48,"value":3195},{"type":42,"tag":1746,"props":7400,"children":7402},{"class":1748,"line":7401},107,[7403],{"type":42,"tag":1746,"props":7404,"children":7405},{"style":1784},[7406],{"type":48,"value":4027},{"type":42,"tag":1746,"props":7408,"children":7410},{"class":1748,"line":7409},108,[7411,7415,7419,7423,7427],{"type":42,"tag":1746,"props":7412,"children":7413},{"style":1784},[7414],{"type":48,"value":2446},{"type":42,"tag":1746,"props":7416,"children":7417},{"style":2262},[7418],{"type":48,"value":4901},{"type":42,"tag":1746,"props":7420,"children":7421},{"style":1784},[7422],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7424,"children":7425},{"style":1784},[7426],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7428,"children":7429},{"style":1784},[7430],{"type":48,"value":2233},{"type":42,"tag":1746,"props":7432,"children":7434},{"class":1748,"line":7433},109,[7435,7439,7443,7447,7451,7455,7459,7463,7467,7471,7475,7479,7483,7487,7492,7496,7500,7504,7508,7512,7516,7520,7524],{"type":42,"tag":1746,"props":7436,"children":7437},{"style":1784},[7438],{"type":48,"value":2801},{"type":42,"tag":1746,"props":7440,"children":7441},{"style":1784},[7442],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7444,"children":7445},{"style":2808},[7446],{"type":48,"value":1228},{"type":42,"tag":1746,"props":7448,"children":7449},{"style":1784},[7450],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7452,"children":7453},{"style":1784},[7454],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7456,"children":7457},{"style":1784},[7458],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7460,"children":7461},{"style":1759},[7462],{"type":48,"value":2164},{"type":42,"tag":1746,"props":7464,"children":7465},{"style":1784},[7466],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7468,"children":7469},{"style":1784},[7470],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7472,"children":7473},{"style":1784},[7474],{"type":48,"value":1964},{"type":42,"tag":1746,"props":7476,"children":7477},{"style":2808},[7478],{"type":48,"value":1236},{"type":42,"tag":1746,"props":7480,"children":7481},{"style":1784},[7482],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7484,"children":7485},{"style":1784},[7486],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7488,"children":7489},{"style":2262},[7490],{"type":48,"value":7491}," 15.0",{"type":42,"tag":1746,"props":7493,"children":7494},{"style":1784},[7495],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7497,"children":7498},{"style":1784},[7499],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7501,"children":7502},{"style":2808},[7503],{"type":48,"value":786},{"type":42,"tag":1746,"props":7505,"children":7506},{"style":1784},[7507],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7509,"children":7510},{"style":1784},[7511],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7513,"children":7514},{"style":1784},[7515],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7517,"children":7518},{"style":1759},[7519],{"type":48,"value":6099},{"type":42,"tag":1746,"props":7521,"children":7522},{"style":1784},[7523],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7525,"children":7526},{"style":1784},[7527],{"type":48,"value":2898},{"type":42,"tag":1746,"props":7529,"children":7531},{"class":1748,"line":7530},110,[7532,7536,7540,7544,7548,7552,7556,7561,7565,7569,7573,7577,7581,7585,7590,7594,7598,7602,7606,7610,7614,7618,7622],{"type":42,"tag":1746,"props":7533,"children":7534},{"style":1784},[7535],{"type":48,"value":2801},{"type":42,"tag":1746,"props":7537,"children":7538},{"style":1784},[7539],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7541,"children":7542},{"style":2808},[7543],{"type":48,"value":1228},{"type":42,"tag":1746,"props":7545,"children":7546},{"style":1784},[7547],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7549,"children":7550},{"style":1784},[7551],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7553,"children":7554},{"style":1784},[7555],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7557,"children":7558},{"style":1759},[7559],{"type":48,"value":7560},"BAE",{"type":42,"tag":1746,"props":7562,"children":7563},{"style":1784},[7564],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7566,"children":7567},{"style":1784},[7568],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7570,"children":7571},{"style":1784},[7572],{"type":48,"value":1964},{"type":42,"tag":1746,"props":7574,"children":7575},{"style":2808},[7576],{"type":48,"value":1236},{"type":42,"tag":1746,"props":7578,"children":7579},{"style":1784},[7580],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7582,"children":7583},{"style":1784},[7584],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7586,"children":7587},{"style":2262},[7588],{"type":48,"value":7589}," 11.9",{"type":42,"tag":1746,"props":7591,"children":7592},{"style":1784},[7593],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7595,"children":7596},{"style":1784},[7597],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7599,"children":7600},{"style":2808},[7601],{"type":48,"value":786},{"type":42,"tag":1746,"props":7603,"children":7604},{"style":1784},[7605],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7607,"children":7608},{"style":1784},[7609],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7611,"children":7612},{"style":1784},[7613],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7615,"children":7616},{"style":1759},[7617],{"type":48,"value":6099},{"type":42,"tag":1746,"props":7619,"children":7620},{"style":1784},[7621],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7623,"children":7624},{"style":1784},[7625],{"type":48,"value":2898},{"type":42,"tag":1746,"props":7627,"children":7629},{"class":1748,"line":7628},111,[7630,7634,7638,7642,7646,7650,7654,7658,7662,7666,7670,7674,7678,7682,7687,7691,7695,7699,7703,7707,7711,7715,7719],{"type":42,"tag":1746,"props":7631,"children":7632},{"style":1784},[7633],{"type":48,"value":2801},{"type":42,"tag":1746,"props":7635,"children":7636},{"style":1784},[7637],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7639,"children":7640},{"style":2808},[7641],{"type":48,"value":1228},{"type":42,"tag":1746,"props":7643,"children":7644},{"style":1784},[7645],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7647,"children":7648},{"style":1784},[7649],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7651,"children":7652},{"style":1784},[7653],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7655,"children":7656},{"style":1759},[7657],{"type":48,"value":6515},{"type":42,"tag":1746,"props":7659,"children":7660},{"style":1784},[7661],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7663,"children":7664},{"style":1784},[7665],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7667,"children":7668},{"style":1784},[7669],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7671,"children":7672},{"style":2808},[7673],{"type":48,"value":1236},{"type":42,"tag":1746,"props":7675,"children":7676},{"style":1784},[7677],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7679,"children":7680},{"style":1784},[7681],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7683,"children":7684},{"style":2262},[7685],{"type":48,"value":7686}," 10.7",{"type":42,"tag":1746,"props":7688,"children":7689},{"style":1784},[7690],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7692,"children":7693},{"style":1784},[7694],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7696,"children":7697},{"style":2808},[7698],{"type":48,"value":786},{"type":42,"tag":1746,"props":7700,"children":7701},{"style":1784},[7702],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7704,"children":7705},{"style":1784},[7706],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7708,"children":7709},{"style":1784},[7710],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7712,"children":7713},{"style":1759},[7714],{"type":48,"value":6099},{"type":42,"tag":1746,"props":7716,"children":7717},{"style":1784},[7718],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7720,"children":7721},{"style":1784},[7722],{"type":48,"value":3195},{"type":42,"tag":1746,"props":7724,"children":7726},{"class":1748,"line":7725},112,[7727],{"type":42,"tag":1746,"props":7728,"children":7729},{"style":1784},[7730],{"type":48,"value":4027},{"type":42,"tag":1746,"props":7732,"children":7734},{"class":1748,"line":7733},113,[7735,7739,7743,7747,7751,7755,7759,7763,7767],{"type":42,"tag":1746,"props":7736,"children":7737},{"style":1784},[7738],{"type":48,"value":2446},{"type":42,"tag":1746,"props":7740,"children":7741},{"style":2262},[7742],{"type":48,"value":883},{"type":42,"tag":1746,"props":7744,"children":7745},{"style":1784},[7746],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7748,"children":7749},{"style":1784},[7750],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7752,"children":7753},{"style":1784},[7754],{"type":48,"value":2137},{"type":42,"tag":1746,"props":7756,"children":7757},{"style":1784},[7758],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7760,"children":7761},{"style":1759},[7762],{"type":48,"value":7042},{"type":42,"tag":1746,"props":7764,"children":7765},{"style":1784},[7766],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7768,"children":7769},{"style":1784},[7770],{"type":48,"value":2658},{"type":42,"tag":1746,"props":7772,"children":7774},{"class":1748,"line":7773},114,[7775],{"type":42,"tag":1746,"props":7776,"children":7777},{"style":1784},[7778],{"type":48,"value":2667},{"type":42,"tag":1746,"props":7780,"children":7782},{"class":1748,"line":7781},115,[7783,7787,7791,7795,7799],{"type":42,"tag":1746,"props":7784,"children":7785},{"style":1784},[7786],{"type":48,"value":2421},{"type":42,"tag":1746,"props":7788,"children":7789},{"style":1753},[7790],{"type":48,"value":1261},{"type":42,"tag":1746,"props":7792,"children":7793},{"style":1784},[7794],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7796,"children":7797},{"style":1784},[7798],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7800,"children":7801},{"style":1784},[7802],{"type":48,"value":2412},{"type":42,"tag":1746,"props":7804,"children":7806},{"class":1748,"line":7805},116,[7807,7811,7815,7819,7823,7827,7831,7835,7839,7843,7847,7851,7855,7859,7863,7868,7872,7876,7880,7884,7888,7893,7897,7901,7905],{"type":42,"tag":1746,"props":7808,"children":7809},{"style":1784},[7810],{"type":48,"value":2446},{"type":42,"tag":1746,"props":7812,"children":7813},{"style":2262},[7814],{"type":48,"value":1269},{"type":42,"tag":1746,"props":7816,"children":7817},{"style":1784},[7818],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7820,"children":7821},{"style":1784},[7822],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7824,"children":7825},{"style":1784},[7826],{"type":48,"value":3380},{"type":42,"tag":1746,"props":7828,"children":7829},{"style":1784},[7830],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7832,"children":7833},{"style":2808},[7834],{"type":48,"value":1228},{"type":42,"tag":1746,"props":7836,"children":7837},{"style":1784},[7838],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7840,"children":7841},{"style":1784},[7842],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7844,"children":7845},{"style":1784},[7846],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7848,"children":7849},{"style":1759},[7850],{"type":48,"value":2146},{"type":42,"tag":1746,"props":7852,"children":7853},{"style":1784},[7854],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7856,"children":7857},{"style":1784},[7858],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7860,"children":7861},{"style":1784},[7862],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7864,"children":7865},{"style":2808},[7866],{"type":48,"value":7867},"x",{"type":42,"tag":1746,"props":7869,"children":7870},{"style":1784},[7871],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7873,"children":7874},{"style":1784},[7875],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7877,"children":7878},{"style":2262},[7879],{"type":48,"value":6965},{"type":42,"tag":1746,"props":7881,"children":7882},{"style":1784},[7883],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7885,"children":7886},{"style":1784},[7887],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7889,"children":7890},{"style":2808},[7891],{"type":48,"value":7892},"y",{"type":42,"tag":1746,"props":7894,"children":7895},{"style":1784},[7896],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7898,"children":7899},{"style":1784},[7900],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7902,"children":7903},{"style":2262},[7904],{"type":48,"value":4946},{"type":42,"tag":1746,"props":7906,"children":7907},{"style":1784},[7908],{"type":48,"value":4213},{"type":42,"tag":1746,"props":7910,"children":7912},{"class":1748,"line":7911},117,[7913,7917,7921,7925,7929,7934,7938,7942,7946,7950,7954,7958,7962,7966,7970,7974,7978,7982,7986,7990,7994,7998,8002,8006,8011],{"type":42,"tag":1746,"props":7914,"children":7915},{"style":1784},[7916],{"type":48,"value":2446},{"type":42,"tag":1746,"props":7918,"children":7919},{"style":2262},[7920],{"type":48,"value":1276},{"type":42,"tag":1746,"props":7922,"children":7923},{"style":1784},[7924],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7926,"children":7927},{"style":1784},[7928],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7930,"children":7931},{"style":1784},[7932],{"type":48,"value":7933},"         [{",{"type":42,"tag":1746,"props":7935,"children":7936},{"style":1784},[7937],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7939,"children":7940},{"style":2808},[7941],{"type":48,"value":1228},{"type":42,"tag":1746,"props":7943,"children":7944},{"style":1784},[7945],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7947,"children":7948},{"style":1784},[7949],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7951,"children":7952},{"style":1784},[7953],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7955,"children":7956},{"style":1759},[7957],{"type":48,"value":2146},{"type":42,"tag":1746,"props":7959,"children":7960},{"style":1784},[7961],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7963,"children":7964},{"style":1784},[7965],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7967,"children":7968},{"style":1784},[7969],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7971,"children":7972},{"style":2808},[7973],{"type":48,"value":7867},{"type":42,"tag":1746,"props":7975,"children":7976},{"style":1784},[7977],{"type":48,"value":1975},{"type":42,"tag":1746,"props":7979,"children":7980},{"style":1784},[7981],{"type":48,"value":1980},{"type":42,"tag":1746,"props":7983,"children":7984},{"style":2262},[7985],{"type":48,"value":6642},{"type":42,"tag":1746,"props":7987,"children":7988},{"style":1784},[7989],{"type":48,"value":2155},{"type":42,"tag":1746,"props":7991,"children":7992},{"style":1784},[7993],{"type":48,"value":1985},{"type":42,"tag":1746,"props":7995,"children":7996},{"style":2808},[7997],{"type":48,"value":7892},{"type":42,"tag":1746,"props":7999,"children":8000},{"style":1784},[8001],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8003,"children":8004},{"style":1784},[8005],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8007,"children":8008},{"style":2262},[8009],{"type":48,"value":8010}," -26.57",{"type":42,"tag":1746,"props":8012,"children":8013},{"style":1784},[8014],{"type":48,"value":4213},{"type":42,"tag":1746,"props":8016,"children":8018},{"class":1748,"line":8017},118,[8019,8023,8027,8031,8035,8039,8043,8047,8051],{"type":42,"tag":1746,"props":8020,"children":8021},{"style":1784},[8022],{"type":48,"value":2446},{"type":42,"tag":1746,"props":8024,"children":8025},{"style":2262},[8026],{"type":48,"value":883},{"type":42,"tag":1746,"props":8028,"children":8029},{"style":1784},[8030],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8032,"children":8033},{"style":1784},[8034],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8036,"children":8037},{"style":1784},[8038],{"type":48,"value":2137},{"type":42,"tag":1746,"props":8040,"children":8041},{"style":1784},[8042],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8044,"children":8045},{"style":1759},[8046],{"type":48,"value":7042},{"type":42,"tag":1746,"props":8048,"children":8049},{"style":1784},[8050],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8052,"children":8053},{"style":1784},[8054],{"type":48,"value":2658},{"type":42,"tag":1746,"props":8056,"children":8058},{"class":1748,"line":8057},119,[8059],{"type":42,"tag":1746,"props":8060,"children":8061},{"style":1784},[8062],{"type":48,"value":2667},{"type":42,"tag":1746,"props":8064,"children":8066},{"class":1748,"line":8065},120,[8067,8071,8075,8079,8083],{"type":42,"tag":1746,"props":8068,"children":8069},{"style":1784},[8070],{"type":48,"value":2421},{"type":42,"tag":1746,"props":8072,"children":8073},{"style":1753},[8074],{"type":48,"value":1367},{"type":42,"tag":1746,"props":8076,"children":8077},{"style":1784},[8078],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8080,"children":8081},{"style":1784},[8082],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8084,"children":8085},{"style":1784},[8086],{"type":48,"value":2412},{"type":42,"tag":1746,"props":8088,"children":8090},{"class":1748,"line":8089},121,[8091,8095,8099,8103,8107],{"type":42,"tag":1746,"props":8092,"children":8093},{"style":1784},[8094],{"type":48,"value":2446},{"type":42,"tag":1746,"props":8096,"children":8097},{"style":2262},[8098],{"type":48,"value":1374},{"type":42,"tag":1746,"props":8100,"children":8101},{"style":1784},[8102],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8104,"children":8105},{"style":1784},[8106],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8108,"children":8109},{"style":1784},[8110],{"type":48,"value":2233},{"type":42,"tag":1746,"props":8112,"children":8114},{"class":1748,"line":8113},122,[8115,8119,8124,8128],{"type":42,"tag":1746,"props":8116,"children":8117},{"style":1784},[8118],{"type":48,"value":3270},{"type":42,"tag":1746,"props":8120,"children":8121},{"style":1759},[8122],{"type":48,"value":8123},"Factor 1: Scale (20%)",{"type":42,"tag":1746,"props":8125,"children":8126},{"style":1784},[8127],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8129,"children":8130},{"style":1784},[8131],{"type":48,"value":253},{"type":42,"tag":1746,"props":8133,"children":8135},{"class":1748,"line":8134},123,[8136,8140,8145,8149],{"type":42,"tag":1746,"props":8137,"children":8138},{"style":1784},[8139],{"type":48,"value":3270},{"type":42,"tag":1746,"props":8141,"children":8142},{"style":1759},[8143],{"type":48,"value":8144},"Revenue (USD Billion)",{"type":42,"tag":1746,"props":8146,"children":8147},{"style":1784},[8148],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8150,"children":8151},{"style":1784},[8152],{"type":48,"value":253},{"type":42,"tag":1746,"props":8154,"children":8156},{"class":1748,"line":8155},124,[8157,8161,8166,8170],{"type":42,"tag":1746,"props":8158,"children":8159},{"style":1784},[8160],{"type":48,"value":3270},{"type":42,"tag":1746,"props":8162,"children":8163},{"style":1759},[8164],{"type":48,"value":8165},"Factor 2: Business Profile (20%)",{"type":42,"tag":1746,"props":8167,"children":8168},{"style":1784},[8169],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8171,"children":8172},{"style":1784},[8173],{"type":48,"value":253},{"type":42,"tag":1746,"props":8175,"children":8177},{"class":1748,"line":8176},125,[8178,8182,8186],{"type":42,"tag":1746,"props":8179,"children":8180},{"style":1784},[8181],{"type":48,"value":3270},{"type":42,"tag":1746,"props":8183,"children":8184},{"style":1759},[8185],{"type":48,"value":2198},{"type":42,"tag":1746,"props":8187,"children":8188},{"style":1784},[8189],{"type":48,"value":8190},"\"\n",{"type":42,"tag":1746,"props":8192,"children":8194},{"class":1748,"line":8193},126,[8195],{"type":42,"tag":1746,"props":8196,"children":8197},{"style":1784},[8198],{"type":48,"value":4027},{"type":42,"tag":1746,"props":8200,"children":8202},{"class":1748,"line":8201},127,[8203,8207,8211,8215,8219,8224,8229,8234],{"type":42,"tag":1746,"props":8204,"children":8205},{"style":1784},[8206],{"type":48,"value":2446},{"type":42,"tag":1746,"props":8208,"children":8209},{"style":2262},[8210],{"type":48,"value":1382},{"type":42,"tag":1746,"props":8212,"children":8213},{"style":1784},[8214],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8216,"children":8217},{"style":1784},[8218],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8220,"children":8221},{"style":1784},[8222],{"type":48,"value":8223}," [true,",{"type":42,"tag":1746,"props":8225,"children":8226},{"style":1784},[8227],{"type":48,"value":8228}," false,",{"type":42,"tag":1746,"props":8230,"children":8231},{"style":1784},[8232],{"type":48,"value":8233}," true,",{"type":42,"tag":1746,"props":8235,"children":8236},{"style":1784},[8237],{"type":48,"value":8238}," false],\n",{"type":42,"tag":1746,"props":8240,"children":8242},{"class":1748,"line":8241},128,[8243,8247,8251,8255,8259,8263,8267,8272,8276,8280,8284,8289,8293,8297,8301,8306,8310],{"type":42,"tag":1746,"props":8244,"children":8245},{"style":1784},[8246],{"type":48,"value":2446},{"type":42,"tag":1746,"props":8248,"children":8249},{"style":2262},[8250],{"type":48,"value":1390},{"type":42,"tag":1746,"props":8252,"children":8253},{"style":1784},[8254],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8256,"children":8257},{"style":1784},[8258],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8260,"children":8261},{"style":1784},[8262],{"type":48,"value":2137},{"type":42,"tag":1746,"props":8264,"children":8265},{"style":1784},[8266],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8268,"children":8269},{"style":1759},[8270],{"type":48,"value":8271},"\u003CTARGET>",{"type":42,"tag":1746,"props":8273,"children":8274},{"style":1784},[8275],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8277,"children":8278},{"style":1784},[8279],{"type":48,"value":2155},{"type":42,"tag":1746,"props":8281,"children":8282},{"style":1784},[8283],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8285,"children":8286},{"style":1759},[8287],{"type":48,"value":8288},"\u003CPEER_1>",{"type":42,"tag":1746,"props":8290,"children":8291},{"style":1784},[8292],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8294,"children":8295},{"style":1784},[8296],{"type":48,"value":2155},{"type":42,"tag":1746,"props":8298,"children":8299},{"style":1784},[8300],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8302,"children":8303},{"style":1759},[8304],{"type":48,"value":8305},"\u003CPEER_2>",{"type":42,"tag":1746,"props":8307,"children":8308},{"style":1784},[8309],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8311,"children":8312},{"style":1784},[8313],{"type":48,"value":2207},{"type":42,"tag":1746,"props":8315,"children":8317},{"class":1748,"line":8316},129,[8318,8322,8326,8330,8334],{"type":42,"tag":1746,"props":8319,"children":8320},{"style":1784},[8321],{"type":48,"value":2446},{"type":42,"tag":1746,"props":8323,"children":8324},{"style":2262},[8325],{"type":48,"value":1398},{"type":42,"tag":1746,"props":8327,"children":8328},{"style":1784},[8329],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8331,"children":8332},{"style":1784},[8333],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8335,"children":8336},{"style":1784},[8337],{"type":48,"value":2233},{"type":42,"tag":1746,"props":8339,"children":8341},{"class":1748,"line":8340},130,[8342,8347,8352,8356],{"type":42,"tag":1746,"props":8343,"children":8344},{"style":1784},[8345],{"type":48,"value":8346},"        [[],",{"type":42,"tag":1746,"props":8348,"children":8349},{"style":1784},[8350],{"type":48,"value":8351}," [],",{"type":42,"tag":1746,"props":8353,"children":8354},{"style":1784},[8355],{"type":48,"value":8351},{"type":42,"tag":1746,"props":8357,"children":8358},{"style":1784},[8359],{"type":48,"value":8360}," []],\n",{"type":42,"tag":1746,"props":8362,"children":8364},{"class":1748,"line":8363},131,[8365,8369,8373,8377,8382,8386,8390,8394,8399,8403,8408,8412,8416,8421,8425,8429,8433,8438,8442,8446,8450,8454,8459,8463,8467,8471,8476,8480],{"type":42,"tag":1746,"props":8366,"children":8367},{"style":1784},[8368],{"type":48,"value":8346},{"type":42,"tag":1746,"props":8370,"children":8371},{"style":1784},[8372],{"type":48,"value":2137},{"type":42,"tag":1746,"props":8374,"children":8375},{"style":1784},[8376],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8378,"children":8379},{"style":1759},[8380],{"type":48,"value":8381},"\u003Ctarget_rev>",{"type":42,"tag":1746,"props":8383,"children":8384},{"style":1784},[8385],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8387,"children":8388},{"style":1784},[8389],{"type":48,"value":2155},{"type":42,"tag":1746,"props":8391,"children":8392},{"style":1784},[8393],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8395,"children":8396},{"style":1759},[8397],{"type":48,"value":8398},"\u003Ctarget_score>",{"type":42,"tag":1746,"props":8400,"children":8401},{"style":1784},[8402],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8404,"children":8405},{"style":1784},[8406],{"type":48,"value":8407},"],",{"type":42,"tag":1746,"props":8409,"children":8410},{"style":1784},[8411],{"type":48,"value":2137},{"type":42,"tag":1746,"props":8413,"children":8414},{"style":1784},[8415],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8417,"children":8418},{"style":1759},[8419],{"type":48,"value":8420},"\u003Cpeer1_rev>",{"type":42,"tag":1746,"props":8422,"children":8423},{"style":1784},[8424],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8426,"children":8427},{"style":1784},[8428],{"type":48,"value":2155},{"type":42,"tag":1746,"props":8430,"children":8431},{"style":1784},[8432],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8434,"children":8435},{"style":1759},[8436],{"type":48,"value":8437},"\u003Cpeer1_score>",{"type":42,"tag":1746,"props":8439,"children":8440},{"style":1784},[8441],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8443,"children":8444},{"style":1784},[8445],{"type":48,"value":8407},{"type":42,"tag":1746,"props":8447,"children":8448},{"style":1784},[8449],{"type":48,"value":2137},{"type":42,"tag":1746,"props":8451,"children":8452},{"style":1784},[8453],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8455,"children":8456},{"style":1759},[8457],{"type":48,"value":8458},"\u003Cpeer2_rev>",{"type":42,"tag":1746,"props":8460,"children":8461},{"style":1784},[8462],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8464,"children":8465},{"style":1784},[8466],{"type":48,"value":2155},{"type":42,"tag":1746,"props":8468,"children":8469},{"style":1784},[8470],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8472,"children":8473},{"style":1759},[8474],{"type":48,"value":8475},"\u003Cpeer2_score>",{"type":42,"tag":1746,"props":8477,"children":8478},{"style":1784},[8479],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8481,"children":8482},{"style":1784},[8483],{"type":48,"value":8484},"]]\n",{"type":42,"tag":1746,"props":8486,"children":8488},{"class":1748,"line":8487},132,[8489],{"type":42,"tag":1746,"props":8490,"children":8491},{"style":1784},[8492],{"type":48,"value":3204},{"type":42,"tag":1746,"props":8494,"children":8496},{"class":1748,"line":8495},133,[8497],{"type":42,"tag":1746,"props":8498,"children":8499},{"style":1784},[8500],{"type":48,"value":2667},{"type":42,"tag":1746,"props":8502,"children":8504},{"class":1748,"line":8503},134,[8505,8509,8513,8517,8521],{"type":42,"tag":1746,"props":8506,"children":8507},{"style":1784},[8508],{"type":48,"value":2421},{"type":42,"tag":1746,"props":8510,"children":8511},{"style":1753},[8512],{"type":48,"value":1664},{"type":42,"tag":1746,"props":8514,"children":8515},{"style":1784},[8516],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8518,"children":8519},{"style":1784},[8520],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8522,"children":8523},{"style":1784},[8524],{"type":48,"value":2412},{"type":42,"tag":1746,"props":8526,"children":8528},{"class":1748,"line":8527},135,[8529,8533,8537,8541,8545],{"type":42,"tag":1746,"props":8530,"children":8531},{"style":1784},[8532],{"type":48,"value":2446},{"type":42,"tag":1746,"props":8534,"children":8535},{"style":2262},[8536],{"type":48,"value":468},{"type":42,"tag":1746,"props":8538,"children":8539},{"style":1784},[8540],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8542,"children":8543},{"style":1784},[8544],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8546,"children":8547},{"style":1784},[8548],{"type":48,"value":2233},{"type":42,"tag":1746,"props":8550,"children":8552},{"class":1748,"line":8551},136,[8553,8557,8561,8565,8569,8573,8577,8581,8585,8589,8593,8598,8602,8606,8610,8615,8619,8623,8627,8632,8636,8640,8644,8649,8653],{"type":42,"tag":1746,"props":8554,"children":8555},{"style":1784},[8556],{"type":48,"value":2801},{"type":42,"tag":1746,"props":8558,"children":8559},{"style":1784},[8560],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8562,"children":8563},{"style":2808},[8564],{"type":48,"value":1228},{"type":42,"tag":1746,"props":8566,"children":8567},{"style":1784},[8568],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8570,"children":8571},{"style":1784},[8572],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8574,"children":8575},{"style":1784},[8576],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8578,"children":8579},{"style":1759},[8580],{"type":48,"value":2146},{"type":42,"tag":1746,"props":8582,"children":8583},{"style":1784},[8584],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8586,"children":8587},{"style":1784},[8588],{"type":48,"value":2155},{"type":42,"tag":1746,"props":8590,"children":8591},{"style":1784},[8592],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8594,"children":8595},{"style":2808},[8596],{"type":48,"value":8597},"cis",{"type":42,"tag":1746,"props":8599,"children":8600},{"style":1784},[8601],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8603,"children":8604},{"style":1784},[8605],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8607,"children":8608},{"style":1784},[8609],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8611,"children":8612},{"style":1759},[8613],{"type":48,"value":8614},"CIS-4",{"type":42,"tag":1746,"props":8616,"children":8617},{"style":1784},[8618],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8620,"children":8621},{"style":1784},[8622],{"type":48,"value":2155},{"type":42,"tag":1746,"props":8624,"children":8625},{"style":1784},[8626],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8628,"children":8629},{"style":2808},[8630],{"type":48,"value":8631},"environmental",{"type":42,"tag":1746,"props":8633,"children":8634},{"style":1784},[8635],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8637,"children":8638},{"style":1784},[8639],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8641,"children":8642},{"style":1784},[8643],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8645,"children":8646},{"style":1759},[8647],{"type":48,"value":8648},"E-3",{"type":42,"tag":1746,"props":8650,"children":8651},{"style":1784},[8652],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8654,"children":8655},{"style":1784},[8656],{"type":48,"value":253},{"type":42,"tag":1746,"props":8658,"children":8660},{"class":1748,"line":8659},137,[8661,8665,8670,8674,8678,8682,8687,8691,8695,8699,8704,8708,8712,8716,8721,8725],{"type":42,"tag":1746,"props":8662,"children":8663},{"style":1784},[8664],{"type":48,"value":3955},{"type":42,"tag":1746,"props":8666,"children":8667},{"style":2808},[8668],{"type":48,"value":8669},"social",{"type":42,"tag":1746,"props":8671,"children":8672},{"style":1784},[8673],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8675,"children":8676},{"style":1784},[8677],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8679,"children":8680},{"style":1784},[8681],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8683,"children":8684},{"style":1759},[8685],{"type":48,"value":8686},"S-4",{"type":42,"tag":1746,"props":8688,"children":8689},{"style":1784},[8690],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8692,"children":8693},{"style":1784},[8694],{"type":48,"value":2155},{"type":42,"tag":1746,"props":8696,"children":8697},{"style":1784},[8698],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8700,"children":8701},{"style":2808},[8702],{"type":48,"value":8703},"governance",{"type":42,"tag":1746,"props":8705,"children":8706},{"style":1784},[8707],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8709,"children":8710},{"style":1784},[8711],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8713,"children":8714},{"style":1784},[8715],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8717,"children":8718},{"style":1759},[8719],{"type":48,"value":8720},"G-4",{"type":42,"tag":1746,"props":8722,"children":8723},{"style":1784},[8724],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8726,"children":8727},{"style":1784},[8728],{"type":48,"value":3195},{"type":42,"tag":1746,"props":8730,"children":8732},{"class":1748,"line":8731},138,[8733],{"type":42,"tag":1746,"props":8734,"children":8735},{"style":1784},[8736],{"type":48,"value":4027},{"type":42,"tag":1746,"props":8738,"children":8740},{"class":1748,"line":8739},139,[8741,8745,8749,8753,8757,8761,8765,8769,8773,8777,8781,8785,8789],{"type":42,"tag":1746,"props":8742,"children":8743},{"style":1784},[8744],{"type":48,"value":2446},{"type":42,"tag":1746,"props":8746,"children":8747},{"style":2262},[8748],{"type":48,"value":883},{"type":42,"tag":1746,"props":8750,"children":8751},{"style":1784},[8752],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8754,"children":8755},{"style":1784},[8756],{"type":48,"value":1980},{"type":42,"tag":1746,"props":8758,"children":8759},{"style":1784},[8760],{"type":48,"value":2137},{"type":42,"tag":1746,"props":8762,"children":8763},{"style":1784},[8764],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8766,"children":8767},{"style":1759},[8768],{"type":48,"value":2198},{"type":42,"tag":1746,"props":8770,"children":8771},{"style":1784},[8772],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8774,"children":8775},{"style":1784},[8776],{"type":48,"value":2155},{"type":42,"tag":1746,"props":8778,"children":8779},{"style":1784},[8780],{"type":48,"value":1985},{"type":42,"tag":1746,"props":8782,"children":8783},{"style":1759},[8784],{"type":48,"value":2198},{"type":42,"tag":1746,"props":8786,"children":8787},{"style":1784},[8788],{"type":48,"value":1975},{"type":42,"tag":1746,"props":8790,"children":8791},{"style":1784},[8792],{"type":48,"value":2658},{"type":42,"tag":1746,"props":8794,"children":8796},{"class":1748,"line":8795},140,[8797],{"type":42,"tag":1746,"props":8798,"children":8799},{"style":1784},[8800],{"type":48,"value":8801},"    }\n",{"type":42,"tag":1746,"props":8803,"children":8805},{"class":1748,"line":8804},141,[8806],{"type":42,"tag":1746,"props":8807,"children":8808},{"style":1784},[8809],{"type":48,"value":8810},"  }\n",{"type":42,"tag":1746,"props":8812,"children":8814},{"class":1748,"line":8813},142,[8815],{"type":42,"tag":1746,"props":8816,"children":8817},{"style":1784},[8818],{"type":48,"value":3195},{"type":42,"tag":421,"props":8820,"children":8821},{},[],{"type":42,"tag":78,"props":8823,"children":8825},{"id":8824},"report-structure",[8826],{"type":48,"value":8827},"Report structure",{"type":42,"tag":51,"props":8829,"children":8830},{},[8831],{"type":48,"value":8832},"The Python builder emits these 26 sections as HTML, in this order:",{"type":42,"tag":1582,"props":8834,"children":8835},{},[8836,8841,8846,8851,8856,8861,8866,8871,8876,8881,8886,8891,8896,8901,8906,8911,8916,8921,8926,8931,8936,8941,8946,8951,8963,8968],{"type":42,"tag":101,"props":8837,"children":8838},{},[8839],{"type":48,"value":8840},"Cover",{"type":42,"tag":101,"props":8842,"children":8843},{},[8844],{"type":48,"value":8845},"Agenda",{"type":42,"tag":101,"props":8847,"children":8848},{},[8849],{"type":48,"value":8850},"Part 1 divider",{"type":42,"tag":101,"props":8852,"children":8853},{},[8854],{"type":48,"value":8855},"Sector Overview (3-column chips)",{"type":42,"tag":101,"props":8857,"children":8858},{},[8859],{"type":48,"value":8860},"Moody's View (outlook text + positioning + outlook pie)",{"type":42,"tag":101,"props":8862,"children":8863},{},[8864],{"type":48,"value":8865},"Global Macro Outlook (GDP table + takeaways)",{"type":42,"tag":101,"props":8867,"children":8868},{},[8869],{"type":48,"value":8870},"Rating Actions YTD (table)",{"type":42,"tag":101,"props":8872,"children":8873},{},[8874],{"type":48,"value":8875},"Part 2 divider",{"type":42,"tag":101,"props":8877,"children":8878},{},[8879],{"type":48,"value":8880},"Financial Analysis (bullets + rating history line chart + rating rationale)",{"type":42,"tag":101,"props":8882,"children":8883},{},[8884],{"type":48,"value":8885},"Revenue Distribution (two pie charts + commentary)",{"type":42,"tag":101,"props":8887,"children":8888},{},[8889],{"type":48,"value":8890},"SWOT (2×2)",{"type":42,"tag":101,"props":8892,"children":8893},{},[8894],{"type":48,"value":8895},"Key Financial Metrics (four bar charts in 2×2 grid)",{"type":42,"tag":101,"props":8897,"children":8898},{},[8899],{"type":48,"value":8900},"Strategic Updates (2 columns)",{"type":42,"tag":101,"props":8902,"children":8903},{},[8904],{"type":48,"value":8905},"News, M&A & Leadership",{"type":42,"tag":101,"props":8907,"children":8908},{},[8909],{"type":48,"value":8910},"External Trends, Pressures & Risks",{"type":42,"tag":101,"props":8912,"children":8913},{},[8914],{"type":48,"value":8915},"Part 3 divider",{"type":42,"tag":101,"props":8917,"children":8918},{},[8919],{"type":48,"value":8920},"Peer Comparison Summary (table + commentary)",{"type":42,"tag":101,"props":8922,"children":8923},{},[8924],{"type":48,"value":8925},"Detailed Peer Comparison (wide financial table)",{"type":42,"tag":101,"props":8927,"children":8928},{},[8929],{"type":48,"value":8930},"Peer Comparison — Debt (two horizontal bar charts)",{"type":42,"tag":101,"props":8932,"children":8933},{},[8934],{"type":48,"value":8935},"Peer Comparison — Profitability (two horizontal bar charts)",{"type":42,"tag":101,"props":8937,"children":8938},{},[8939],{"type":48,"value":8940},"Peer Scatter Plots (two scatter charts)",{"type":42,"tag":101,"props":8942,"children":8943},{},[8944],{"type":48,"value":8945},"Scorecard Comparison (multi-column factor table)",{"type":42,"tag":101,"props":8947,"children":8948},{},[8949],{"type":48,"value":8950},"ESG Analysis (table + commentary)",{"type":42,"tag":101,"props":8952,"children":8953},{},[8954,8956,8961],{"type":48,"value":8955},"Citations (appendix — canonical numbered ",{"type":42,"tag":1746,"props":8957,"children":8958},{},[8959],{"type":48,"value":8960},"n",{"type":48,"value":8962}," references with hyperlinked titles)",{"type":42,"tag":101,"props":8964,"children":8965},{},[8966],{"type":48,"value":8967},"Thank You",{"type":42,"tag":101,"props":8969,"children":8970},{},[8971],{"type":48,"value":8972},"Disclaimer",{"type":42,"tag":51,"props":8974,"children":8975},{},[8976,8978,8984,8985,8991,8992,8998,8999,9005,9006,9012,9013,9019,9020,9026,9027,9033,9034,9040],{"type":48,"value":8977},"The builder's data-visualization palette (Moody's official, priority order):\n",{"type":42,"tag":57,"props":8979,"children":8981},{"className":8980},[],[8982],{"type":48,"value":8983},"#1 BRIGHT_BLUE=#005eff",{"type":48,"value":238},{"type":42,"tag":57,"props":8986,"children":8988},{"className":8987},[],[8989],{"type":48,"value":8990},"#2 TEAL=#5eb6bc",{"type":48,"value":238},{"type":42,"tag":57,"props":8993,"children":8995},{"className":8994},[],[8996],{"type":48,"value":8997},"#3 GOLD=#c7ab21",{"type":48,"value":238},{"type":42,"tag":57,"props":9000,"children":9002},{"className":9001},[],[9003],{"type":48,"value":9004},"#4 MID_BLUE=#5c068c",{"type":48,"value":253},{"type":42,"tag":57,"props":9007,"children":9009},{"className":9008},[],[9010],{"type":48,"value":9011},"#5 PINK=#ba0168",{"type":48,"value":238},{"type":42,"tag":57,"props":9014,"children":9016},{"className":9015},[],[9017],{"type":48,"value":9018},"#6 PURPLE=#c64809",{"type":48,"value":238},{"type":42,"tag":57,"props":9021,"children":9023},{"className":9022},[],[9024],{"type":48,"value":9025},"#7 PALE=#bed6ff",{"type":48,"value":238},{"type":42,"tag":57,"props":9028,"children":9030},{"className":9029},[],[9031],{"type":48,"value":9032},"NAVY=#040826",{"type":48,"value":253},{"type":42,"tag":57,"props":9035,"children":9037},{"className":9036},[],[9038],{"type":48,"value":9039},"LIGHT_GRAY=#e1e2e1",{"type":48,"value":1463},{"type":42,"tag":51,"props":9042,"children":9043},{},[9044,9046,9051,9053,9059,9061,9067,9069,9075,9077,9083],{"type":48,"value":9045},"Outlook pie uses ",{"type":42,"tag":107,"props":9047,"children":9048},{},[9049],{"type":48,"value":9050},"semantic",{"type":48,"value":9052}," colors (case-insensitive):\n",{"type":42,"tag":57,"props":9054,"children":9056},{"className":9055},[],[9057],{"type":48,"value":9058},"Stable → #e1e2e1",{"type":48,"value":9060}," (light gray), ",{"type":42,"tag":57,"props":9062,"children":9064},{"className":9063},[],[9065],{"type":48,"value":9066},"Positive → #5eb6bc",{"type":48,"value":9068}," (teal),\n",{"type":42,"tag":57,"props":9070,"children":9072},{"className":9071},[],[9073],{"type":48,"value":9074},"Negative → #f09615",{"type":48,"value":9076}," (amber), ",{"type":42,"tag":57,"props":9078,"children":9080},{"className":9079},[],[9081],{"type":48,"value":9082},"Under Review → #005eff",{"type":48,"value":9084}," (bright blue).",{"type":42,"tag":51,"props":9086,"children":9087},{},[9088,9090,9096,9098,9104,9106,9112,9114,9120,9122,9128,9130,9136],{"type":48,"value":9089},"All other multi-series charts (scatter, pie, bar) consume colors from the palette in\npriority order: series 0 = ",{"type":42,"tag":57,"props":9091,"children":9093},{"className":9092},[],[9094],{"type":48,"value":9095},"#005eff",{"type":48,"value":9097},", series 1 = ",{"type":42,"tag":57,"props":9099,"children":9101},{"className":9100},[],[9102],{"type":48,"value":9103},"#5eb6bc",{"type":48,"value":9105},", series 2 = ",{"type":42,"tag":57,"props":9107,"children":9109},{"className":9108},[],[9110],{"type":48,"value":9111},"#c7ab21",{"type":48,"value":9113},",\nseries 3 = ",{"type":42,"tag":57,"props":9115,"children":9117},{"className":9116},[],[9118],{"type":48,"value":9119},"#5c068c",{"type":48,"value":9121},", series 4 = ",{"type":42,"tag":57,"props":9123,"children":9125},{"className":9124},[],[9126],{"type":48,"value":9127},"#ba0168",{"type":48,"value":9129},", series 5 = ",{"type":42,"tag":57,"props":9131,"children":9133},{"className":9132},[],[9134],{"type":48,"value":9135},"#c64809",{"type":48,"value":1463},{"type":42,"tag":51,"props":9138,"children":9139},{},[9140],{"type":48,"value":9141},"Charts are rendered client-side via Chart.js (loaded from cdnjs.cloudflare.com CDN).\nThe HTML file is fully self-contained — no Python dependencies beyond the standard library.",{"type":42,"tag":421,"props":9143,"children":9144},{},[],{"type":42,"tag":78,"props":9146,"children":9148},{"id":9147},"tips",[9149],{"type":48,"value":9150},"Tips",{"type":42,"tag":97,"props":9152,"children":9153},{},[9154,9159,9164,9209,9214,9238,9257,9315,9320,9325,9352,9372],{"type":42,"tag":101,"props":9155,"children":9156},{},[9157],{"type":48,"value":9158},"Run ALL data-gathering tool calls in a single parallel batch.",{"type":42,"tag":101,"props":9160,"children":9161},{},[9162],{"type":48,"value":9163},"Keep the target company first in every peer table — the HTML report and the\ncommentary all assume this ordering.",{"type":42,"tag":101,"props":9165,"children":9166},{},[9167,9172,9174,9180,9182,9187,9188,9193,9195,9200,9202,9207],{"type":42,"tag":57,"props":9168,"children":9170},{"className":9169},[],[9171],{"type":48,"value":1004},{"type":48,"value":9173}," is numeric: map Moody's rating notches to integers (",{"type":42,"tag":57,"props":9175,"children":9177},{"className":9176},[],[9178],{"type":48,"value":9179},"Aaa=21, Aa1=20, …, C=1",{"type":48,"value":9181},") so the line chart shows trajectory. Both ",{"type":42,"tag":57,"props":9183,"children":9185},{"className":9184},[],[9186],{"type":48,"value":994},{"type":48,"value":812},{"type":42,"tag":57,"props":9189,"children":9191},{"className":9190},[],[9192],{"type":48,"value":1004},{"type":48,"value":9194}," ",{"type":42,"tag":107,"props":9196,"children":9197},{},[9198],{"type":48,"value":9199},"must be in oldest-to-newest order",{"type":48,"value":9201}," before writing the payload.\n",{"type":42,"tag":57,"props":9203,"children":9205},{"className":9204},[],[9206],{"type":48,"value":251},{"type":48,"value":9208}," returns history newest-first — sort ascending by date before use.",{"type":42,"tag":101,"props":9210,"children":9211},{},[9212],{"type":48,"value":9213},"Pie percentages must sum to 100 — bucket small categories into \"Other\".",{"type":42,"tag":101,"props":9215,"children":9216},{},[9217,9222,9224,9229,9231,9236],{"type":42,"tag":57,"props":9218,"children":9220},{"className":9219},[],[9221],{"type":48,"value":1041},{"type":48,"value":9223}," arrays must match ",{"type":42,"tag":57,"props":9225,"children":9227},{"className":9226},[],[9228],{"type":48,"value":1049},{"type":48,"value":9230}," length. Use ",{"type":42,"tag":57,"props":9232,"children":9234},{"className":9233},[],[9235],{"type":48,"value":1057},{"type":48,"value":9237}," for missing points.",{"type":42,"tag":101,"props":9239,"children":9240},{},[9241,9243,9248,9249,9255],{"type":48,"value":9242},"Scorecard header rows use ",{"type":42,"tag":57,"props":9244,"children":9246},{"className":9245},[],[9247],{"type":48,"value":1548},{"type":48,"value":1230},{"type":42,"tag":57,"props":9250,"children":9252},{"className":9251},[],[9253],{"type":48,"value":9254},"values[row] = [[], [], ...]",{"type":48,"value":9256}," (empty\nper-company entries). The builder turns these into highlighted header rows in the HTML table.",{"type":42,"tag":101,"props":9258,"children":9259},{},[9260,9272,9274,9279,9281,9286,9287,9292,9294,9299,9301,9306,9308,9313],{"type":42,"tag":107,"props":9261,"children":9262},{},[9263,9265,9270],{"type":48,"value":9264},"Scorecard ",{"type":42,"tag":57,"props":9266,"children":9268},{"className":9267},[],[9269],{"type":48,"value":1390},{"type":48,"value":9271}," = target company first, then all peer entities",{"type":48,"value":9273}," — for\nexample ",{"type":42,"tag":57,"props":9275,"children":9277},{"className":9276},[],[9278],{"type":48,"value":1453},{"type":48,"value":9280},". Never put two time-horizons\nof the same company here. ",{"type":42,"tag":57,"props":9282,"children":9284},{"className":9283},[],[9285],{"type":48,"value":1622},{"type":48,"value":1624},{"type":42,"tag":57,"props":9288,"children":9290},{"className":9289},[],[9291],{"type":48,"value":1414},{"type":48,"value":9293}," (a silent placeholder the\nbuilder skips); the target's data goes at index 1 (",{"type":42,"tag":57,"props":9295,"children":9297},{"className":9296},[],[9298],{"type":48,"value":1461},{"type":48,"value":9300},"), and each\nsubsequent peer at index 2, 3, … Omitting the ",{"type":42,"tag":57,"props":9302,"children":9304},{"className":9303},[],[9305],{"type":48,"value":1414},{"type":48,"value":9307}," at index 0 shifts every column one\nposition and silently misaligns the data. Omitting the target from ",{"type":42,"tag":57,"props":9309,"children":9311},{"className":9310},[],[9312],{"type":48,"value":1390},{"type":48,"value":9314}," produces\na scorecard that appears to have no target — equally wrong.",{"type":42,"tag":101,"props":9316,"children":9317},{},[9318],{"type":48,"value":9319},"If you can't get real data for a section, leave arrays empty — the builder degrades\ngracefully rather than erroring.",{"type":42,"tag":101,"props":9321,"children":9322},{},[9323],{"type":48,"value":9324},"Dates in the report are just strings; format however reads best (e.g., \"Nov 20, 2025\").",{"type":42,"tag":101,"props":9326,"children":9327},{},[9328,9330,9335,9337,9343,9345,9350],{"type":48,"value":9329},"The ",{"type":42,"tag":57,"props":9331,"children":9333},{"className":9332},[],[9334],{"type":48,"value":1703},{"type":48,"value":9336}," name should be lower-cased and hyphen-joined (e.g.\n",{"type":42,"tag":57,"props":9338,"children":9340},{"className":9339},[],[9341],{"type":48,"value":9342},"boeing-company-20260415-142300",{"type":48,"value":9344},") to avoid shell-quoting issues when opening the\n",{"type":42,"tag":57,"props":9346,"children":9348},{"className":9347},[],[9349],{"type":48,"value":70},{"type":48,"value":9351}," file.",{"type":42,"tag":101,"props":9353,"children":9354},{},[9355,9357,9363,9364,9370],{"type":48,"value":9356},"Revenue value labels must use comma-separated thousands with zero decimal places —\nuse ",{"type":42,"tag":57,"props":9358,"children":9360},{"className":9359},[],[9361],{"type":48,"value":9362},"\"#,##0\"",{"type":48,"value":1697},{"type":42,"tag":57,"props":9365,"children":9367},{"className":9366},[],[9368],{"type":48,"value":9369},"y_format",{"type":48,"value":9371}," argument in the payload for revenue bar charts.",{"type":42,"tag":101,"props":9373,"children":9374},{},[9375,9393,9395,9400,9402,9407,9409,9414,9416,9421],{"type":42,"tag":107,"props":9376,"children":9377},{},[9378,9380,9385,9387],{"type":48,"value":9379},"Never copy ",{"type":42,"tag":57,"props":9381,"children":9383},{"className":9382},[],[9384],{"type":48,"value":786},{"type":48,"value":9386}," values from ",{"type":42,"tag":57,"props":9388,"children":9390},{"className":9389},[],[9391],{"type":48,"value":9392},"sample_payload.json",{"type":48,"value":9394}," — the sample uses\n",{"type":42,"tag":57,"props":9396,"children":9398},{"className":9397},[],[9399],{"type":48,"value":1186},{"type":48,"value":9401}," throughout only because it is a fixed illustrative example. In a real\nrun, read the period label from the ",{"type":42,"tag":57,"props":9403,"children":9405},{"className":9404},[],[9406],{"type":48,"value":267},{"type":48,"value":9408}," response for each\ncompany and use that. A company reporting in 2025 must show ",{"type":42,"tag":57,"props":9410,"children":9412},{"className":9411},[],[9413],{"type":48,"value":1179},{"type":48,"value":9415},", not\n",{"type":42,"tag":57,"props":9417,"children":9419},{"className":9418},[],[9420],{"type":48,"value":1186},{"type":48,"value":9422},". Anchoring on the sample year is a silent data-accuracy bug.",{"type":42,"tag":9424,"props":9425,"children":9426},"style",{},[9427],{"type":48,"value":9428},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":9430,"total":9551},[9431,9449,9465,9477,9497,9519,9539],{"slug":9432,"name":9432,"fn":9433,"description":9434,"org":9435,"tags":9436,"stars":25,"repoUrl":26,"updatedAt":27},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9437,9440,9443,9446],{"name":9438,"slug":9439,"type":15},"Accessibility","accessibility",{"name":9441,"slug":9442,"type":15},"Charts","charts",{"name":9444,"slug":9445,"type":15},"Data Visualization","data-visualization",{"name":9447,"slug":9448,"type":15},"Design","design",{"slug":9450,"name":9450,"fn":9451,"description":9452,"org":9453,"tags":9454,"stars":25,"repoUrl":26,"updatedAt":9464},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9455,9458,9461],{"name":9456,"slug":9457,"type":15},"Agents","agents",{"name":9459,"slug":9460,"type":15},"Browser Automation","browser-automation",{"name":9462,"slug":9463,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":9466,"name":9466,"fn":9467,"description":9468,"org":9469,"tags":9470,"stars":25,"repoUrl":26,"updatedAt":9476},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9471,9472,9475],{"name":9459,"slug":9460,"type":15},{"name":9473,"slug":9474,"type":15},"Local Development","local-development",{"name":9462,"slug":9463,"type":15},"2026-04-06T18:41:17.526867",{"slug":9478,"name":9478,"fn":9479,"description":9480,"org":9481,"tags":9482,"stars":25,"repoUrl":26,"updatedAt":9496},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9483,9484,9487,9490,9493],{"name":9456,"slug":9457,"type":15},{"name":9485,"slug":9486,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":9488,"slug":9489,"type":15},"SDK","sdk",{"name":9491,"slug":9492,"type":15},"Serverless","serverless",{"name":9494,"slug":9495,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":9498,"name":9498,"fn":9499,"description":9500,"org":9501,"tags":9502,"stars":25,"repoUrl":26,"updatedAt":9518},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9503,9506,9509,9512,9515],{"name":9504,"slug":9505,"type":15},"Frontend","frontend",{"name":9507,"slug":9508,"type":15},"React","react",{"name":9510,"slug":9511,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":9513,"slug":9514,"type":15},"UI Components","ui-components",{"name":9516,"slug":9517,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":9520,"name":9520,"fn":9521,"description":9522,"org":9523,"tags":9524,"stars":25,"repoUrl":26,"updatedAt":9538},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9525,9528,9531,9534,9537],{"name":9526,"slug":9527,"type":15},"AI Infrastructure","ai-infrastructure",{"name":9529,"slug":9530,"type":15},"Cost Optimization","cost-optimization",{"name":9532,"slug":9533,"type":15},"LLM","llm",{"name":9535,"slug":9536,"type":15},"Performance","performance",{"name":9516,"slug":9517,"type":15},"2026-04-06T18:40:44.377464",{"slug":9540,"name":9540,"fn":9541,"description":9542,"org":9543,"tags":9544,"stars":25,"repoUrl":26,"updatedAt":9550},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9545,9546,9549],{"name":9529,"slug":9530,"type":15},{"name":9547,"slug":9548,"type":15},"Database","database",{"name":9532,"slug":9533,"type":15},"2026-04-06T18:41:08.513425",600,{"items":9553,"total":9750},[9554,9575,9598,9615,9631,9648,9667,9679,9693,9707,9719,9734],{"slug":9555,"name":9555,"fn":9556,"description":9557,"org":9558,"tags":9559,"stars":9572,"repoUrl":9573,"updatedAt":9574},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9560,9563,9566,9569],{"name":9561,"slug":9562,"type":15},"Documents","documents",{"name":9564,"slug":9565,"type":15},"Healthcare","healthcare",{"name":9567,"slug":9568,"type":15},"Insurance","insurance",{"name":9570,"slug":9571,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":9576,"name":9576,"fn":9577,"description":9578,"org":9579,"tags":9580,"stars":9595,"repoUrl":9596,"updatedAt":9597},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9581,9584,9586,9589,9592],{"name":9582,"slug":9583,"type":15},".NET","dotnet",{"name":9585,"slug":9576,"type":15},"ASP.NET Core",{"name":9587,"slug":9588,"type":15},"Blazor","blazor",{"name":9590,"slug":9591,"type":15},"C#","csharp",{"name":9593,"slug":9594,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":9599,"name":9599,"fn":9600,"description":9601,"org":9602,"tags":9603,"stars":9595,"repoUrl":9596,"updatedAt":9614},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9604,9607,9610,9613],{"name":9605,"slug":9606,"type":15},"Apps SDK","apps-sdk",{"name":9608,"slug":9609,"type":15},"ChatGPT","chatgpt",{"name":9611,"slug":9612,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":9616,"name":9616,"fn":9617,"description":9618,"org":9619,"tags":9620,"stars":9595,"repoUrl":9596,"updatedAt":9630},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9621,9624,9627],{"name":9622,"slug":9623,"type":15},"API Development","api-development",{"name":9625,"slug":9626,"type":15},"CLI","cli",{"name":9628,"slug":9629,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":9632,"name":9632,"fn":9633,"description":9634,"org":9635,"tags":9636,"stars":9595,"repoUrl":9596,"updatedAt":9647},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9637,9640,9643,9644],{"name":9638,"slug":9639,"type":15},"Cloudflare","cloudflare",{"name":9641,"slug":9642,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":9485,"slug":9486,"type":15},{"name":9645,"slug":9646,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":9649,"name":9649,"fn":9650,"description":9651,"org":9652,"tags":9653,"stars":9595,"repoUrl":9596,"updatedAt":9666},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9654,9657,9660,9663],{"name":9655,"slug":9656,"type":15},"Productivity","productivity",{"name":9658,"slug":9659,"type":15},"Project Management","project-management",{"name":9661,"slug":9662,"type":15},"Strategy","strategy",{"name":9664,"slug":9665,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":9668,"name":9668,"fn":9669,"description":9670,"org":9671,"tags":9672,"stars":9595,"repoUrl":9596,"updatedAt":9678},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9673,9674,9676,9677],{"name":9447,"slug":9448,"type":15},{"name":9675,"slug":9668,"type":15},"Figma",{"name":9504,"slug":9505,"type":15},{"name":9611,"slug":9612,"type":15},"2026-04-12T05:06:47.939943",{"slug":9680,"name":9680,"fn":9681,"description":9682,"org":9683,"tags":9684,"stars":9595,"repoUrl":9596,"updatedAt":9692},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9685,9686,9689,9690,9691],{"name":9447,"slug":9448,"type":15},{"name":9687,"slug":9688,"type":15},"Design System","design-system",{"name":9675,"slug":9668,"type":15},{"name":9504,"slug":9505,"type":15},{"name":9513,"slug":9514,"type":15},"2026-05-10T05:59:52.971881",{"slug":9694,"name":9694,"fn":9695,"description":9696,"org":9697,"tags":9698,"stars":9595,"repoUrl":9596,"updatedAt":9706},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9699,9700,9701,9704,9705],{"name":9447,"slug":9448,"type":15},{"name":9687,"slug":9688,"type":15},{"name":9702,"slug":9703,"type":15},"Documentation","documentation",{"name":9675,"slug":9668,"type":15},{"name":9504,"slug":9505,"type":15},"2026-05-16T06:07:47.821474",{"slug":9708,"name":9708,"fn":9709,"description":9710,"org":9711,"tags":9712,"stars":9595,"repoUrl":9596,"updatedAt":9718},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9713,9714,9715,9716,9717],{"name":9447,"slug":9448,"type":15},{"name":9675,"slug":9668,"type":15},{"name":9504,"slug":9505,"type":15},{"name":9513,"slug":9514,"type":15},{"name":9593,"slug":9594,"type":15},"2026-05-16T06:07:40.583615",{"slug":9720,"name":9720,"fn":9721,"description":9722,"org":9723,"tags":9724,"stars":9595,"repoUrl":9596,"updatedAt":9733},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9725,9728,9729,9732],{"name":9726,"slug":9727,"type":15},"Animation","animation",{"name":9628,"slug":9629,"type":15},{"name":9730,"slug":9731,"type":15},"Creative","creative",{"name":9447,"slug":9448,"type":15},"2026-05-02T05:31:48.48485",{"slug":9735,"name":9735,"fn":9736,"description":9737,"org":9738,"tags":9739,"stars":9595,"repoUrl":9596,"updatedAt":9749},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9740,9741,9742,9745,9748],{"name":9730,"slug":9731,"type":15},{"name":9447,"slug":9448,"type":15},{"name":9743,"slug":9744,"type":15},"Image Generation","image-generation",{"name":9746,"slug":9747,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]