@objectstack/lint 16.1.0 → 17.0.0-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/validate-widget-bindings.ts","../src/validate-expressions.ts","../src/validate-list-view-mode.ts","../src/validate-flow-trigger-readiness.ts","../src/validate-view-containers.ts","../src/validate-responsive-styles.ts","../src/validate-jsx-pages.ts","../src/validate-react-pages.ts","../src/validate-react-page-props.ts","../src/validate-page-source-styling.ts","../src/validate-record-title.ts","../src/validate-semantic-roles.ts","../src/validate-form-layout.ts","../src/validate-visibility-predicates.ts","../src/validate-capability-references.ts","../src/validate-approval-approvers.ts","../src/validate-security-posture.ts","../src/validate-dashboard-action-refs.ts","../src/build-access-matrix.ts"],"sourcesContent":["// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\nimport { isIncoherentAggregate } from '@objectstack/spec/data';\n\n/**\n * Build-time dashboard widget binding diagnostics (issues #1719, #1721).\n *\n * Runs at `objectstack validate`/`compile`/`build` AFTER the stack has been\n * schema-parsed, so every widget's `dataset` reference can be linked to its\n * `defineDataset` and each entry in `dimensions`/`values` resolved to a\n * declared dimension/measure. This is the semantic/cross-reference phase —\n * the rules here cannot run during plain Zod parsing of the raw widget\n * literal (the dataset may even live in another package of the stack).\n *\n * Reference-integrity rules (#1721) — severity `error`, the page is broken:\n *\n * - `widget-dataset-unknown` — `dataset` does not resolve to a declared\n * `Dataset`.\n * - `widget-dimension-unknown` — a `dimensions[]` entry is not a dimension\n * name on the bound dataset.\n * - `widget-measure-unknown` — a `values[]` entry is not a measure name on\n * the bound dataset.\n * - `chart-field-unknown` — a `chartConfig` binding names a field the query\n * result will not contain: `xAxis.field` must be one of the widget's\n * dimensions (or a dataset dimension), and each `yAxis[].field` /\n * `series[].name` must be one of the widget's selected measures\n * (`values`). Post-cutover (ADR-0021) the result rows are keyed by\n * measure NAME (e.g. `sum_amount`), not the base column (`amount`) — a\n * stale base-column reference renders the axis but an empty series.\n * - `widget-legacy-analytics-unrenderable` (#1878/#1894) — a widget uses the\n * removed pre-ADR-0021 inline-analytics shape (`categoryField`/`rowField`/…)\n * as its ONLY data wiring: no `dataset`, no `object`, no inline `data`. The\n * renderer reads only the dataset path, so the widget has no data at all and\n * renders nothing. Errored (not warned) so this class of authoring mistake —\n * very often an AI emitting a removed shape — fails the build instead of\n * shipping a blank widget past human review.\n * - `dashboard-filter-field-unknown` (#3365) — a dashboard-level filter\n * (`dateRange` or a `globalFilters[]` entry) is wired into EVERY widget's\n * analytics query (#2501), but its EFFECTIVE field (after any `filterBindings`\n * re-target) does not exist on a bound widget's dataset object. The widget's\n * query then references a non-existent column and crashes at render time\n * (`no such column …`) — a build-decidable invariant that previously escaped\n * the static gate and failed only when a user opened the dashboard. A widget\n * opts out with `filterBindings: { <name>: false }` or re-targets to a real\n * field. This is the same field-existence invariant ADR-0032 enforces for\n * CEL formula / sharing-rule references, applied to dashboard filter fields.\n *\n * Advisory rules — severity `warning`, build stays green:\n *\n * - `chart-config-missing` — a chart-type widget (bar/line/pie/…) has no\n * `chartConfig`, so the renderer cannot tell which measure to plot.\n * - `table-count-only` (#1719) — a `table`/`pivot` widget whose selected\n * measures are ALL `aggregate: 'count'` and which declares no\n * `dimensions` asks the analytics service for a single summary row. That\n * is the shape a `metric` widget wants — for a table it almost always\n * means the author wanted a per-record listing, which is not an\n * analytics dataset at all (model it as an object-bound ListView,\n * ADR-0017). Evaluated on the WIDGET's binding, not the dataset.\n * - `measure-aggregate-incoherent` — a dataset measure aggregates its field\n * in a way that produces a meaningless number: today, SUM (or\n * `count_distinct`) of a `percent`/rate field, whose total routinely\n * exceeds 100%. Rates must AVG. Checked once per dataset (independent of\n * any widget) when the bound object's field types are known.\n * - `widget-legacy-analytics-shape` (#1878/#1894) — a widget sets a\n * pre-ADR-0021 inline key (`categoryField`/`valueField`/`xAxisField`/\n * `yAxisFields`/`aggregate`/`aggregation`/`rowField`/`columnField`) that the\n * single-form cutover removed. The dashboard renderer routes dataset-bound\n * widgets through `DatasetWidget` and never reads these, so they are a\n * silent no-op. Steers the author onto `dataset`+`dimensions`+`values`.\n *\n * Warnings can be deliberately suppressed per widget via\n * `suppressWarnings: ['<rule-id>']`; errors cannot — they describe a\n * binding the analytics service cannot satisfy.\n */\n\nexport const WIDGET_DATASET_UNKNOWN = 'widget-dataset-unknown';\nexport const WIDGET_DIMENSION_UNKNOWN = 'widget-dimension-unknown';\nexport const WIDGET_MEASURE_UNKNOWN = 'widget-measure-unknown';\nexport const CHART_FIELD_UNKNOWN = 'chart-field-unknown';\nexport const CHART_CONFIG_MISSING = 'chart-config-missing';\nexport const TABLE_COUNT_ONLY = 'table-count-only';\nexport const MEASURE_AGGREGATE_INCOHERENT = 'measure-aggregate-incoherent';\nexport const WIDGET_LEGACY_ANALYTICS_SHAPE = 'widget-legacy-analytics-shape';\nexport const WIDGET_LEGACY_ANALYTICS_UNRENDERABLE = 'widget-legacy-analytics-unrenderable';\nexport const DASHBOARD_FILTER_FIELD_UNKNOWN = 'dashboard-filter-field-unknown';\n\n/**\n * Pre-ADR-0021 inline-analytics keys. The single-form cutover replaced them\n * with the semantic-layer shape (`dataset` + `dimensions` + `values`); the\n * dashboard renderer routes dataset-bound widgets through `DatasetWidget` and\n * never reads these, so authoring one today is a silent no-op. Warned (not\n * errored) because they still parse and a legacy object-bound widget keeps\n * rendering — the author is just being steered to the governed shape.\n * (liveness audit #1878 / #1894).\n *\n * Interplay with `DashboardWidgetSchema.strict()` (framework#3251, protocol 16):\n * on the schema-parsed CLI paths (`compile`, `validate`) strict rejects these\n * keys as a hard parse error *before* binding validation runs, so these rules\n * are effectively preempted there. They remain the friendly, suppressible\n * bridge on the raw-config paths (`lint`, `doctor`) that hand\n * `validateWidgetBindings` un-parsed config — keeping the actionable\n * \"steer to the dataset shape\" message rather than a bare unknown-key error.\n */\nconst LEGACY_ANALYTICS_KEYS = [\n 'categoryField', 'valueField', 'xAxisField', 'yAxisFields',\n 'aggregate', 'aggregation', 'rowField', 'columnField',\n] as const;\n\nexport type WidgetBindingSeverity = 'error' | 'warning';\n\nexport interface WidgetBindingFinding {\n /** `error` = unresolvable binding (broken page); `warning` = advisory. */\n severity: WidgetBindingSeverity;\n /** Diagnostic rule id (registry entry), e.g. `widget-measure-unknown`. */\n rule: string;\n /** Human-readable location, e.g. `dashboard \"x\" › widget \"y\"`. */\n where: string;\n /** Config path, e.g. `dashboards[0].widgets[3]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix (or deliberately suppress) it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction asStrings(v: unknown): string[] {\n return Array.isArray(v) ? v.filter((s): s is string => typeof s === 'string') : [];\n}\n\n/**\n * Chart families whose renderer needs a `chartConfig` measure mapping.\n * Single-value types (metric/kpi/gauge/…) plot their lone value and tabular\n * types (table/pivot) render every column, so they are exempt.\n */\nconst CHART_TYPES = new Set([\n 'bar', 'horizontal-bar', 'column',\n 'line', 'area',\n 'pie', 'donut', 'funnel',\n 'scatter', 'treemap', 'sankey', 'radar',\n]);\n\nfunction levenshtein(a: string, b: string): number {\n const m = a.length, n = b.length;\n let prev = Array.from({ length: n + 1 }, (_, j) => j);\n for (let i = 1; i <= m; i++) {\n const cur = [i];\n for (let j = 1; j <= n; j++) {\n cur[j] = Math.min(\n prev[j] + 1,\n cur[j - 1] + 1,\n prev[j - 1] + (a[i - 1] === b[j - 1] ? 0 : 1),\n );\n }\n prev = cur;\n }\n return prev[n];\n}\n\n/**\n * Nearest declared name for a typo'd/stale reference, or undefined when\n * nothing is close. Containment is checked first because the cutover's\n * canonical drift is base column → prefixed measure name (`amount` →\n * `sum_amount`), which is far in edit distance but obvious to a human.\n */\nfunction didYouMean(input: string, candidates: Iterable<string>): string | undefined {\n let best: string | undefined;\n let bestScore = Infinity;\n for (const c of candidates) {\n let score: number;\n if (input.length >= 3 && (c.includes(input) || input.includes(c))) {\n score = Math.abs(c.length - input.length);\n } else {\n const d = levenshtein(input, c);\n if (d > Math.max(2, Math.floor(input.length / 3))) continue;\n score = 100 + d;\n }\n if (score < bestScore) { bestScore = score; best = c; }\n }\n return best;\n}\n\nfunction suggest(input: string, candidates: Iterable<string>): string {\n const s = didYouMean(input, candidates);\n return s ? ` Did you mean \"${s}\"?` : '';\n}\n\nfunction list(names: Iterable<string>): string {\n const arr = [...names];\n return arr.length > 0 ? arr.join(', ') : '(none)';\n}\n\n// ── dashboard-filter field-existence (#3365) ─────────────────────────────────\n\n/** Reserved filter name for the dashboard's built-in date range (#2501). */\nconst DATE_RANGE_FILTER_NAME = 'dateRange';\n/**\n * Default field of the built-in date range when `dateRange.field` is omitted.\n * MUST track objectui `dashboard-filters.ts` `DATE_RANGE_DEFAULT_FIELD` — the\n * runtime this check shadows. `created_at` is a registry-injected system field\n * (below), so a bare `dateRange` never false-positives.\n */\nconst DATE_RANGE_DEFAULT_FIELD = 'created_at';\n\n/**\n * Registry-injected fields present on (almost) every object but NOT declared in\n * `object.fields`, so a dashboard filter targeting one must not be flagged as a\n * missing column. Superset of the objectql registry's `applySystemFields`\n * (audit columns, ownership, tenant, soft-delete) and spec's `SystemFieldName`.\n * Deliberately generous: the cost of over-inclusion is at worst a missed error\n * on a `systemFields: false` object (rare); the cost of under-inclusion is a\n * false build failure on the ubiquitous `dateRange` → `created_at` default. The\n * near-zero-false-positive bias mirrors ADR-0032's field-ref validator.\n */\nconst SYSTEM_FIELDS = new Set<string>([\n 'id',\n 'created_at', 'created_by', 'updated_at', 'updated_by',\n 'owner_id', 'organization_id', 'tenant_id', 'user_id',\n 'deleted_at',\n]);\n\ninterface DashFilterDef {\n /** Stable filter name — the key widgets bind against in `filterBindings`. */\n name: string;\n /** Default target field when a widget declares no explicit binding. */\n field: string;\n /** Legacy widget-id allow-list; gates the DEFAULT binding only. */\n targetWidgets?: string[];\n}\n\n/**\n * Normalize a dashboard's declared filters into `{ name, field, targetWidgets }`\n * defs — the built-in `dateRange` (reserved name) first, then every\n * `globalFilters[]` entry named by its `name` (defaulting to `field`). Later\n * duplicates win. Mirrors objectui `resolveDashboardFilterDefs`.\n */\nfunction dashboardFilterDefs(dash: AnyRec): DashFilterDef[] {\n const byName = new Map<string, DashFilterDef>();\n\n const dateRange = dash.dateRange;\n if (dateRange && typeof dateRange === 'object') {\n const declared = (dateRange as AnyRec).field;\n const field = typeof declared === 'string' && declared ? declared : DATE_RANGE_DEFAULT_FIELD;\n byName.set(DATE_RANGE_FILTER_NAME, { name: DATE_RANGE_FILTER_NAME, field });\n }\n\n for (const f of asArray(dash.globalFilters)) {\n if (typeof f.field !== 'string' || !f.field) continue;\n const name = typeof f.name === 'string' && f.name ? f.name : f.field;\n const targetWidgets = Array.isArray(f.targetWidgets)\n ? f.targetWidgets.filter((w): w is string => typeof w === 'string')\n : undefined;\n byName.set(name, { name, field: f.field, targetWidgets });\n }\n\n return [...byName.values()];\n}\n\n/**\n * Resolve which field of `widget` a filter binds to, or `undefined` when the\n * widget is not bound (opted out / not targeted). Precedence mirrors objectui\n * `resolveBoundField`: explicit `filterBindings` entry (string re-targets,\n * `false` opts out — both win) → legacy `targetWidgets` allow-list → the\n * filter's own default `field`. `explicit` distinguishes an author-chosen field\n * (a typo they must fix) from the inherited default (which they may opt out of).\n */\nfunction effectiveFilterField(\n widget: AnyRec,\n def: DashFilterDef,\n): { field: string; explicit: boolean } | undefined {\n const bindings = widget.filterBindings;\n const binding = bindings && typeof bindings === 'object'\n ? (bindings as AnyRec)[def.name]\n : undefined;\n if (binding === false) return undefined;\n if (typeof binding === 'string' && binding) return { field: binding, explicit: true };\n if (def.targetWidgets && def.targetWidgets.length > 0) {\n const id = typeof widget.id === 'string' ? widget.id : undefined;\n if (!id || !def.targetWidgets.includes(id)) return undefined;\n }\n return { field: def.field, explicit: false };\n}\n\n/**\n * Validate every dashboard widget's dataset binding. Returns the list of\n * findings (empty = clean). Caller decides how to surface them: `error`\n * findings describe bindings the analytics service cannot satisfy and\n * should fail validate/build; `warning` findings are advisory and must\n * never fail the build on their own.\n */\nexport function validateWidgetBindings(stack: AnyRec): WidgetBindingFinding[] {\n const findings: WidgetBindingFinding[] = [];\n\n const datasets = new Map<string, AnyRec>();\n for (const ds of asArray(stack.datasets)) {\n if (typeof ds.name === 'string') datasets.set(ds.name, ds);\n }\n\n // ── (0) dataset measures aggregate their field coherently ──\n // A measure that SUMs a percentage/rate field produces a meaningless total\n // (it can exceed 100%); rates must AVG. This is a dataset-level defect (it\n // does not depend on any widget), so it is checked once over every dataset\n // whose object's field types are known. Advisory — the page still renders.\n const objectFieldTypes = new Map<string, Map<string, string>>();\n for (const o of asArray(stack.objects)) {\n if (typeof o.name !== 'string') continue;\n const fm = new Map<string, string>();\n for (const f of asArray(o.fields)) {\n if (typeof f.name === 'string' && typeof f.type === 'string') fm.set(f.name, f.type);\n }\n objectFieldTypes.set(o.name, fm);\n }\n const datasetList = asArray(stack.datasets);\n for (let i = 0; i < datasetList.length; i++) {\n const ds = datasetList[i];\n const fieldTypes = typeof ds.object === 'string' ? objectFieldTypes.get(ds.object) : undefined;\n if (!fieldTypes) continue; // cannot judge without the object's field types\n const dsMeasures = asArray(ds.measures);\n for (let k = 0; k < dsMeasures.length; k++) {\n const m = dsMeasures[k];\n const field = typeof m.field === 'string' ? m.field : undefined;\n const aggregate = typeof m.aggregate === 'string' ? m.aggregate : undefined;\n if (!field || !aggregate) continue; // count(*) and underivable measures are fine\n const ftype = fieldTypes.get(field);\n if (ftype && isIncoherentAggregate(aggregate, ftype)) {\n findings.push({\n severity: 'warning',\n rule: MEASURE_AGGREGATE_INCOHERENT,\n where: `dataset \"${typeof ds.name === 'string' ? ds.name : `(dataset ${i})`}\" › measure \"${typeof m.name === 'string' ? m.name : `(measure ${k})`}\"`,\n path: `datasets[${i}].measures[${k}]`,\n message:\n `measure \"${m.name}\" applies ${aggregate} to ${ftype} field \"${field}\" — ` +\n `summed percentages are meaningless (they can exceed 100%).`,\n hint:\n `Use aggregate \"avg\" for percentage/rate fields (or \"count\" of records). ` +\n `If a running total is genuinely intended, suppress with: ` +\n `suppressWarnings: ['${MEASURE_AGGREGATE_INCOHERENT}'] on the measure.`,\n });\n }\n }\n }\n\n const dashboards = asArray(stack.dashboards);\n for (let i = 0; i < dashboards.length; i++) {\n const dash = dashboards[i];\n const dashName = typeof dash.name === 'string' ? dash.name : `(dashboard ${i})`;\n const widgets = Array.isArray(dash.widgets) ? (dash.widgets as AnyRec[]) : [];\n // Dashboard-level filters (`dateRange` + `globalFilters`) are broadcast into\n // every widget's query (#2501) — resolved once here, checked per widget below.\n const dashFilterDefs = dashboardFilterDefs(dash);\n\n for (let j = 0; j < widgets.length; j++) {\n const w = widgets[j];\n const widgetId = typeof w.id === 'string' ? w.id : `(widget ${j})`;\n const where = `dashboard \"${dashName}\" › widget \"${widgetId}\"`;\n const path = `dashboards[${i}].widgets[${j}]`;\n const suppressed = (rule: string): boolean =>\n Array.isArray(w.suppressWarnings) && w.suppressWarnings.includes(rule);\n const push = (f: Omit<WidgetBindingFinding, 'where' | 'path'>): void => {\n if (f.severity === 'warning' && suppressed(f.rule)) return;\n findings.push({ ...f, where, path });\n };\n\n // ── (a0) legacy pre-ADR-0021 analytics shape ──\n // Steer authors (very often an AI) off the removed inline shape and onto\n // the semantic-layer `dataset`+`dimensions`+`values`. The renderer reads\n // ONLY the dataset path, so these keys are dead. Two severities:\n // • ERROR — the legacy keys are the widget's only (dead) data wiring\n // (no dataset / object / inline data): it renders nothing.\n // • warning — a data source is present, so the widget still renders and\n // the legacy keys are merely ignored noise (suppressible).\n const legacyUsed = LEGACY_ANALYTICS_KEYS.filter((k) => w[k] !== undefined);\n if (legacyUsed.length > 0) {\n const optionsData =\n typeof w.options === 'object' && w.options !== null &&\n (w.options as AnyRec).data !== undefined;\n const hasDataSource =\n w.dataset !== undefined || w.object !== undefined ||\n w.data !== undefined || optionsData;\n const keyList = legacyUsed.map((k) => `\\`${k}\\``).join(', ');\n const plural = legacyUsed.length > 1;\n const datasetHint =\n `Bind a semantic dataset and select fields BY NAME: ` +\n `\\`dataset: '<name>', dimensions: [...], values: [...]\\`. ` +\n `Dataset-bound widgets render through DatasetWidget (pivot rows/cols come from ` +\n `\\`dimensions\\`, cell values from \\`values\\`).`;\n if (!hasDataSource) {\n push({\n severity: 'error',\n rule: WIDGET_LEGACY_ANALYTICS_UNRENDERABLE,\n message:\n `sets legacy analytics key${plural ? 's' : ''} ${keyList} ` +\n `(removed by the ADR-0021 single-form cutover) and binds no data source ` +\n `(no \\`dataset\\`, \\`object\\`, or inline \\`data\\`) — it renders nothing.`,\n hint:\n `${datasetHint} The renderer ignores the legacy keys, so without a data ` +\n `source this widget has no data at all.`,\n });\n } else {\n push({\n severity: 'warning',\n rule: WIDGET_LEGACY_ANALYTICS_SHAPE,\n message:\n `sets legacy analytics key${plural ? 's' : ''} ${keyList} that the ADR-0021 ` +\n `single-form cutover removed — the dashboard renderer ignores ${plural ? 'them' : 'it'}.`,\n hint:\n `${datasetHint} These inline keys are a no-op. ` +\n `Suppress with suppressWarnings: ['${WIDGET_LEGACY_ANALYTICS_SHAPE}'] if intentional.`,\n });\n }\n }\n\n // ── (a) dataset reference resolves ──\n const dsName = typeof w.dataset === 'string' ? w.dataset : undefined;\n const dataset = dsName ? datasets.get(dsName) : undefined;\n if (dsName && !dataset) {\n push({\n severity: 'error',\n rule: WIDGET_DATASET_UNKNOWN,\n message: `dataset \"${dsName}\" does not resolve to a declared dataset.`,\n hint:\n `Declared datasets: ${list(datasets.keys())}.${suggest(dsName, datasets.keys())} ` +\n `Define the dataset with defineDataset() or fix the reference (ADR-0021).`,\n });\n }\n // Without a resolved dataset there is nothing to check names against.\n if (!dataset) continue;\n\n // ── (a1) dashboard filter fields exist on the widget's object (#3365) ──\n // Each dashboard-level filter is ANDed into this widget's analytics query\n // (#2501); a filter whose EFFECTIVE field (after `filterBindings`) is not a\n // column on the bound dataset object emits SQL like `WHERE close_date …`\n // against a table without that column and the widget crashes at query time.\n // Errored (not warned): a broken query, not advice. The opt-out is the\n // author's own `filterBindings: { <name>: false }`, so no suppression needed.\n if (dashFilterDefs.length > 0) {\n const datasetObject = typeof dataset.object === 'string' ? dataset.object : undefined;\n // Only judge when the bound object's fields are known in THIS stack; an\n // object from another installed package is unknowable here — skip rather\n // than false-positive (mirrors the measure-aggregate check above).\n const objectFields = datasetObject ? objectFieldTypes.get(datasetObject) : undefined;\n if (objectFields) {\n for (const def of dashFilterDefs) {\n const eff = effectiveFilterField(w, def);\n if (!eff) continue; // opted out / not targeted → filter never applies\n const field = eff.field;\n // A relationship path (`account.region`) is resolved by the query\n // engine, not a base column, so it can't be checked here — skip it.\n if (field.includes('.')) continue;\n if (objectFields.has(field) || SYSTEM_FIELDS.has(field)) continue;\n push({\n severity: 'error',\n rule: DASHBOARD_FILTER_FIELD_UNKNOWN,\n message: eff.explicit\n ? `binds dashboard filter \\`${def.name}\\` to field \\`${field}\\` ` +\n `(via filterBindings), but object \\`${datasetObject}\\` (dataset \"${dsName}\") ` +\n `has no field \\`${field}\\`.`\n : `inherits dashboard filter \\`${def.name}(${field})\\`, but object ` +\n `\\`${datasetObject}\\` (dataset \"${dsName}\") has no field \\`${field}\\`.`,\n hint: eff.explicit\n ? `Point filterBindings: { ${def.name}: '<field>' } at a field that exists on ` +\n `\\`${datasetObject}\\`, or opt out with filterBindings: { ${def.name}: false }.` +\n `${suggest(field, objectFields.keys())} Object fields: ${list(objectFields.keys())}.`\n : `Set filterBindings: { ${def.name}: false } on this widget to opt out, or ` +\n `re-target to an existing field with filterBindings: { ${def.name}: '<field>' }.` +\n `${suggest(field, objectFields.keys())} Object fields: ${list(objectFields.keys())}.`,\n });\n }\n }\n }\n\n const dimensionNames = new Set<string>();\n for (const d of asArray(dataset.dimensions)) {\n if (typeof d.name === 'string') dimensionNames.add(d.name);\n }\n const measures = new Map<string, AnyRec>();\n for (const m of asArray(dataset.measures)) {\n if (typeof m.name === 'string') measures.set(m.name, m);\n }\n\n // ── (b) every dimensions[] entry is a dataset dimension ──\n const dims = asStrings(w.dimensions);\n for (let k = 0; k < dims.length; k++) {\n if (dimensionNames.has(dims[k])) continue;\n push({\n severity: 'error',\n rule: WIDGET_DIMENSION_UNKNOWN,\n message:\n `dimensions[${k}] \"${dims[k]}\" is not a dimension of dataset ` +\n `\"${dsName}\" (declared dimensions: ${list(dimensionNames)}).`,\n hint:\n `Widgets select dataset dimensions BY NAME.${suggest(dims[k], dimensionNames)} ` +\n `Add the dimension to the dataset or fix the reference.`,\n });\n }\n\n // ── (c) every values[] entry is a dataset measure ──\n const values = asStrings(w.values);\n for (let k = 0; k < values.length; k++) {\n if (measures.has(values[k])) continue;\n push({\n severity: 'error',\n rule: WIDGET_MEASURE_UNKNOWN,\n message:\n `values[${k}] \"${values[k]}\" is not a measure of dataset ` +\n `\"${dsName}\" (declared measures: ${list(measures.keys())}).`,\n hint:\n `Widgets select dataset measures BY NAME, not by base column.` +\n `${suggest(values[k], measures.keys())} ` +\n `Add the measure to the dataset or fix the reference.`,\n });\n }\n\n // ── (d) chartConfig bindings resolve against the widget's selection ──\n const chartConfig = (w.chartConfig && typeof w.chartConfig === 'object')\n ? (w.chartConfig as AnyRec)\n : undefined;\n const isChartType = typeof w.type === 'string' && CHART_TYPES.has(w.type);\n\n if (chartConfig) {\n // The query result carries the widget's selected dimensions and\n // measures; resolve every chartConfig field against that shape.\n const selectedValues = new Set(values.filter((v) => measures.has(v)));\n\n const xAxis = (chartConfig.xAxis && typeof chartConfig.xAxis === 'object')\n ? (chartConfig.xAxis as AnyRec)\n : undefined;\n // A field naming an entry of the widget's own (already-validated)\n // selection is not re-reported here — rules (b)/(c) own that error.\n if (xAxis && typeof xAxis.field === 'string'\n && !dimensionNames.has(xAxis.field) && !dims.includes(xAxis.field)) {\n push({\n severity: 'error',\n rule: CHART_FIELD_UNKNOWN,\n message:\n `chartConfig.xAxis.field \"${xAxis.field}\" does not resolve to a ` +\n `dimension of dataset \"${dsName}\" (declared dimensions: ${list(dimensionNames)}).`,\n hint: `Point xAxis.field at a dataset dimension name.${suggest(xAxis.field, dimensionNames)}`,\n });\n }\n\n const measureField = (label: string, field: string): void => {\n if (values.includes(field)) return; // resolvable, or already errored via rule (c)\n const declaredButUnselected = measures.has(field);\n push({\n severity: 'error',\n rule: CHART_FIELD_UNKNOWN,\n message: declaredButUnselected\n ? `chartConfig.${label} \"${field}\" is a measure of dataset \"${dsName}\" ` +\n `but is not selected in the widget's values (${list(values)}), so the ` +\n `query result will not contain it.`\n : `chartConfig.${label} \"${field}\" does not resolve to a measure of ` +\n `dataset \"${dsName}\" (declared measures: ${list(measures.keys())}).`,\n hint: declaredButUnselected\n ? `Add \"${field}\" to the widget's values, or bind the chart to a selected measure.`\n : `Post-cutover data is keyed by the dataset's measure NAME, not the ` +\n `base column.${suggest(field, selectedValues.size > 0 ? selectedValues : measures.keys())}`,\n });\n };\n\n const yAxes = Array.isArray(chartConfig.yAxis) ? (chartConfig.yAxis as AnyRec[]) : [];\n for (let k = 0; k < yAxes.length; k++) {\n const field = yAxes[k]?.field;\n if (typeof field === 'string') measureField(`yAxis[${k}].field`, field);\n }\n const series = Array.isArray(chartConfig.series) ? (chartConfig.series as AnyRec[]) : [];\n for (let k = 0; k < series.length; k++) {\n const name = series[k]?.name;\n if (typeof name === 'string') measureField(`series[${k}].name`, name);\n }\n } else if (isChartType) {\n push({\n severity: 'warning',\n rule: CHART_CONFIG_MISSING,\n message:\n `chart-type widget ('${w.type}') has no chartConfig — the renderer ` +\n `cannot determine which measure to plot, so the series renders empty.`,\n hint:\n `Add chartConfig with xAxis.field set to a dimension (${list(dims)}) and ` +\n `yAxis[].field set to a measure name (${list(values)}). If the default ` +\n `rendering is intentional, suppress with: suppressWarnings: ['${CHART_CONFIG_MISSING}']`,\n });\n }\n\n // ── (e) table/pivot bound to a count-only, dimensionless selection ──\n if (w.type !== 'table' && w.type !== 'pivot') continue;\n // Grouped by at least one dimension → genuinely aggregated rows.\n if (dims.length > 0) continue;\n if (values.length === 0) continue;\n const resolved = values.map((v) => measures.get(v));\n // An unresolvable measure name already errored above — don't guess here.\n if (resolved.some((m) => !m)) continue;\n\n // Derived measures combine other measures; treat them as non-count even\n // when their (ignored) `aggregate` says otherwise.\n const countOnly = resolved.every((m) => m!.aggregate === 'count' && !m!.derived);\n if (!countOnly) continue;\n\n push({\n severity: 'warning',\n rule: TABLE_COUNT_ONLY,\n message:\n `a '${w.type}' widget bound to dataset \"${dsName}\" selects only count ` +\n `measure(s) (${values.join(', ')}) and no dimensions, so it renders a ` +\n `single summary row — not a per-record list.`,\n hint:\n `A flat record listing is not an analytics dataset. Model it as an ` +\n `object-bound ListView (ADR-0017) surfaced through app navigation, and ` +\n `use a 'metric' widget here if you only need the count. If a single-row ` +\n `table is intentional, add an explicit dimension or suppress with: ` +\n `suppressWarnings: ['${TABLE_COUNT_ONLY}']`,\n });\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * Build-time expression validation (ADR-0032 §Decision 1a + 1b).\n *\n * Runs at `objectstack compile`, where the whole normalized stack is in hand —\n * so flow conditions can be checked against the *resolved* object schema\n * (field existence) in addition to CEL syntax. Uses the one shared validator\n * from `@objectstack/formula`, so the verdict matches `registerFlow` and the\n * agent `validate_expression` tool exactly.\n *\n * Scope (v1): flow predicates (start/decision `config.condition` + edge\n * `condition`), object validation-rule / formula predicates, and UI action\n * `visible` / `disabled` predicates. Each error is located (flow/object/action\n * + node/edge/field) with a corrective message.\n */\n\nimport { validateExpression } from '@objectstack/formula';\n\nexport interface ExprIssue {\n where: string;\n message: string;\n source: string;\n /**\n * `error` fails the build (e.g. a bare ref in a record-scoped formula). `warning`\n * is advisory and never fails it (e.g. a possible field typo in a flattened flow\n * condition, which might be a flow variable). Absent ⇒ treat as `error`.\n */\n severity?: 'error' | 'warning';\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce an `objects` collection (array or name-keyed map) to an array. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** object name → set of its field names, for schema-aware field checks. */\nfunction buildFieldIndex(objects: AnyRec[]): Map<string, string[]> {\n const idx = new Map<string, string[]>();\n for (const obj of objects) {\n const name = typeof obj.name === 'string' ? obj.name : undefined;\n if (!name) continue;\n const fields = obj.fields;\n let names: string[] = [];\n if (Array.isArray(fields)) names = fields.map(f => (f as AnyRec).name).filter((n): n is string => typeof n === 'string');\n else if (fields && typeof fields === 'object') names = Object.keys(fields as AnyRec);\n idx.set(name, names);\n }\n return idx;\n}\n\n/**\n * object name → (field name → field type), for the #1928 tier-4 type-soundness\n * check. Handles both `fields` shapes (array of `{name, type}` and name-keyed\n * map). Fields with a non-string `type` are simply omitted (treated as `dyn`).\n */\nfunction buildFieldTypeIndex(objects: AnyRec[]): Map<string, Record<string, string>> {\n const idx = new Map<string, Record<string, string>>();\n for (const obj of objects) {\n const name = typeof obj.name === 'string' ? obj.name : undefined;\n if (!name) continue;\n const fields = obj.fields;\n const types: Record<string, string> = {};\n if (Array.isArray(fields)) {\n for (const f of fields as AnyRec[]) {\n const fn = (f as AnyRec)?.name;\n const ft = (f as AnyRec)?.type;\n if (typeof fn === 'string' && typeof ft === 'string') types[fn] = ft;\n }\n } else if (fields && typeof fields === 'object') {\n for (const [fn, def] of Object.entries(fields as AnyRec)) {\n const ft = (def as AnyRec)?.type;\n if (typeof ft === 'string') types[fn] = ft;\n }\n }\n idx.set(name, types);\n }\n return idx;\n}\n\n/**\n * Validate every predicate in the stack. Returns the list of issues (empty =\n * clean). Caller decides how to surface / whether to fail the build.\n */\nexport function validateStackExpressions(stack: AnyRec): ExprIssue[] {\n const issues: ExprIssue[] = [];\n const objects = asArray(stack.objects);\n const fieldIndex = buildFieldIndex(objects);\n const fieldTypeIndex = buildFieldTypeIndex(objects);\n\n const check = (\n where: string,\n raw: unknown,\n objectName?: string,\n scope: 'record' | 'flattened' = 'flattened',\n ): void => {\n if (raw == null) return;\n const fields = objectName ? fieldIndex.get(objectName) : undefined;\n // Field types feed the #1928 tier-4 soundness warning; only consulted for\n // `record`-scoped sites, so it is harmless to pass for flattened ones too.\n const fieldTypes = objectName ? fieldTypeIndex.get(objectName) : undefined;\n const res = validateExpression('predicate', raw as string | { dialect?: string; source?: string },\n objectName ? { objectName, fields, fieldTypes, scope } : { scope });\n for (const e of res.errors) issues.push({ where, message: e.message, source: e.source, severity: 'error' });\n for (const w of res.warnings) issues.push({ where, message: w.message, source: w.source, severity: 'warning' });\n };\n\n // ── Flows ──────────────────────────────────────────────────────────\n for (const flow of asArray(stack.flows)) {\n const flowName = typeof flow.name === 'string' ? flow.name : '(unnamed flow)';\n const nodes = Array.isArray(flow.nodes) ? (flow.nodes as AnyRec[]) : [];\n const edges = Array.isArray(flow.edges) ? (flow.edges as AnyRec[]) : [];\n // The record-change target object — `record.*` refs resolve against it.\n const startNode = nodes.find(n => n.type === 'start');\n const startCfg = (startNode?.config ?? {}) as AnyRec;\n const objectName = typeof startCfg.objectName === 'string' ? startCfg.objectName : undefined;\n\n for (const node of nodes) {\n const cfg = (node.config ?? {}) as AnyRec;\n check(`flow '${flowName}' · node '${node.id}' (${node.type}) condition`, cfg.condition, objectName);\n // #1870 — a `script` node must declare a callable target (`actionType` or\n // `function`). A node with neither is a silent no-op that otherwise passes\n // build. (Function *existence* isn't checkable here — functions are code,\n // not serialized into the artifact — so this is a structural check; the\n // runtime verifies the named function is actually registered.)\n if (node.type === 'script') {\n // `function` is canonical; `functionName` is an accepted alias.\n const fn =\n (typeof cfg.function === 'string' ? cfg.function.trim() : '') ||\n (typeof cfg.functionName === 'string' ? cfg.functionName.trim() : '');\n const action = typeof cfg.actionType === 'string' ? cfg.actionType.trim() : '';\n // Inline `config.script` (a JS body) is also a declared form — the\n // built-in runtime doesn't execute it (warned at run time), but the node\n // is not the empty no-op this check targets, so don't flag it.\n const inline = typeof cfg.script === 'string' ? cfg.script.trim() : '';\n if (!fn && !action && !inline) {\n issues.push({\n where: `flow '${flowName}' · node '${node.id}' (script) callable`,\n message:\n `script node declares neither \\`actionType\\` nor \\`function\\` — it would do nothing at runtime. ` +\n `Name a built-in action (e.g. \\`actionType: 'email'\\`) or a registered function ` +\n `(\\`function: 'my_fn'\\`, registered via \\`defineStack({ functions })\\`).`,\n source: JSON.stringify({ id: node.id, type: node.type, config: cfg }),\n });\n } else if (action === 'invoke_function' && !fn) {\n // `actionType: 'invoke_function'` is a marker that names no callable on\n // its own — the function name must be in `function`/`functionName`.\n issues.push({\n where: `flow '${flowName}' · node '${node.id}' (script) callable`,\n message:\n `script node uses \\`actionType: 'invoke_function'\\` but no \\`function\\` (or \\`functionName\\`) — ` +\n `it names no callable. Set \\`function: 'my_fn'\\` and register it via \\`defineStack({ functions })\\`.`,\n source: JSON.stringify({ id: node.id, type: node.type, config: cfg }),\n });\n }\n }\n }\n for (const edge of edges) {\n check(`flow '${flowName}' · edge '${edge.id}' (${edge.source}→${edge.target}) condition`, edge.condition, objectName);\n }\n }\n\n // ── Object validation-rule + formula predicates ────────────────────\n for (const obj of objects) {\n const objectName = typeof obj.name === 'string' ? obj.name : undefined;\n const validations = obj.validations ?? obj.validationRules;\n for (const rule of asArray(validations)) {\n const where = `object '${objectName}' · validation '${(rule.name as string) ?? '?'}'`;\n // Common predicate keys across rule shapes. Validation predicates are\n // `record`-scoped — no field flattening — so bare refs are flagged (#1928).\n check(where, rule.expression ?? rule.predicate ?? rule.condition ?? rule.formula, objectName, 'record');\n // `conditional` rules carry a nested `when` predicate (record-scoped).\n check(`${where} when`, (rule as AnyRec).when, objectName, 'record');\n }\n // Field-level formulas (computed fields) reference the same object.\n const fields = obj.fields;\n const fieldList = Array.isArray(fields)\n ? (fields as AnyRec[])\n : (fields && typeof fields === 'object' ? Object.values(fields as AnyRec) as AnyRec[] : []);\n\n // (ADR-0062 D7's `field.columnName`-on-external-objects rejection was removed\n // with `field.columnName` itself in #2377: the field no longer exists, so there\n // is no dual-source ambiguity to guard — external column mapping is `external.columnMap`.)\n\n for (const f of fieldList) {\n // Field-level conditional rules are server-enforced (rule-validator) and\n // record-scoped — a bare ref silently fails the rule (required/readonly\n // not enforced = data-integrity hole). #1928 class, same as actions.\n if (f && typeof f === 'object') {\n const fname = (f.name as string) ?? '?';\n for (const key of ['requiredWhen', 'readonlyWhen', 'conditionalRequired', 'visibleWhen'] as const) {\n check(`object '${objectName}' · field '${fname}' ${key}`, (f as AnyRec)[key], objectName, 'record');\n }\n }\n if (f && typeof f === 'object' && f.formula) {\n // formulas are `value` role (any return type), still CEL. They are\n // `record`-scoped — `record.<field>`, never bare — so flag bare refs (#1928).\n const res = validateExpression('value', f.formula as string | { dialect?: string; source?: string },\n objectName ? { objectName, fields: fieldIndex.get(objectName), fieldTypes: fieldTypeIndex.get(objectName), scope: 'record' } : { scope: 'record' });\n const fieldWhere = `object '${objectName}' · field '${(f.name as string) ?? '?'}' formula`;\n for (const e of res.errors) issues.push({ where: fieldWhere, message: e.message, source: e.source, severity: 'error' });\n for (const w of res.warnings) issues.push({ where: fieldWhere, message: w.message, source: w.source, severity: 'warning' });\n }\n }\n }\n\n // ── Action `visible` / `disabled` predicates ───────────────────────\n // Record-scoped, same as validation rules: a record-header / row action's\n // `visible` is evaluated by ActionEngine against `{ record, recordId,\n // objectName, user, … }` with fail-closed semantics, so a BARE field ref\n // (`done` instead of `record.done`) throws and the action is silently hidden\n // on every record (the trap behind the #2183 \"Mark Done never hides\" hunt).\n // Flagging it here turns that into a build error with a corrective message.\n // `disabled` may be a boolean (skip) or a predicate (check).\n const seenActions = new Set<string>();\n const checkAction = (where: string, action: AnyRec, objectName?: string): void => {\n const obj = objectName\n ?? (typeof action.objectName === 'string' ? action.objectName : undefined)\n ?? (typeof action.object === 'string' ? action.object : undefined);\n const name = typeof action.name === 'string' ? action.name : '?';\n const key = `${obj ?? ''}:${name}`;\n if (seenActions.has(key)) return; // de-dup (actions are merged onto objects AND kept top-level)\n seenActions.add(key);\n check(`${where} · action '${name}' visible`, action.visible, obj, 'record');\n if (typeof action.disabled !== 'boolean') {\n check(`${where} · action '${name}' disabled`, action.disabled, obj, 'record');\n }\n };\n for (const action of asArray(stack.actions)) {\n checkAction('stack', action);\n }\n for (const obj of objects) {\n const objectName = typeof obj.name === 'string' ? obj.name : undefined;\n for (const action of asArray(obj.actions)) {\n checkAction(`object '${objectName}'`, action, objectName);\n }\n }\n\n // ── Sharing-rule predicates (security-critical, record-scoped) ─────\n // A criteria sharing rule's `condition` decides which rows a principal sees.\n // It is evaluated against the record, so a bare ref silently changes access.\n for (const rule of asArray(stack.sharingRules)) {\n const ruleObj = typeof rule.object === 'string' ? rule.object : undefined;\n const where = `sharingRule '${(rule.name as string) ?? '?'}'${ruleObj ? ` (${ruleObj})` : ''} condition`;\n check(where, rule.condition ?? rule.criteria ?? rule.predicate, ruleObj, 'record');\n }\n\n // ── Hook `condition` predicates (record-scoped gate) ───────────────\n // A lifecycle hook's `condition` skips the handler when false; it is\n // evaluated against the record, so a bare ref silently makes the hook\n // run on every record (or never) instead of the intended subset.\n for (const hook of asArray(stack.hooks)) {\n const hookObj = typeof hook.object === 'string' ? hook.object : undefined; // array targets → no single field set\n check(`hook '${(hook.name as string) ?? '?'}'${hookObj ? ` (${hookObj})` : ''} condition`, hook.condition, hookObj, 'record');\n }\n\n return issues;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail for ADR-0047 list-view navigation modes.\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019), run from `os validate` and\n// reusable by AI authoring. It catches the \"wrong context\" authoring mistake\n// the type system alone cannot surface at author time on an object list view\n// (\"views\" mode — where the ViewTabBar owns the tab-bar role):\n// - `quickFilters` — never valid on an object list view;\n// - `userFilters` with `element: 'tabs'` (or carrying `tabs`) — the tab-bar\n// preset style is page-only; it would collide with the ViewTabBar.\n// A `dropdown` (value-chip) `userFilters` IS allowed on object views since the\n// ADR-0047 amendment (framework #2679 / objectui #2338) and is NOT flagged.\n//\n// Runs PRE-parse (on the normalizeStackInput output, before the\n// ObjectStackDefinition parse): the object-list schema (ObjectListViewSchema)\n// narrows `userFilters` to ObjectUserFiltersSchema (dropdown/toggle only), so a\n// post-parse stack has already had a `tabs` user-filter stripped and this rule\n// would never see it. The layering is deliberate — tsc rejects it at author\n// time, the schema strips it at runtime (no throw, back-compat), and this rule\n// reports it at `os validate` with a fix hint. See objectui #2338 and ADR-0047.\n\nexport type ListViewModeSeverity = 'error' | 'warning';\n\nexport interface ListViewModeFinding {\n severity: ListViewModeSeverity;\n rule: string;\n /** Human-readable location, e.g. `object \"task\" › listViews.my_pending`. */\n where: string;\n /** Config path, e.g. `objects[0].listViews.my_pending.userFilters`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule id (registry entry).\nexport const LIST_VIEW_FILTERS_IN_VIEWS_MODE = 'list-view-filters-in-views-mode';\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce an array-or-name-keyed-map collection to an array (name injected). */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({\n name,\n ...(def as AnyRec),\n }));\n }\n return [];\n}\n\n/** Emit a finding for each wrong-context filter control on a single list-view def. */\nfunction scanView(\n view: unknown,\n where: string,\n path: string,\n out: ListViewModeFinding[],\n): void {\n if (!view || typeof view !== 'object') return;\n const rec = view as AnyRec;\n\n // `quickFilters` is never valid on an object list view.\n if (rec.quickFilters != null) {\n out.push({\n severity: 'error',\n rule: LIST_VIEW_FILTERS_IN_VIEWS_MODE,\n where,\n path: `${path}.quickFilters`,\n message:\n '`quickFilters` is a page filters-mode control and is ignored on an object ' +\n 'list view (\"views\" mode) — the ViewTabBar owns nav here.',\n hint:\n 'Move `quickFilters` to a page list (InterfaceListPage, \"filters\" mode), or ' +\n 'remove it. See ADR-0047.',\n });\n }\n\n // `userFilters` is allowed on object views ONLY as `dropdown` (value chips).\n // The `tabs` preset style — or any `userFilters` carrying `tabs` — collides\n // with the ViewTabBar and stays page-only.\n const uf = rec.userFilters;\n if (uf && typeof uf === 'object') {\n const ufRec = uf as AnyRec;\n if (ufRec.element === 'tabs' || ufRec.tabs != null) {\n out.push({\n severity: 'error',\n rule: LIST_VIEW_FILTERS_IN_VIEWS_MODE,\n where,\n path: `${path}.userFilters`,\n message:\n '`userFilters` with `element: \"tabs\"` is page-only and is ignored on an ' +\n 'object list view (\"views\" mode) — it would collide with the ViewTabBar.',\n hint:\n 'Use `listViews` for named presets on an object (each becomes a segmented ' +\n 'tab), switch to `element: \"dropdown\"` for value chips, or move the `tabs` ' +\n 'filter to a page list (InterfaceListPage, \"filters\" mode). See ADR-0047.',\n });\n }\n }\n}\n\n/** Scan a `listViews` record (name → list-view def). */\nfunction scanListViews(\n listViews: unknown,\n wherePrefix: string,\n pathPrefix: string,\n out: ListViewModeFinding[],\n): void {\n if (!listViews || typeof listViews !== 'object') return;\n for (const [name, view] of Object.entries(listViews as AnyRec)) {\n scanView(\n view,\n `${wherePrefix} › listViews.${name}`,\n `${pathPrefix}.listViews.${name}`,\n out,\n );\n }\n}\n\n/**\n * Flag ADR-0047 \"views\" mode violations on an object's built-in named views or a\n * `defineView` default `list` / named `listViews`: `quickFilters`, or a `tabs`\n * `userFilters`. A `dropdown` `userFilters` is allowed and not flagged. Returns\n * the list of findings (empty = clean). Caller decides how to surface / whether\n * to fail the build.\n *\n * Feed the PRE-parse stack (normalizeStackInput output) — see file header.\n */\nexport function validateListViewMode(stack: AnyRec): ListViewModeFinding[] {\n const out: ListViewModeFinding[] = [];\n\n // Object built-in named views (object.zod.ts `listViews`).\n asArray(stack.objects).forEach((obj, i) => {\n const label = typeof obj.name === 'string' ? `object \"${obj.name}\"` : `objects[${i}]`;\n scanListViews(obj.listViews, label, `objects[${i}]`, out);\n });\n\n // `defineView` aggregates (stack `views`: default `list` + named `listViews`).\n asArray(stack.views).forEach((view, i) => {\n const named =\n typeof view.objectName === 'string'\n ? view.objectName\n : typeof view.name === 'string'\n ? view.name\n : undefined;\n const label = named ? `view \"${named}\"` : `views[${i}]`;\n scanView(view.list, `${label} › list`, `views[${i}].list`, out);\n scanListViews(view.listViews, label, `views[${i}]`, out);\n });\n\n return out;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail for auto-launched flow trigger wiring (2026-07-17\n// third-party eval: a record-change flow that silently never fires).\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019), run from `os validate` and\n// reusable by AI authoring. It catches the two authoring mistakes that produce\n// a flow which LOOKS armed but never launches — with zero runtime output:\n//\n// 1. `objectName` mismatch — the start node targets an object name that is\n// not defined in this stack. The runtime binds an ObjectQL hook filtered\n// to that exact name; if nobody writes it, the flow never fires. Names\n// match exactly (`eval_app_candidate`, not `candidate`). Objects owned by\n// other packages (`sys_*`, dependency packages) are legitimate targets,\n// so this is a warning with the cross-package caveat, not an error.\n//\n// 2. `status: 'draft'` on an auto-triggered flow — the schema default when\n// no status is authored (defineFlow parses at definition time, so by the\n// time this rule runs an unauthored status is indistinguishable from an\n// explicit 'draft'). Either way the intent is ambiguous: the engine still\n// binds and fires draft flows (only `obsolete`/`invalid` disable), which\n// surprises authors in both directions. Declare `'active'` to arm\n// deliberately or `'obsolete'` to disable. Only auto-triggered flows are\n// flagged (manual/screen flows have no arming semantics to be unclear\n// about).\n\nexport type FlowTriggerReadinessSeverity = 'error' | 'warning';\n\nexport interface FlowTriggerReadinessFinding {\n severity: FlowTriggerReadinessSeverity;\n rule: string;\n /** Human-readable location, e.g. `flow \"notify_on_done\" › start node`. */\n where: string;\n /** Config path, e.g. `flows[0].nodes[0].config.objectName`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule ids (registry entries).\nexport const FLOW_TRIGGER_UNKNOWN_OBJECT = 'flow-trigger-unknown-object';\nexport const FLOW_DRAFT_STATUS_AMBIGUOUS = 'flow-draft-status-ambiguous';\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce an array-or-name-keyed-map collection to an array (name injected). */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({\n name,\n ...(def as AnyRec),\n }));\n }\n return [];\n}\n\n/** The start node of a flow definition, if any. */\nfunction startNodeOf(flow: AnyRec): { node: AnyRec; index: number } | undefined {\n const nodes = Array.isArray(flow.nodes) ? (flow.nodes as AnyRec[]) : [];\n const index = nodes.findIndex((n) => n?.type === 'start');\n return index >= 0 ? { node: nodes[index], index } : undefined;\n}\n\n/**\n * Validate auto-launched flow trigger wiring against the stack definition.\n * Pure and dependency-free; safe on pre- or post-parse stacks.\n */\nexport function validateFlowTriggerReadiness(stack: AnyRec): FlowTriggerReadinessFinding[] {\n const findings: FlowTriggerReadinessFinding[] = [];\n const flows = asArray(stack.flows);\n if (flows.length === 0) return findings;\n\n const objectNames = new Set(\n asArray(stack.objects)\n .map((o) => (typeof o.name === 'string' ? o.name : undefined))\n .filter((n): n is string => !!n),\n );\n\n flows.forEach((flow, flowIndex) => {\n const flowName = typeof flow.name === 'string' ? flow.name : `#${flowIndex}`;\n const start = startNodeOf(flow);\n const config = (start?.node.config ?? {}) as AnyRec;\n const triggerType = typeof config.triggerType === 'string' ? config.triggerType : undefined;\n const isRecordTriggered = !!triggerType && triggerType.startsWith('record-');\n const isTimeRelative = config.timeRelative != null && typeof config.timeRelative === 'object';\n const isAutoTriggered =\n isRecordTriggered || triggerType === 'api' || config.schedule != null ||\n isTimeRelative || flow.type === 'schedule' || flow.type === 'api';\n\n // 1. Record-triggered flow targeting an object this stack does not define.\n if (isRecordTriggered && start) {\n const objectName = typeof config.objectName === 'string' ? config.objectName : undefined;\n if (objectName && !objectNames.has(objectName) && !objectName.startsWith('sys_')) {\n findings.push({\n severity: 'warning',\n rule: FLOW_TRIGGER_UNKNOWN_OBJECT,\n where: `flow \"${flowName}\" › start node`,\n path: `flows[${flowIndex}].nodes[${start.index}].config.objectName`,\n message:\n `targets object '${objectName}', which this stack does not define — if the name is wrong, ` +\n `the flow will never fire (and the runtime stays silent about it).`,\n hint:\n `Object names match exactly. Check config.objectName against the object's registered name ` +\n `(e.g. 'app_candidate', not 'candidate'). If the object comes from another installed package, ` +\n `this warning can be ignored.`,\n });\n }\n }\n\n // 1b. Time-relative flow sweeping an object this stack does not define. Like\n // the record-change case, a wrong object name makes the sweep match\n // nothing forever with no runtime output.\n if (isTimeRelative && start) {\n const tr = config.timeRelative as AnyRec;\n const objectName = typeof tr.object === 'string' ? tr.object : undefined;\n if (objectName && !objectNames.has(objectName) && !objectName.startsWith('sys_')) {\n findings.push({\n severity: 'warning',\n rule: FLOW_TRIGGER_UNKNOWN_OBJECT,\n where: `flow \"${flowName}\" › start node`,\n path: `flows[${flowIndex}].nodes[${start.index}].config.timeRelative.object`,\n message:\n `sweeps object '${objectName}', which this stack does not define — if the name is wrong, ` +\n `the sweep will match nothing (and the runtime stays quiet about it).`,\n hint:\n `Object names match exactly. Check config.timeRelative.object against the object's registered name. ` +\n `If the object comes from another installed package, this warning can be ignored.`,\n });\n }\n }\n\n // 2. Auto-triggered flow whose status is 'draft' — authored or defaulted\n // (defineFlow parses at definition time, so the two are the same here).\n if (isAutoTriggered && (flow.status == null || flow.status === 'draft')) {\n findings.push({\n severity: 'warning',\n rule: FLOW_DRAFT_STATUS_AMBIGUOUS,\n where: `flow \"${flowName}\"`,\n path: `flows[${flowIndex}].status`,\n message:\n `has status 'draft' (the default when none is authored). Draft flows DO still fire their ` +\n `triggers (only 'obsolete'/'invalid' disable), so the intent is ambiguous.`,\n hint: `Declare status: 'active' to arm it deliberately, or status: 'obsolete' to disable it.`,\n });\n }\n });\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail for the `defineView` container shape.\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019), run from `os validate`. It\n// catches the \"flat view object\" authoring mistake the schema alone cannot\n// surface: `ViewSchema` is a container (`{ list, form, listViews, formViews }`)\n// whose slots are all optional, and Zod strips unknown keys — so a flat list\n// view (`{ name: 'all_tasks', label, type: 'grid', columns: [...] }`) parses\n// to an EMPTY container. The stack validates, the loader finds nothing to\n// expand, and the Console silently renders no view (no switcher entry). The\n// third-party 15.1 evaluation hit exactly this via the old docs.\n//\n// Runs PRE-parse (on the normalizeStackInput output, before the\n// ObjectStackDefinition parse): post-parse the flat keys are already stripped\n// and the mistake is indistinguishable from an intentionally empty container.\n//\n// Independent ViewItems (`viewKind` + `config`) are legal `views: []` entries\n// (the loader registers them as-is) and are not flagged.\n\nexport type ViewContainerSeverity = 'error' | 'warning';\n\nexport interface ViewContainerFinding {\n severity: ViewContainerSeverity;\n rule: string;\n /** Human-readable location, e.g. `views[0] (\"all_tasks\")`. */\n where: string;\n /** Config path, e.g. `views[0]`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule id (registry entry).\nexport const VIEW_CONTAINER_SHAPE = 'view-container-shape';\n\ntype AnyRec = Record<string, unknown>;\n\nconst CONTAINER_SLOT_KEYS = ['list', 'form', 'listViews', 'formViews'] as const;\n\n/** Coerce an array-or-name-keyed-map collection to indexed entries. */\nfunction asEntries(v: unknown): Array<{ key: string; value: unknown }> {\n if (Array.isArray(v)) return v.map((value, i) => ({ key: `[${i}]`, value }));\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, value]) => ({ key: `.${name}`, value }));\n }\n return [];\n}\n\n/** Number of views a parsed-or-raw container actually carries. */\nfunction containerViewCount(rec: AnyRec): number {\n const named = (slot: unknown): number =>\n slot && typeof slot === 'object' && !Array.isArray(slot) ? Object.keys(slot as AnyRec).length : 0;\n return (rec.list ? 1 : 0) + (rec.form ? 1 : 0) + named(rec.listViews) + named(rec.formViews);\n}\n\n/**\n * Validate that every stack-level `views` entry is a real view container (or\n * an independent ViewItem). Flat list-view objects and view-less containers\n * are reported as errors with a wrap-it fix hint.\n */\nexport function validateViewContainers(stack: Record<string, unknown>): ViewContainerFinding[] {\n const out: ViewContainerFinding[] = [];\n if (!stack || typeof stack !== 'object') return out;\n\n for (const { key, value } of asEntries((stack as AnyRec).views)) {\n // Non-object entries are the schema step's problem, not this rule's.\n if (!value || typeof value !== 'object' || Array.isArray(value)) continue;\n const rec = value as AnyRec;\n\n // Independent ViewItem (`viewKind` discriminator) — registered as-is.\n if (rec.viewKind != null) continue;\n\n if (containerViewCount(rec) > 0) continue;\n\n const label = typeof rec.name === 'string' ? ` (\"${rec.name}\")` : '';\n const hasContainerSlot = CONTAINER_SLOT_KEYS.some((k) => k in rec);\n // Flat list-view fingerprint: view-ish keys at the top level where the\n // container slots should be.\n const looksFlat = !hasContainerSlot\n && ['type', 'columns', 'data', 'filter', 'sort'].some((k) => k in rec);\n\n out.push({\n severity: 'error',\n rule: VIEW_CONTAINER_SHAPE,\n where: `views${key}${label}`,\n path: `views${key}`,\n message: looksFlat\n ? 'Flat list-view object is not a view container: `ViewSchema` strips its keys, '\n + 'so it parses to an EMPTY container — zero views register and the Console '\n + 'renders no view for it.'\n : 'View container defines no views — all of `list` / `form` / `listViews` / '\n + '`formViews` are absent or empty, so nothing registers.',\n hint: 'Wrap every view in a defineView container: defineView({ list: { type, data, '\n + 'columns, ... }, listViews: { ... }, formViews: { ... } }). See '\n + 'examples/app-showcase/src/ui/views/task.view.ts.',\n });\n }\n\n return out;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time diagnostics for the SDUI scoped-styling model (ADR-0065).\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019): the same bar holds for\n// hand-authored and AI-generated pages, run from `os validate`/`compile` and\n// reusable by AI authoring. It catches the deterministic ways a `responsiveStyles`\n// block silently fails or drifts — the class of mistake an AI author is most\n// likely to make — *before* render, with actionable hints it can self-correct on.\n//\n// What it does NOT catch: whether the result looks good. Visual/semantic quality\n// (contrast, balance, \"is it ugly\") is only catchable by rendering + a VLM gate,\n// which is a separate, render-time concern (ADR-0065 §Decision-5).\n\nexport type StyleSeverity = 'error' | 'warning';\n\nexport interface StyleFinding {\n severity: StyleSeverity;\n rule: string;\n /** Human-readable location, e.g. `page \"pricing\" › node \"plan_solo\"`. */\n where: string;\n /** Config path, e.g. `pages[0].regions[0].components[1]`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule ids (registry entries).\nexport const STYLE_NODE_MISSING_ID = 'style-node-missing-id';\nexport const STYLE_CLASSNAME_TAILWIND = 'style-classname-tailwind';\nexport const STYLE_RESPONSIVE_NO_BASE = 'style-responsive-no-base';\nexport const STYLE_UNKNOWN_CSS_PROPERTY = 'style-unknown-css-property';\nexport const STYLE_UNKNOWN_TOKEN = 'style-unknown-token';\n\ntype AnyRec = Record<string, unknown>;\n\nconst BREAKPOINTS = ['large', 'medium', 'small', 'xsmall'] as const;\n\n/** SDUI design-token palette (ADR-0065) + base theme tokens, referenced as\n * `var(--name)`. Authors should resolve values against these. Kept in sync with\n * `apps/console/src/index.css` / `@object-ui/components` `:root`. */\nconst KNOWN_TOKENS = new Set<string>([\n // SDUI tokens\n 'space-1', 'space-2', 'space-3', 'space-4', 'space-5', 'space-6', 'space-8', 'space-10', 'space-12',\n 'radius', 'radius-sm', 'radius-md', 'radius-lg', 'radius-xl',\n 'shadow-sm', 'shadow-md', 'shadow-lg',\n 'surface', 'surface-sunken', 'text-strong', 'text-muted', 'brand', 'brand-foreground', 'hairline',\n // Base theme tokens (shadcn) — usually wrapped as hsl(var(--x)).\n 'background', 'foreground', 'card', 'card-foreground', 'popover', 'popover-foreground',\n 'primary', 'primary-foreground', 'secondary', 'secondary-foreground',\n 'muted', 'muted-foreground', 'accent', 'accent-foreground',\n 'destructive', 'destructive-foreground', 'border', 'input', 'ring',\n 'success', 'success-foreground', 'warning', 'warning-foreground',\n 'chart-1', 'chart-2', 'chart-3', 'chart-4', 'chart-5',\n]);\n\n/** Common CSS properties (camelCase) an SDUI block realistically sets. Generous\n * on purpose: an unknown property is only a *warning* (typo catcher), never a\n * blocker. Custom properties (`--x`) are always allowed. */\nconst KNOWN_CSS_PROPERTIES = new Set<string>([\n 'display', 'position', 'top', 'right', 'bottom', 'left', 'inset', 'zIndex', 'overflow', 'overflowX', 'overflowY', 'visibility', 'boxSizing', 'float', 'clear',\n 'width', 'height', 'minWidth', 'minHeight', 'maxWidth', 'maxHeight', 'aspectRatio',\n 'margin', 'marginTop', 'marginRight', 'marginBottom', 'marginLeft', 'marginInline', 'marginBlock',\n 'padding', 'paddingTop', 'paddingRight', 'paddingBottom', 'paddingLeft', 'paddingInline', 'paddingBlock',\n 'flex', 'flexDirection', 'flexWrap', 'flexGrow', 'flexShrink', 'flexBasis', 'alignItems', 'alignContent', 'alignSelf', 'justifyContent', 'justifyItems', 'justifySelf', 'gap', 'rowGap', 'columnGap', 'order', 'placeItems', 'placeContent',\n 'grid', 'gridTemplate', 'gridTemplateColumns', 'gridTemplateRows', 'gridTemplateAreas', 'gridColumn', 'gridRow', 'gridArea', 'gridAutoFlow', 'gridAutoColumns', 'gridAutoRows',\n 'color', 'backgroundColor', 'background', 'backgroundImage', 'backgroundSize', 'backgroundPosition', 'backgroundRepeat', 'backgroundClip', 'opacity', 'mixBlendMode',\n 'fontSize', 'fontWeight', 'fontFamily', 'fontStyle', 'lineHeight', 'letterSpacing', 'textAlign', 'textTransform', 'textDecoration', 'textOverflow', 'whiteSpace', 'wordBreak', 'overflowWrap', 'fontVariantNumeric', 'verticalAlign', 'textShadow',\n 'border', 'borderTop', 'borderRight', 'borderBottom', 'borderLeft', 'borderColor', 'borderWidth', 'borderStyle', 'borderRadius', 'borderTopLeftRadius', 'borderTopRightRadius', 'borderBottomLeftRadius', 'borderBottomRightRadius', 'outline', 'outlineOffset',\n 'boxShadow', 'transform', 'transformOrigin', 'transition', 'transitionProperty', 'transitionDuration', 'transitionTimingFunction', 'transitionDelay', 'animation', 'filter', 'backdropFilter', 'willChange',\n 'cursor', 'pointerEvents', 'userSelect', 'objectFit', 'objectPosition', 'content',\n]);\n\nconst VAR_RE = /var\\(\\s*--([a-zA-Z0-9-]+)\\s*[,)]/g;\n\n// High-precision Tailwind-utility detection. A `className` in page metadata is\n// \"Tailwind-looking\" if any token is a responsive/state variant, an arbitrary\n// `[…]` value, a known utility stem followed by a Tailwind *value* (number /\n// fraction / size keyword), or a bare layout utility. Tuned to NOT trip on\n// ordinary custom class names (e.g. `my-custom-scope`, `os-s-plan_solo`).\nconst TW_VARIANT = /^(sm|md|lg|xl|2xl|hover|focus|active|disabled|dark|group-hover|peer-[a-z]+|first|last|odd|even):/;\nconst TW_STEM_VALUE = /^-?(p|m|px|py|pt|pb|pl|pr|mx|my|mt|mb|ml|mr|gap|gap-x|gap-y|space-x|space-y|w|h|min-w|max-w|min-h|max-h|size|text|leading|tracking|bg|border|rounded|shadow|ring|opacity|inset|top|bottom|left|right|z|order|col|row|grid-cols|grid-rows|basis)-(\\d+(\\.\\d+)?|\\d+\\/\\d+|px|full|auto|none|screen|min|max|fit|xs|sm|md|lg|xl|2xl|3xl|4xl|5xl|6xl)$/;\nconst TW_BARE = /^(flex|grid|block|inline|inline-block|inline-flex|hidden|contents|table|flow-root|grow|shrink|truncate|italic|underline|uppercase|lowercase|capitalize|antialiased|absolute|relative|fixed|sticky|static|isolate|flex-col|flex-row|flex-wrap|flex-nowrap|items-center|items-start|items-end|items-stretch|justify-center|justify-between|justify-around|justify-start|justify-end|text-center|text-left|text-right|font-bold|font-semibold|font-medium|font-normal|tabular-nums)$/;\n\nfunction looksLikeTailwind(className: string): boolean {\n return className.split(/\\s+/).some((tok) => {\n if (!tok) return false;\n if (TW_VARIANT.test(tok)) return true;\n if (/\\[[^\\]]+\\]/.test(tok)) return true; // arbitrary value, e.g. p-[13px]\n if (TW_STEM_VALUE.test(tok)) return true;\n if (TW_BARE.test(tok)) return true;\n return false;\n });\n}\n\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** Child nodes can hang off `children`, `properties.children`, `body`, or\n * `properties.body` depending on block type — collect them all. */\nfunction childrenOf(node: AnyRec): AnyRec[] {\n const props = (node.properties as AnyRec) ?? {};\n const out: AnyRec[] = [];\n for (const c of [node.children, props.children, node.body, props.body]) {\n if (Array.isArray(c)) out.push(...(c.filter((x) => x && typeof x === 'object') as AnyRec[]));\n }\n return out;\n}\n\nfunction checkNode(node: AnyRec, pageName: string, path: string, findings: StyleFinding[]): void {\n const id = typeof node.id === 'string' ? node.id : undefined;\n const type = typeof node.type === 'string' ? node.type : 'node';\n const where = `page \"${pageName}\" › ${id ? `node \"${id}\"` : `<${type}>`}`;\n const rs = node.responsiveStyles as AnyRec | undefined;\n const hasRs = !!rs && typeof rs === 'object' && BREAKPOINTS.some((b) => rs[b]);\n\n // (1) responsiveStyles needs an id to scope to — else the CSS is dropped.\n if (hasRs && !id) {\n findings.push({\n severity: 'error', rule: STYLE_NODE_MISSING_ID, where, path,\n message: `Node has responsiveStyles but no \\`id\\`; scoped CSS cannot be generated and the styles are silently dropped.`,\n hint: `Add a stable \\`id\\` to this node.`,\n });\n }\n\n // (2) responsive breakpoint without a `large` base → unstyled at desktop.\n if (hasRs && !rs!.large && BREAKPOINTS.slice(1).some((b) => rs![b])) {\n findings.push({\n severity: 'warning', rule: STYLE_RESPONSIVE_NO_BASE, where, path,\n message: `responsiveStyles sets a smaller breakpoint but no \\`large\\` base; the node is unstyled at desktop width.`,\n hint: `Put the unconditional/base styles under \\`responsiveStyles.large\\` (desktop-first).`,\n });\n }\n\n // (3) className that looks like Tailwind → won't render from metadata.\n if (typeof node.className === 'string' && node.className.trim() && looksLikeTailwind(node.className)) {\n findings.push({\n severity: 'warning', rule: STYLE_CLASSNAME_TAILWIND, where, path,\n message: `\\`className\\` contains Tailwind-looking utilities (\"${node.className.trim().slice(0, 60)}\"); these are not compiled from metadata and will silently do nothing.`,\n hint: `Style this node with \\`responsiveStyles\\` + design tokens instead of \\`className\\` (ADR-0065).`,\n });\n }\n\n // (4)+(5) unknown CSS property / unknown token inside each breakpoint map.\n if (rs && typeof rs === 'object') {\n for (const bp of BREAKPOINTS) {\n const map = rs[bp] as AnyRec | undefined;\n if (!map || typeof map !== 'object') continue;\n for (const [prop, value] of Object.entries(map)) {\n if (!prop.startsWith('--') && !KNOWN_CSS_PROPERTIES.has(prop)) {\n findings.push({\n severity: 'warning', rule: STYLE_UNKNOWN_CSS_PROPERTY, where, path: `${path}.responsiveStyles.${bp}`,\n message: `Unknown CSS property \"${prop}\" (typo?); if unintended it will not apply.`,\n hint: `Use a camelCase CSS property name (e.g. \\`flexDirection\\`, \\`backgroundColor\\`).`,\n });\n }\n if (typeof value === 'string') {\n let m: RegExpExecArray | null;\n VAR_RE.lastIndex = 0;\n while ((m = VAR_RE.exec(value))) {\n const token = m[1];\n if (!KNOWN_TOKENS.has(token) && !token.startsWith('tw-')) {\n findings.push({\n severity: 'warning', rule: STYLE_UNKNOWN_TOKEN, where, path: `${path}.responsiveStyles.${bp}.${prop}`,\n message: `References unknown design token \\`var(--${token})\\` (typo?); it will not resolve.`,\n hint: `Use a token from the ADR-0065 palette (e.g. \\`var(--space-6)\\`, \\`var(--surface)\\`, \\`hsl(var(--primary))\\`).`,\n });\n }\n }\n }\n }\n }\n }\n\n // Recurse.\n const kids = childrenOf(node);\n for (let i = 0; i < kids.length; i++) {\n checkNode(kids[i], pageName, `${path}.children[${i}]`, findings);\n }\n}\n\n/**\n * Validate every page's component tree for SDUI styling correctness (ADR-0065).\n * Returns findings (empty = clean). `error` findings describe styles that are\n * silently dropped and should fail validate/build; `warning` findings are\n * advisory (typos, drift, footguns).\n */\nexport function validateResponsiveStyles(stack: AnyRec): StyleFinding[] {\n const findings: StyleFinding[] = [];\n const pages = asArray(stack.pages);\n for (let p = 0; p < pages.length; p++) {\n const page = pages[p];\n const pageName = typeof page.name === 'string' ? page.name : `pages[${p}]`;\n const regions = asArray(page.regions);\n for (let r = 0; r < regions.length; r++) {\n const components = asArray(regions[r].components);\n for (let c = 0; c < components.length; c++) {\n checkNode(components[c], pageName, `pages[${p}].regions[${r}].components[${c}]`, findings);\n }\n }\n }\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time diagnostics for AI-authored HTML-source pages (ADR-0080).\n//\n// Applies to `kind:'html'` (and its deprecated alias `kind:'jsx'`) — the tier\n// whose `source` is constrained JSX/HTML parsed (never executed) to the tree.\n// `kind:'react'` (ADR-0081) is intentionally NOT linted here: its source is\n// real JavaScript, not constrained JSX, so the constrained parser would\n// false-error on hooks / expressions.\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019), run from `os validate` / `os\n// build`. An html page's `source` is a constrained JSX/Tailwind string\n// compiled (parsed, never executed) to the SDUI tree at save time. This gate\n// parses it at author time so malformed source fails loudly (ADR-0078) instead\n// of being stored and breaking only at render.\n//\n// Scope: parse-level — syntax, tag matching, and forbidden constructs (event\n// handlers, dangerouslySetInnerHTML). Full component/prop whitelist validation\n// needs the registry manifest (a cross-repo artifact); when that is wired,\n// thread it through `compile()` here. Until then this catches the structural\n// class of error an AI author is most likely to emit.\n\nimport { parseJsx, compile, type Manifest } from '@objectstack/sdui-parser';\n\nexport type JsxPageSeverity = 'error' | 'warning';\n\nexport interface JsxPageFinding {\n severity: JsxPageSeverity;\n rule: string;\n /** Human-readable location, e.g. `page \"command_center\" › <flex>`. */\n where: string;\n /** Config path, e.g. `pages[3].source`. */\n path: string;\n message: string;\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\nconst asArray = (v: unknown): AnyRec[] => (Array.isArray(v) ? (v as AnyRec[]) : []);\n\nexport function validateJsxPages(stack: AnyRec, opts: { manifest?: Manifest } = {}): JsxPageFinding[] {\n const findings: JsxPageFinding[] = [];\n const pages = asArray(stack.pages);\n for (let p = 0; p < pages.length; p++) {\n const page = pages[p];\n // html tier (+ deprecated 'jsx' alias). react pages are not constrained JSX.\n if (!page || (page.kind !== 'html' && page.kind !== 'jsx')) continue;\n const name = String(page.name ?? `#${p}`);\n const source = page.source;\n if (typeof source !== 'string' || source.trim() === '') {\n // (PageSchema's superRefine also covers this; keep it for the build path.)\n findings.push({\n severity: 'error',\n rule: 'jsx-page-empty-source',\n where: `page \"${name}\"`,\n path: `pages[${p}].source`,\n message: `kind:'${page.kind}' page has no \\`source\\`.`,\n hint: 'Author the page as a constrained JSX/Tailwind string in `source`.',\n });\n continue;\n }\n // With a component manifest, do full validation (unknown component, missing/\n // wrong prop, bad enum, bindings); without it, parse-level (syntax/structure).\n const { diagnostics } = opts.manifest ? compile(source, opts.manifest) : parseJsx(source);\n for (const d of diagnostics) {\n findings.push({\n severity: d.severity,\n rule: `jsx-${d.code}`,\n where: d.tag ? `page \"${name}\" › <${d.tag}>` : `page \"${name}\"`,\n path: `pages[${p}].source`,\n message: d.message,\n hint: 'The source is parsed (never executed) and compiled to the SDUI tree at save time — fix the JSX.',\n });\n }\n }\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time syntax gate for `kind:'react'` pages (ADR-0081).\n//\n// A react page's `source` is REAL JavaScript/JSX executed at render by the\n// runtime — so the constrained JSX parser (validate-jsx-pages) cannot check it.\n// We instead transpile it with Sucrase (the same transpiler the runtime uses),\n// transpile-ONLY — never executed — to surface syntax errors at `os build`\n// instead of at render (ADR-0078: fail loudly at author time). It does NOT\n// validate runtime behaviour (a transpiling page can still throw at render);\n// the render-time error boundary owns that.\n\nimport { createRequire } from 'node:module';\nimport type { transform as sucraseTransform } from 'sucrase';\n\n// Sucrase must NOT be imported at module top level: it is ~1.5 MB of CJS\n// (~16 ms cold require), and @objectstack/lint sits on the kernel boot path —\n// while this gate only runs when a `kind:'react'` page is actually validated\n// (rare, trusted tier). Same boot-path contract as the TypeScript compiler in\n// validate-react-page-props.ts: loaded lazily, on first use, staying a regular\n// dependency in package.json. Guarded by lazy-deps.test.ts.\n//\n// `node:module` is a Node builtin, untouched by esbuild/tsup, so the static\n// `createRequire` import survives bundling; the `createRequire(...)` call is\n// deferred because `import.meta.url` is rewritten to an empty stub in the CJS\n// build (same pattern as driver-sqlite-wasm's knex-wasm-dialect).\nlet cachedTransform: typeof sucraseTransform | null = null;\nfunction loadSucraseTransform(): typeof sucraseTransform {\n if (cachedTransform) return cachedTransform;\n const anchor =\n typeof import.meta !== 'undefined' && import.meta.url\n ? import.meta.url\n : typeof __filename !== 'undefined'\n ? __filename\n : process.cwd() + '/';\n try {\n cachedTransform = (createRequire(anchor)('sucrase') as { transform: typeof sucraseTransform }).transform;\n } catch (err) {\n throw new Error(\n `@objectstack/lint: validating a kind:'react' page requires the \"sucrase\" package, which could not be loaded ` +\n `(${err instanceof Error ? err.message : String(err)}). It is a declared dependency of @objectstack/lint — ` +\n `if this deployment prunes packages, keep \"sucrase\" in the image; it is only loaded when a react-source page is validated.`,\n );\n }\n return cachedTransform;\n}\n\nexport type ReactPageSeverity = 'error' | 'warning';\n\nexport interface ReactPageFinding {\n severity: ReactPageSeverity;\n rule: string;\n where: string;\n path: string;\n message: string;\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\nconst asArray = (v: unknown): AnyRec[] => (Array.isArray(v) ? (v as AnyRec[]) : []);\n\nexport function validateReactPages(stack: AnyRec): ReactPageFinding[] {\n const findings: ReactPageFinding[] = [];\n const pages = asArray(stack.pages);\n for (let p = 0; p < pages.length; p++) {\n const page = pages[p];\n if (!page || page.kind !== 'react') continue;\n const name = String(page.name ?? `#${p}`);\n const source = page.source;\n if (typeof source !== 'string' || source.trim() === '') {\n findings.push({\n severity: 'error',\n rule: 'react-page-empty-source',\n where: `page \"${name}\"`,\n path: `pages[${p}].source`,\n message: \"kind:'react' page has no `source`.\",\n hint: 'Author the page as a real React component string in `source`.',\n });\n continue;\n }\n // Outside the try below on purpose: a missing transpiler must surface as\n // an error, not be swallowed as a syntax finding.\n const transform = loadSucraseTransform();\n try {\n // transpile-only (no eval) — catches syntax errors, unterminated JSX, etc.\n transform(source, { transforms: ['jsx', 'typescript'], production: true });\n } catch (err) {\n const message = err instanceof Error ? err.message : String(err);\n findings.push({\n severity: 'error',\n rule: 'react-page-syntax',\n where: `page \"${name}\"`,\n path: `pages[${p}].source`,\n message: `kind:'react' source has a syntax error: ${message.split('\\n')[0]}`,\n hint: 'The source is transpiled (never executed) at build to catch syntax errors early — fix the JS/JSX.',\n });\n }\n }\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time prop check for `kind:'react'` pages (ADR-0081 Phase 2). The syntax\n// gate (validate-react-pages) confirms the source parses; this confirms the\n// AUTHOR USED THE COMPONENT CONTRACT correctly — it parses the real JSX with the\n// TypeScript compiler, finds usages of the injected blocks (<ObjectForm>,\n// <ListView>, …), and checks each against the react-tier contract\n// (REACT_BLOCKS in @objectstack/spec):\n//\n// - missing a required binding prop (e.g. <ObjectForm> with no objectName)\n// → error. (Only the React-enforceable overlay props are required-checked;\n// a spread `{...props}` escapes the check since props may come from it.)\n// - a prop that is a near-miss (edit distance ≤ 2) of a known prop\n// (e.g. `onSucces` → `onSuccess`) → warning. We do NOT flag arbitrary\n// unknown props (the contract's data props are a curated subset) — only the\n// likely typos, to keep false positives near zero.\n\nimport { createRequire } from 'node:module';\nimport type ts from 'typescript';\nimport { REACT_BLOCKS } from '@objectstack/spec/ui';\n\n// The TypeScript compiler must NOT be imported at module top level: it is\n// ~9 MB of CJS (~70 ms+ to parse, worse on container cold starts), and\n// @objectstack/lint sits on the kernel boot path — while this gate only runs\n// when a `kind:'react'` page is actually validated (rare, trusted tier). An\n// eager import also hard-crashes boot in deployments that prune the package\n// from the image (cloud's Docker pruner did exactly that). So the compiler is\n// loaded lazily, on first use, and stays a regular dependency in package.json.\n// Guarded by lazy-deps.test.ts.\n//\n// `node:module` is a Node builtin, untouched by esbuild/tsup, so the static\n// `createRequire` import survives bundling; the `createRequire(...)` call is\n// deferred because `import.meta.url` is rewritten to an empty stub in the CJS\n// build (same pattern as driver-sqlite-wasm's knex-wasm-dialect).\nlet cachedTs: typeof ts | null = null;\nfunction loadTypeScript(): typeof ts {\n if (cachedTs) return cachedTs;\n const anchor =\n typeof import.meta !== 'undefined' && import.meta.url\n ? import.meta.url\n : typeof __filename !== 'undefined'\n ? __filename\n : process.cwd() + '/';\n try {\n cachedTs = createRequire(anchor)('typescript') as typeof ts;\n } catch (err) {\n throw new Error(\n `@objectstack/lint: validating a kind:'react' page requires the \"typescript\" package, which could not be loaded ` +\n `(${err instanceof Error ? err.message : String(err)}). It is a declared dependency of @objectstack/lint — ` +\n `if this deployment prunes packages, keep \"typescript\" in the image; it is only loaded when a react-source page is validated.`,\n );\n }\n return cachedTs;\n}\n\nexport type ReactPropSeverity = 'error' | 'warning';\n\nexport interface ReactPropFinding {\n severity: ReactPropSeverity;\n rule: string;\n where: string;\n path: string;\n message: string;\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\nconst asArray = (v: unknown): AnyRec[] => (Array.isArray(v) ? (v as AnyRec[]) : []);\n\ninterface BlockSpec {\n requiredBindings: string[];\n knownProps: Set<string>;\n}\nconst BLOCKS: Map<string, BlockSpec> = new Map(\n (REACT_BLOCKS as Array<{ tag: string; interactions: Array<{ name: string; required?: boolean }> }>).map((b) => [\n b.tag,\n {\n requiredBindings: b.interactions.filter((i) => i.required).map((i) => i.name),\n knownProps: new Set(b.interactions.map((i) => i.name)),\n },\n ]),\n);\n\nfunction editDistance(a: string, b: string, cap = 2): number {\n if (Math.abs(a.length - b.length) > cap) return cap + 1;\n const dp = Array.from({ length: a.length + 1 }, (_, i) => i);\n for (let j = 1; j <= b.length; j++) {\n let prev = dp[0];\n dp[0] = j;\n for (let i = 1; i <= a.length; i++) {\n const tmp = dp[i];\n dp[i] = Math.min(dp[i] + 1, dp[i - 1] + 1, prev + (a[i - 1] === b[j - 1] ? 0 : 1));\n prev = tmp;\n }\n }\n return dp[a.length];\n}\n\nfunction nearestKnown(prop: string, known: Set<string>): string | null {\n if (known.has(prop)) return null;\n let best: string | null = null;\n let bestD = 3;\n for (const k of known) {\n const d = editDistance(prop, k);\n if (d < bestD) { bestD = d; best = k; }\n }\n return bestD <= 2 ? best : null;\n}\n\nexport function validateReactPageProps(stack: AnyRec): ReactPropFinding[] {\n const findings: ReactPropFinding[] = [];\n const pages = asArray(stack.pages);\n for (let p = 0; p < pages.length; p++) {\n const page = pages[p];\n if (!page || page.kind !== 'react') continue;\n const source = page.source;\n if (typeof source !== 'string' || source.trim() === '') continue;\n const name = String(page.name ?? `#${p}`);\n\n // Outside the try below on purpose: a missing compiler must surface as an\n // error, not be swallowed as \"unparseable source\".\n const tsc = loadTypeScript();\n\n let sf: ts.SourceFile;\n try {\n sf = tsc.createSourceFile('page.tsx', source, tsc.ScriptTarget.Latest, true, tsc.ScriptKind.TSX);\n } catch {\n continue; // the syntax gate reports unparseable sources\n }\n\n const visit = (node: ts.Node): void => {\n if (tsc.isJsxOpeningElement(node) || tsc.isJsxSelfClosingElement(node)) {\n const tag = node.tagName.getText(sf);\n const block = BLOCKS.get(tag);\n if (block) {\n let hasSpread = false;\n const used = new Set<string>();\n for (const a of node.attributes.properties) {\n if (tsc.isJsxSpreadAttribute(a)) { hasSpread = true; continue; }\n if (tsc.isJsxAttribute(a)) used.add(a.name.getText(sf));\n }\n const where = `page \"${name}\" › <${tag}>`;\n const path = `pages[${p}].source`;\n if (!hasSpread) {\n for (const req of block.requiredBindings) {\n if (!used.has(req)) {\n findings.push({\n severity: 'error',\n rule: 'react-prop-missing-required',\n where, path,\n message: `<${tag}> is missing the required prop \"${req}\".`,\n hint: `Pass ${req}={…}. See the react-tier component contract.`,\n });\n }\n }\n }\n for (const u of used) {\n const near = nearestKnown(u, block.knownProps);\n if (near) {\n findings.push({\n severity: 'warning',\n rule: 'react-prop-typo',\n where, path,\n message: `<${tag}> has prop \"${u}\" — did you mean \"${near}\"?`,\n hint: 'Likely a typo of a contract prop. Fix it or remove it.',\n });\n }\n }\n }\n }\n tsc.forEachChild(node, visit);\n };\n visit(sf);\n }\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail for SDUI source-tier page styling (ADR-0065 / ADR-0080 /\n// ADR-0081). A `kind:'html'` or `kind:'react'` page's `source` is RUNTIME\n// metadata — the console's build-time Tailwind only scans the renderer's own\n// source, never an authored page string. So a Tailwind `className` in page\n// source silently produces NO CSS (the exact ADR-0065 failure: styling that\n// \"works only by coincidence\" when the class happens to be one objectui already\n// ships). This rule flags authored `className` attributes in source-tier pages\n// before render, with the actionable fix.\n//\n// It is the styling counterpart to the react-prop gate: a pure\n// `(stack) => Finding[]` rule (ADR-0019), run from `os validate`/`compile` and\n// reusable by AI authoring so the agent self-corrects.\n\nexport type SourceStyleSeverity = 'error' | 'warning';\n\nexport interface SourceStyleFinding {\n severity: SourceStyleSeverity;\n rule: string;\n where: string;\n path: string;\n message: string;\n hint: string;\n}\n\nexport const PAGE_SOURCE_CLASSNAME = 'page-source-className-tailwind';\n\ntype AnyRec = Record<string, unknown>;\nconst asArray = (v: unknown): AnyRec[] => (Array.isArray(v) ? (v as AnyRec[]) : []);\n\n// `className=` as a JSX attribute: name, optional ws, `=`, then `\"`/`'`/`{`.\nconst CLASSNAME_ATTR = /\\bclassName\\s*=\\s*[\"'{]/g;\n\nexport function validatePageSourceStyling(stack: AnyRec): SourceStyleFinding[] {\n const findings: SourceStyleFinding[] = [];\n const pages = asArray(stack.pages);\n for (let p = 0; p < pages.length; p++) {\n const page = pages[p];\n if (!page) continue;\n const kind = page.kind;\n if (kind !== 'html' && kind !== 'react' && kind !== 'jsx') continue;\n const source = page.source;\n if (typeof source !== 'string' || source.trim() === '') continue;\n const name = String(page.name ?? `#${p}`);\n\n CLASSNAME_ATTR.lastIndex = 0;\n let count = 0;\n while (CLASSNAME_ATTR.exec(source) !== null) count++;\n if (count === 0) continue;\n\n findings.push({\n severity: 'warning',\n rule: PAGE_SOURCE_CLASSNAME,\n where: `page \"${name}\"`,\n path: `pages[${p}].source`,\n message: `${count} \\`className\\` attribute${count > 1 ? 's' : ''} in ${String(kind)}-source page — Tailwind utilities in page source silently produce no CSS (the build never scans authored metadata; ADR-0065).`,\n hint:\n kind === 'react'\n ? \"Style with inline style={{}} using hsl(var(--token)) theme colors (e.g. color:'hsl(var(--foreground))', background:'hsl(var(--card))'); render drawer/modal via <ObjectForm formType=\\\"drawer\\\"|\\\"modal\\\"> instead of hand-rolled overlays.\"\n : \"Lay out with the components' structured props (<flex direction gap>, <grid columns>) and add CSS via a JSON style object style={{\\\"color\\\":\\\"hsl(var(--foreground))\\\"}}; do not use Tailwind className.\",\n });\n }\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\nimport { objectTitleCompleteness } from '@objectstack/spec/data';\nimport type { DisplayNameObjectMeta } from '@objectstack/spec/data';\n\n/**\n * Build-time record-title diagnostics (ADR-0079).\n *\n * A record's human title is a structural invariant: every object resolves a\n * primary title from a real STORED field via `nameField` (the canonical\n * pointer; `displayNameField` is the deprecated alias) or a deterministic\n * derivation. Two authoring smells are flagged here so `os build`/`os lint`,\n * the MCP authoring surface, and hand-authoring all get the coverage cloud\n * graph-lint already has (the ADR-0078 \"not cloud-only\" principle):\n *\n * - `title-format-retired` — the object declares a `titleFormat`. That field\n * is a RENDER-ONLY template the server can neither return nor query; ADR-0079\n * retires it in favour of `nameField`. The schema still parses it (existing\n * metadata keeps loading), so this is advisory, not an error.\n * - `title-unresolvable` — `objectTitleCompleteness` reports `status: 'none'`:\n * no `nameField`/`displayNameField` pointer and no title-eligible field to\n * derive one from. Records will have no meaningful title (the runtime falls\n * back to the auto-provisioned primary / `Record #<id>` floor), so this is a\n * warning, not an error — nothing is fully broken.\n *\n * Both are warnings: the auto-provision transform and the id floor mean a\n * green build never ships a fully title-less object. Reuses the shared spec\n * predicate (`@objectstack/spec/data` → display-name) so cloud and framework\n * classify titles identically.\n */\n\nexport const TITLE_FORMAT_RETIRED = 'title-format-retired';\nexport const TITLE_UNRESOLVABLE = 'title-unresolvable';\n\nexport type RecordTitleSeverity = 'error' | 'warning';\n\nexport interface RecordTitleFinding {\n /** Always `warning` today — both rules are advisory (see module note). */\n severity: RecordTitleSeverity;\n /** Diagnostic rule id (registry entry), e.g. `title-format-retired`. */\n rule: string;\n /** Human-readable location, e.g. `object \"invoice\"`. */\n where: string;\n /** Config path, e.g. `objects[3]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/**\n * Validate every object's record-title declaration. Returns the list of\n * findings (empty = clean). Both rules are advisory (`warning`): the caller\n * must never fail the build on them alone — auto-provision + the `Record #<id>`\n * floor guarantee a resolvable title at runtime.\n */\nexport function validateRecordTitle(stack: AnyRec): RecordTitleFinding[] {\n const findings: RecordTitleFinding[] = [];\n\n const objects = asArray(stack.objects);\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n const objName = typeof obj.name === 'string' ? obj.name : `(object ${i})`;\n const where = `object \"${objName}\"`;\n const path = `objects[${i}]`;\n\n // ── (a) titleFormat is retired (ADR-0079) ──\n // Render-only template the server cannot return or query. Still parsed by\n // the schema for back-compat, so advisory.\n if (obj.titleFormat !== undefined && obj.titleFormat !== null && obj.titleFormat !== '') {\n findings.push({\n severity: 'warning',\n rule: TITLE_FORMAT_RETIRED,\n where,\n path,\n message:\n `${objName}: titleFormat is retired (ADR-0079) — migrate to nameField ` +\n `(single field) or a formula field designated nameField`,\n hint:\n `titleFormat is a render-only template the server cannot return or ` +\n `query, and an explicit nameField now takes precedence. For a ` +\n `single-field title set nameField: '<field>'. For a composite title, ` +\n `add a formula field (returnType: 'text') and designate it via ` +\n `nameField.`,\n });\n }\n\n // ── (b) no resolvable title (status: 'none') ──\n // Reuse the shared spec predicate so cloud graph-lint and framework lint\n // classify titles identically. `none` = no pointer AND nothing derivable.\n const completeness = objectTitleCompleteness(obj as DisplayNameObjectMeta);\n if (completeness.status === 'none') {\n findings.push({\n severity: 'warning',\n rule: TITLE_UNRESOLVABLE,\n where,\n path,\n message:\n `${objName}: no resolvable record title — records will have no ` +\n `meaningful name (no nameField and no title-eligible field to derive one)`,\n hint:\n `Set nameField to a text/email field (or a formula field with ` +\n `returnType: 'text'), or add a text field named \"name\"/\"title\". The ` +\n `runtime auto-provisions a primary and falls back to \"Record #<id>\", ` +\n `but an explicit title is far more useful.`,\n });\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * Build-time semantic-role diagnostics (ADR-0085).\n *\n * The object-level semantic roles (`stageField`, `highlightFields` /\n * deprecated `compactLayout`, `fieldGroups` + `Field.group`) are pointers\n * into the object's own field map. A dangling pointer is Zod-valid but\n * silently inert at render time — the exact \"parsed, unmarked, silently\n * inert\" shape ADR-0078 prohibits — so the completeness lint flags it here,\n * uniformly for `os build`/`os validate`, MCP authoring and hand authors.\n *\n * All three rules are warnings, not errors: every consumer degrades\n * gracefully (an unknown `Field.group` renders in the ungrouped bucket, an\n * unknown highlight name is skipped, an unknown `stageField` falls back to\n * heuristics), so nothing is fully broken — but the author almost certainly\n * typo'd a name and should be told at author time, not discover it by\n * staring at an unchanged page.\n */\n\nexport const FIELD_GROUP_UNDECLARED = 'field-group-undeclared';\nexport const FIELD_GROUP_EMPTY = 'field-group-empty';\nexport const FIELD_GROUP_SHADOWED = 'field-group-shadowed';\nexport const SEMANTIC_ROLE_FIELD_UNKNOWN = 'semantic-role-field-unknown';\n\nexport type SemanticRoleSeverity = 'error' | 'warning';\n\nexport interface SemanticRoleFinding {\n /** Always `warning` today — all three rules are advisory (see module note). */\n severity: SemanticRoleSeverity;\n /** Diagnostic rule id, e.g. `field-group-undeclared`. */\n rule: string;\n /** Human-readable location, e.g. `object \"invoice\"`. */\n where: string;\n /** Config path, e.g. `objects[3]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/**\n * Validate every object's semantic-role pointers. Returns the list of\n * findings (empty = clean). Advisory only — the caller must never fail the\n * build on these alone.\n */\nexport function validateSemanticRoles(stack: AnyRec): SemanticRoleFinding[] {\n const findings: SemanticRoleFinding[] = [];\n\n const objects = asArray(stack.objects);\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n if (!obj || typeof obj !== 'object') continue; // tolerate junk entries\n const objName = typeof obj.name === 'string' ? obj.name : `(object ${i})`;\n const where = `object \"${objName}\"`;\n const path = `objects[${i}]`;\n\n const fields = (obj.fields && typeof obj.fields === 'object' && !Array.isArray(obj.fields))\n ? (obj.fields as Record<string, AnyRec | undefined>)\n : {};\n const fieldNames = new Set(Object.keys(fields));\n\n // ── (a) Field.group → declared fieldGroups[].key ──\n const declaredGroups = new Set(\n (Array.isArray(obj.fieldGroups) ? obj.fieldGroups : [])\n .filter((g): g is AnyRec => !!g && typeof g === 'object')\n .map((g) => g.key)\n .filter((k): k is string => typeof k === 'string' && k.length > 0),\n );\n const referencedGroups = new Set<string>();\n for (const [fname, f] of Object.entries(fields)) {\n const g = f?.group;\n if (typeof g !== 'string' || g.length === 0) continue;\n referencedGroups.add(g);\n if (!declaredGroups.has(g)) {\n findings.push({\n severity: 'warning',\n rule: FIELD_GROUP_UNDECLARED,\n where,\n path: `${path}.fields.${fname}.group`,\n message:\n `${objName}.${fname}: group \"${g}\" is not declared in fieldGroups — ` +\n `the field renders in the ungrouped bucket, not under \"${g}\"`,\n hint:\n `Declare { key: '${g}', label: '…' } in ${objName}.fieldGroups, or fix ` +\n `the field's group reference. Group keys are snake_case and must match exactly.`,\n });\n }\n }\n\n // ── (b) declared group no field references ──\n for (const key of declaredGroups) {\n if (!referencedGroups.has(key)) {\n findings.push({\n severity: 'warning',\n rule: FIELD_GROUP_EMPTY,\n where,\n path: `${path}.fieldGroups`,\n message:\n `${objName}: fieldGroups declares \"${key}\" but no field references it — ` +\n `the group never renders`,\n hint:\n `Assign at least one field via group: '${key}', or remove the unused ` +\n `group declaration.`,\n });\n }\n }\n\n // ── (c) semantic-role pointers name real fields ──\n const stage = obj.stageField;\n if (typeof stage === 'string' && stage.length > 0 && !fieldNames.has(stage)) {\n findings.push({\n severity: 'warning',\n rule: SEMANTIC_ROLE_FIELD_UNKNOWN,\n where,\n path: `${path}.stageField`,\n message:\n `${objName}: stageField \"${stage}\" is not a field on this object — ` +\n `consumers fall back to heuristic stage detection`,\n hint:\n `Point stageField at an existing select/status field, or set ` +\n `stageField: false to declare the object has no linear lifecycle.`,\n });\n }\n\n const highlights = Array.isArray(obj.highlightFields)\n ? obj.highlightFields\n : Array.isArray(obj.compactLayout) // deprecated alias (pre-normalization input)\n ? obj.compactLayout\n : [];\n for (const entry of highlights) {\n if (typeof entry !== 'string' || entry.length === 0 || fieldNames.has(entry)) continue;\n findings.push({\n severity: 'warning',\n rule: SEMANTIC_ROLE_FIELD_UNKNOWN,\n where,\n path: `${path}.highlightFields`,\n message:\n `${objName}: highlightFields entry \"${entry}\" is not a field on this ` +\n `object — it is silently skipped by every consumer`,\n hint:\n `Fix the field name (highlightFields drives default columns, cards, ` +\n `previews and the detail highlight strip, in order).`,\n });\n }\n\n // ── (d) declared group fully shadowed by the detail highlight strip ──\n // Detail pages render the first 4 highlightFields as the top strip and\n // HIDE those fields from the details body; the record's title field is\n // the page H1 and never renders in the body either. A group whose every\n // visible member is covered by strip ∪ title therefore renders on FORMS\n // but silently never on detail pages — legal, but almost never what the\n // author pictured when they declared the group.\n const declaredStrings = highlights.filter(\n (h): h is string => typeof h === 'string' && h.length > 0,\n );\n if (declaredStrings.length > 0 && declaredGroups.size > 0) {\n // Mirror the renderer's title resolution: declared role first\n // (nameField / primaryField / deprecated displayNameField), else the\n // first conventional display-field name present on the object.\n const declaredTitle = [obj.nameField, obj.primaryField, obj.displayNameField]\n .find((v): v is string => typeof v === 'string' && v.length > 0 && fieldNames.has(v));\n const titleField = declaredTitle\n ?? ['name', 'full_name', 'title', 'subject', 'display_name'].find((c) => fieldNames.has(c));\n const stripSet = new Set(\n declaredStrings.filter((h) => h !== titleField).slice(0, 4),\n );\n const hiddenFromBody = new Set(stripSet);\n if (titleField) hiddenFromBody.add(titleField);\n\n for (const key of declaredGroups) {\n const members = Object.entries(fields)\n .filter(([, f]) => f?.group === key && f?.hidden !== true)\n .map(([fname]) => fname);\n if (members.length === 0) continue; // rule (b) already covers empty groups\n if (!members.every((m) => hiddenFromBody.has(m))) continue;\n findings.push({\n severity: 'warning',\n rule: FIELD_GROUP_SHADOWED,\n where,\n path: `${path}.fieldGroups`,\n message:\n `${objName}: every field in group \"${key}\" (${members.join(', ')}) is ` +\n `hoisted into the detail highlight strip (or is the record title) — ` +\n `the group renders on forms but never on detail pages`,\n hint:\n `Keep at least one non-highlighted field in \"${key}\", or remove the ` +\n `group if the strip already covers it. (Detail pages show the first ` +\n `4 highlightFields as the top strip and hide them from the body.)`,\n });\n }\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * Build-time form-layout diagnostics (#2578).\n *\n * Authored form views carry field references and column-layout hints that are\n * Zod-valid but can be silently wrong at render time — the \"parsed, unmarked,\n * silently inert\" shape ADR-0078 prohibits. This lint catches the two that\n * matter for multi-column, AI-authored forms, uniformly for `os build` /\n * `os validate`, MCP authoring and hand authors (ADR-0019).\n *\n * Both rules are warnings, not errors — nothing is fully broken (an unknown\n * field name is skipped; an over-wide colSpan is clamped) — but each is almost\n * certainly an authoring mistake worth surfacing at author time:\n *\n * - `form-field-unknown` — a section references a field that is not on the\n * form's bound object, so the field silently does not render.\n * - `absolute-colspan-discouraged` — a field uses the absolute `colSpan`. Under\n * a per-surface DERIVED column count (mobile 1 / modal 2 / page 3-4) a fixed\n * span only lines up at the one width the author imagined; the renderer\n * clamps it. The robust primitive is the relative `span: 'full'`.\n *\n * Scope: top-level form `views` (a `sections` array). Forms embedded inside\n * page component trees are a follow-up — the walker deliberately stays shallow\n * so it never guesses at an arbitrary component's object binding.\n */\n\nexport const FORM_FIELD_UNKNOWN = 'form-field-unknown';\nexport const FORM_COLSPAN_ABSOLUTE = 'absolute-colspan-discouraged';\n\nexport type FormLayoutSeverity = 'error' | 'warning';\n\nexport interface FormLayoutFinding {\n /** Always `warning` today — both rules are advisory (see module note). */\n severity: FormLayoutSeverity;\n /** Diagnostic rule id, e.g. `form-field-unknown`. */\n rule: string;\n /** Human-readable location, e.g. `view \"contract_form\"`. */\n where: string;\n /** Config path, e.g. `views[2].sections[0].fields[3]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** A section field entry is either a bare field name or `{ field, colSpan, … }`. */\nfunction fieldNameOf(entry: unknown): string | null {\n if (typeof entry === 'string') return entry.length > 0 ? entry : null;\n if (entry && typeof entry === 'object' && !Array.isArray(entry)) {\n const f = (entry as AnyRec).field;\n return typeof f === 'string' && f.length > 0 ? f : null;\n }\n return null;\n}\n\n/** The object a form view binds to: `data.object` (canonical) or `objectName`. */\nfunction boundObject(view: AnyRec): string | undefined {\n const data = view.data;\n if (data && typeof data === 'object' && typeof (data as AnyRec).object === 'string') {\n return (data as AnyRec).object as string;\n }\n return typeof view.objectName === 'string' ? (view.objectName as string) : undefined;\n}\n\n/**\n * Validate authored form-view layout. Returns findings (empty = clean).\n * Advisory only — the caller must never fail the build on these alone.\n */\nexport function validateFormLayout(stack: AnyRec): FormLayoutFinding[] {\n const findings: FormLayoutFinding[] = [];\n\n // object name → its field-name set, for reference checking.\n const objectFields = new Map<string, Set<string>>();\n for (const obj of asArray(stack.objects)) {\n const name = typeof obj.name === 'string' ? obj.name : undefined;\n if (!name) continue;\n const fields = (obj.fields && typeof obj.fields === 'object' && !Array.isArray(obj.fields))\n ? Object.keys(obj.fields as AnyRec)\n : [];\n objectFields.set(name, new Set(fields));\n }\n\n const views = asArray(stack.views);\n for (let i = 0; i < views.length; i++) {\n const view = views[i];\n if (!view || typeof view !== 'object') continue;\n const sections = Array.isArray(view.sections) ? view.sections : null;\n if (!sections) continue; // only form views carry a sections array\n\n const viewName = typeof view.name === 'string' ? view.name : `(view ${i})`;\n const objName = boundObject(view);\n // Only reference-check when the bound object resolves; otherwise we can't.\n const known = objName ? objectFields.get(objName) : undefined;\n const where = `view \"${viewName}\"`;\n const base = `views[${i}]`;\n\n for (let s = 0; s < sections.length; s++) {\n const sec = sections[s];\n const secFields = sec && typeof sec === 'object' && Array.isArray((sec as AnyRec).fields)\n ? ((sec as AnyRec).fields as unknown[])\n : [];\n for (let f = 0; f < secFields.length; f++) {\n const entry = secFields[f];\n const fname = fieldNameOf(entry);\n const fpath = `${base}.sections[${s}].fields[${f}]`;\n\n // ── (a) section field references a real field on the bound object ──\n if (fname && known && !known.has(fname)) {\n findings.push({\n severity: 'warning',\n rule: FORM_FIELD_UNKNOWN,\n where,\n path: fpath,\n message:\n `${viewName}: field \"${fname}\" is not a field on object \"${objName}\" — ` +\n `it is silently skipped and never renders on the form`,\n hint:\n `Fix the field name, or add \"${fname}\" to ${objName}. Section field ` +\n `references must match the object's field names exactly.`,\n });\n }\n\n // ── (b) absolute colSpan → steer to the surface-independent span ──\n const colSpan = entry && typeof entry === 'object' && !Array.isArray(entry)\n ? (entry as AnyRec).colSpan\n : undefined;\n if (colSpan != null) {\n findings.push({\n severity: 'warning',\n rule: FORM_COLSPAN_ABSOLUTE,\n where,\n path: `${fpath}.colSpan`,\n message:\n `${viewName}: field \"${fname ?? '?'}\" sets absolute colSpan ${String(colSpan)} — ` +\n `the form's column count is derived per surface (mobile 1 / modal 2 / page 3-4), ` +\n `so a fixed span only aligns at one width`,\n hint:\n `Prefer span: 'full' (whole row at any column count), or omit for auto ` +\n `width. The renderer clamps colSpan to the current column count.`,\n });\n }\n }\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * Build-time conditional-visibility diagnostics (ADR-0089 D3b).\n *\n * ADR-0089 unifies the conditional-visibility predicate under the single\n * canonical key **`visibleWhen`** across data fields, view form sections/fields,\n * and page components. The deprecated spellings — `visibleOn` (view form) and\n * `visibility` (page component) — stay accepted and are folded into `visibleWhen`\n * at the schema boundary (a zod `.transform()`). Because that fold happens during\n * `parse()`, the aliases are gone from the *parsed* stack — so this rule runs on\n * the **pre-parse** (normalized) stack, exactly like `validate-list-view-mode`,\n * to see what the author actually wrote.\n *\n * Two advisory rules (both `warning` — nothing is broken, the alias still works\n * and a mis-rooted predicate just never matches):\n *\n * - `visibility-alias-deprecated` — a `visibleOn` / `visibility` key in authored\n * source. Autofix intent: rename the key to `visibleWhen` (same value).\n * - `visibility-root-mislayered` — a visibility predicate whose binding root does\n * not match its layer (ADR-0089 D3, §Context). The check is **bidirectional**:\n * - **runtime** view/page surfaces (`*.view.ts` / `*.page.ts`) bind\n * `record` + `current_user` (pages also expose `page.<var>`), so a `data.`-rooted\n * predicate here is a wrong-layer paste that silently never matches; and\n * - **metadata-editing** forms (`*.form.ts` — the row under edit) bind `data`, so\n * a `record.`-rooted predicate there is the same bug in the other direction.\n * The layer is supplied by the caller (`opts.layer`, default `'runtime'`): the\n * app-lint path (`os validate` / `compile`) always lints runtime surfaces, while a\n * file-aware caller linting a `*.form.ts` passes `layer: 'metadata'`.\n *\n * Scope: `views` (form `sections` / legacy `groups`, and their `fields`) and\n * `pages` (`regions[].components[]`). Data-field `visibleWhen` is already covered\n * by `validate-expressions` and is not re-checked here.\n */\n\nexport const VISIBILITY_ALIAS_DEPRECATED = 'visibility-alias-deprecated';\nexport const VISIBILITY_ROOT_MISLAYERED = 'visibility-root-mislayered';\n\nexport type VisibilitySeverity = 'error' | 'warning';\n\n/**\n * Which binding environment the linted surface belongs to (ADR-0089 §Context):\n * - `runtime` — `*.view.ts` / `*.page.ts`; binds `record` + `current_user` (+ `page`).\n * - `metadata` — `*.form.ts` metadata-editing forms; binds `data` (the row under edit).\n */\nexport type VisibilityLayer = 'runtime' | 'metadata';\n\n/** Options for {@link validateVisibilityPredicates}. */\nexport interface VisibilityOptions {\n /** Binding layer of the surface being linted. Defaults to `'runtime'`. */\n layer?: VisibilityLayer;\n}\n\nexport interface VisibilityFinding {\n /** Always `warning` today — both rules are advisory (see module note). */\n severity: VisibilitySeverity;\n /** Diagnostic rule id, e.g. `visibility-alias-deprecated`. */\n rule: string;\n /** Human-readable location, e.g. `view \"contact_form\"`. */\n where: string;\n /** Config path, e.g. `views[2].sections[0].fields[3]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** The canonical key and its two deprecated aliases (ADR-0089). */\nconst CANONICAL = 'visibleWhen';\nconst ALIASES = ['visibleOn', 'visibility'] as const;\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** Extract the CEL source from a predicate value (string, or `{ source }` envelope). */\nfunction predicateSource(v: unknown): string | undefined {\n if (typeof v === 'string') return v;\n if (v && typeof v === 'object' && typeof (v as AnyRec).source === 'string') {\n return (v as AnyRec).source as string;\n }\n return undefined;\n}\n\n/** Does the predicate reference `<root>.<x>` as a leading binding root? */\nfunction usesRoot(source: string, root: string): boolean {\n // `<root>` as a leading identifier followed by a property access. The leading\n // `(^|[^.\\w$])` guard excludes a nested access like `foo.data` (a field named\n // `data`) or `my_record.x` (an identifier that merely ends in `record`).\n return new RegExp(`(^|[^.\\\\w$])${root}\\\\.\\\\w`).test(source);\n}\n\n/**\n * Per-layer mis-rooted-predicate description. The `runtime` layer forbids the\n * metadata-editing-form root (`data.`); the `metadata` layer forbids the runtime\n * record-surface root (`record.`) — ADR-0089 D3 spells out both directions.\n */\nconst MISLAYER_BY_LAYER: Record<\n VisibilityLayer,\n { forbiddenRoot: string; message: string; hint: string }\n> = {\n runtime: {\n forbiddenRoot: 'data',\n message:\n 'visibility predicate is rooted at `data.` — that is the ' +\n 'metadata-editing-form root (a `*.form.ts` row under edit), not a runtime ' +\n 'surface. A runtime view/page predicate that binds `data.` never matches ' +\n 'and the element renders unconditionally (ADR-0089).',\n hint:\n 'Runtime record surfaces bind `record` + `current_user` (pages also ' +\n \"expose `page.<var>`). Use e.g. `record.status == 'open'` instead of \" +\n \"`data.status == 'open'`.\",\n },\n metadata: {\n forbiddenRoot: 'record',\n message:\n 'visibility predicate is rooted at `record.` — that is the runtime ' +\n 'record-surface root (a `*.view.ts` / `*.page.ts` live record), not a ' +\n 'metadata-editing form. A `*.form.ts` predicate that binds `record.` never ' +\n 'matches and the element renders unconditionally (ADR-0089).',\n hint:\n 'Metadata-editing forms bind `data` (the row under edit). Use e.g. ' +\n \"`data.type == 'grid'` instead of `record.type == 'grid'`.\",\n },\n};\n\n/**\n * Inspect one element carrying a visibility predicate. Emits the alias-deprecated\n * finding (when an alias key is present) and the mis-layered-root finding (when\n * the effective predicate's binding root does not match `layer`).\n */\nfunction checkElement(\n el: AnyRec,\n where: string,\n path: string,\n layer: VisibilityLayer,\n findings: VisibilityFinding[],\n): void {\n // (1) deprecated alias key present → steer to `visibleWhen`.\n for (const alias of ALIASES) {\n if (el[alias] !== undefined) {\n findings.push({\n severity: 'warning',\n rule: VISIBILITY_ALIAS_DEPRECATED,\n where,\n path: `${path}.${alias}`,\n message:\n `\\`${alias}\\` is the deprecated spelling of the conditional-visibility ` +\n `predicate (ADR-0089). It still works — it is normalized to \\`visibleWhen\\` ` +\n `at parse — but the canonical key is \\`visibleWhen\\`.`,\n hint: `Rename the key \\`${alias}\\` → \\`visibleWhen\\` (same CEL value).`,\n });\n }\n }\n\n // (2) mis-layered binding root — check the effective predicate (canonical wins)\n // against the root expected for this layer.\n const raw = el[CANONICAL] ?? el.visibleOn ?? el.visibility;\n const source = predicateSource(raw);\n const rule = MISLAYER_BY_LAYER[layer];\n if (source && usesRoot(source, rule.forbiddenRoot)) {\n findings.push({\n severity: 'warning',\n rule: VISIBILITY_ROOT_MISLAYERED,\n where,\n path,\n message: rule.message,\n hint: rule.hint,\n });\n }\n}\n\n/** A section field entry is either a bare field name or `{ field, visibleWhen, … }`. */\nfunction isFieldObject(entry: unknown): entry is AnyRec {\n return !!entry && typeof entry === 'object' && !Array.isArray(entry);\n}\n\n/**\n * Validate conditional-visibility keys across authored views and pages.\n *\n * Runs on the **pre-parse** (normalized) stack so it can see the deprecated\n * `visibleOn` / `visibility` aliases before the schema folds them into\n * `visibleWhen`. Returns findings (empty = clean); all advisory (`warning`) —\n * the caller must never fail the build on these alone.\n *\n * The binding-root check is layer-directional (ADR-0089 D3): pass\n * `opts.layer = 'metadata'` when linting a `*.form.ts` metadata-editing form (so a\n * `record.`-rooted predicate is flagged), or leave it at the `'runtime'` default for\n * `*.view.ts` / `*.page.ts` surfaces (so a `data.`-rooted predicate is flagged). The\n * alias-deprecated check is layer-agnostic.\n */\nexport function validateVisibilityPredicates(\n stack: AnyRec,\n opts: VisibilityOptions = {},\n): VisibilityFinding[] {\n const layer: VisibilityLayer = opts.layer ?? 'runtime';\n const findings: VisibilityFinding[] = [];\n\n // ── Views: form sections / legacy groups, and their fields ──────────\n const views = asArray(stack.views);\n for (let i = 0; i < views.length; i++) {\n const view = views[i];\n if (!view || typeof view !== 'object') continue;\n const viewName = typeof view.name === 'string' ? view.name : `(view ${i})`;\n const where = `view \"${viewName}\"`;\n\n // `sections` (canonical) and `groups` (legacy alias → sections) both hold\n // FormSection objects with an optional visibility predicate + `fields`.\n for (const bucket of ['sections', 'groups'] as const) {\n const sections = Array.isArray(view[bucket]) ? (view[bucket] as unknown[]) : [];\n for (let s = 0; s < sections.length; s++) {\n const sec = sections[s];\n if (!sec || typeof sec !== 'object') continue;\n const secPath = `views[${i}].${bucket}[${s}]`;\n checkElement(sec as AnyRec, where, secPath, layer, findings);\n\n const secFields = Array.isArray((sec as AnyRec).fields) ? ((sec as AnyRec).fields as unknown[]) : [];\n for (let f = 0; f < secFields.length; f++) {\n const entry = secFields[f];\n if (isFieldObject(entry)) {\n checkElement(entry, where, `${secPath}.fields[${f}]`, layer, findings);\n }\n }\n }\n }\n }\n\n // ── Pages: regions[].components[] ───────────────────────────────────\n const pages = asArray(stack.pages);\n for (let i = 0; i < pages.length; i++) {\n const page = pages[i];\n if (!page || typeof page !== 'object') continue;\n const pageName = typeof page.name === 'string' ? page.name : `(page ${i})`;\n const where = `page \"${pageName}\"`;\n const regions = Array.isArray(page.regions) ? (page.regions as unknown[]) : [];\n for (let r = 0; r < regions.length; r++) {\n const region = regions[r];\n const components = region && typeof region === 'object' && Array.isArray((region as AnyRec).components)\n ? ((region as AnyRec).components as unknown[])\n : [];\n for (let c = 0; c < components.length; c++) {\n const comp = components[c];\n if (comp && typeof comp === 'object') {\n checkElement(comp as AnyRec, where, `pages[${i}].regions[${r}].components[${c}]`, layer, findings);\n }\n }\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0066 ⑨] Authoring-time validation for capability references.\n *\n * `requiredPermissions` (on objects, fields, apps, and actions) and\n * `systemPermissions` (on permission sets) are free capability strings. A typo\n * — `mange_users` for `manage_users` — is Zod-valid and fails CLOSED at runtime\n * (the caller is denied), which is the safe direction but UNDISCOVERABLE: nothing\n * tells the author the referenced capability exists nowhere. This rule closes\n * that gap by resolving every `requiredPermissions` reference against the set of\n * capabilities known at author time and warning on the unresolved ones —\n * \"reject at the producer\" (Prime Directive / ADR-0049 honesty).\n *\n * The author-time \"known\" set is:\n * 1. the built-in platform capabilities (`PLATFORM_CAPABILITY_NAMES`),\n * 2. every capability the stack DECLARES via `defineCapability`\n * (`stack.capabilities`) — the explicit, package-provenanced declaration\n * (ADR-0066 D1), materialized at boot by `bootstrapDeclaredCapabilities`,\n * 3. every capability a permission set in this stack GRANTS via\n * `systemPermissions` (granting a capability also declares it — mirrors\n * the runtime `bootstrapSystemCapabilities` derived-defaults rule), and\n * 4. any `sys_capability` row shipped as seed data.\n *\n * WARNING, not error: a single package's lint cannot see capabilities declared\n * by OTHER installed packages, and the reference fails closed at runtime anyway,\n * so a dangling reference is \"almost certainly a typo\" — surface it, don't break\n * the build. Assignment (`systemPermissions`) is NOT flagged: it is the\n * declaration side, and a package legitimately introduces new capabilities there.\n */\n\nimport { PLATFORM_CAPABILITY_NAMES } from '@objectstack/spec/security';\n\nexport const CAPABILITY_REFERENCE_UNKNOWN = 'capability-reference-unknown';\n\nexport type CapabilityRefSeverity = 'error' | 'warning';\n\nexport interface CapabilityRefFinding {\n /** Always `warning` — the reference fails closed at runtime (see module note). */\n severity: CapabilityRefSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `object \"sys_license\"`. */\n where: string;\n /** Config path, e.g. `objects[3].requiredPermissions`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** The capability strings in a `string[]` value. */\nfunction asCapArray(v: unknown): string[] {\n return Array.isArray(v) ? v.filter((s): s is string => typeof s === 'string' && s.length > 0) : [];\n}\n\n/**\n * Flatten an object-level `requiredPermissions` — either a `string[]` (all\n * operations) or a per-operation `{ read, create, update, delete }` map (ADR-0066\n * ⑤) — into `[{ cap, key }]`, where `key` is the map key (or `undefined` for the\n * array form) so a finding can point at the exact operation slice.\n */\nfunction flattenObjectRequired(v: unknown): Array<{ cap: string; key?: string }> {\n if (Array.isArray(v)) return asCapArray(v).map((cap) => ({ cap }));\n if (v && typeof v === 'object') {\n const out: Array<{ cap: string; key?: string }> = [];\n for (const [key, val] of Object.entries(v as AnyRec)) {\n for (const cap of asCapArray(val)) out.push({ cap, key });\n }\n return out;\n }\n return [];\n}\n\n/**\n * Validate every capability reference in a stack. Returns findings (empty =\n * clean). Advisory only — callers must not fail the build on these alone.\n */\nexport function validateCapabilityReferences(stack: AnyRec): CapabilityRefFinding[] {\n const findings: CapabilityRefFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n // ── Build the author-time \"known capability\" set ──\n const known = new Set<string>(PLATFORM_CAPABILITY_NAMES);\n // [ADR-0066 D1] Capabilities the stack explicitly DECLARES via defineCapability.\n for (const cap of asArray(stack.capabilities)) {\n if (typeof cap.name === 'string' && cap.name.length > 0) known.add(cap.name);\n }\n for (const ps of asArray(stack.permissions)) {\n for (const cap of asCapArray(ps.systemPermissions)) known.add(cap);\n }\n for (const seed of asArray(stack.data)) {\n if (seed.object !== 'sys_capability') continue;\n for (const rec of Array.isArray(seed.records) ? seed.records : []) {\n const name = (rec as AnyRec | null)?.name;\n if (typeof name === 'string' && name.length > 0) known.add(name);\n }\n }\n\n const hint =\n 'Fix the capability name, define it with defineCapability (stack.capabilities), ' +\n 'declare it on a permission set’s systemPermissions, ship a sys_capability seed row, ' +\n 'or ignore this if the capability is provided by another installed package ' +\n '(references fail closed at runtime).';\n\n const flag = (cap: string, where: string, path: string) => {\n if (known.has(cap)) return;\n findings.push({\n severity: 'warning',\n rule: CAPABILITY_REFERENCE_UNKNOWN,\n where,\n path,\n message:\n `requiredPermissions references capability \"${cap}\" which is registered ` +\n `nowhere — no built-in capability, no permission set in this package grants ` +\n `it via systemPermissions, and no sys_capability seed declares it`,\n hint,\n });\n };\n\n // ── Objects (D3) + their fields (D3) + embedded actions (D4) ──\n const objects = asArray(stack.objects);\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n if (!obj || typeof obj !== 'object') continue;\n const objName = typeof obj.name === 'string' ? obj.name : `(object ${i})`;\n const objPath = `objects[${i}]`;\n\n for (const { cap, key } of flattenObjectRequired(obj.requiredPermissions)) {\n flag(cap, `object \"${objName}\"`, `${objPath}.requiredPermissions${key ? `.${key}` : ''}`);\n }\n\n const fields = asArray(obj.fields);\n for (const f of fields) {\n const fname = typeof f.name === 'string' ? f.name : '(field)';\n for (const cap of asCapArray(f.requiredPermissions)) {\n flag(cap, `field \"${objName}.${fname}\"`, `${objPath}.fields.${fname}.requiredPermissions`);\n }\n }\n\n for (const [ai, action] of asArray(obj.actions).entries()) {\n const aName = typeof action.name === 'string' ? action.name : `(action ${ai})`;\n for (const cap of asCapArray(action.requiredPermissions)) {\n flag(cap, `action \"${objName}.${aName}\"`, `${objPath}.actions[${ai}].requiredPermissions`);\n }\n }\n }\n\n // ── Top-level actions (D4) ──\n for (const [i, action] of asArray(stack.actions).entries()) {\n const aName = typeof action.name === 'string' ? action.name : `(action ${i})`;\n for (const cap of asCapArray(action.requiredPermissions)) {\n flag(cap, `action \"${aName}\"`, `actions[${i}].requiredPermissions`);\n }\n }\n\n // ── Apps: requiredPermissions can appear at the app, area/tab, and nav-item\n // (recursively through groups) levels. Walk each app subtree. ──\n const apps = asArray(stack.apps);\n for (let i = 0; i < apps.length; i++) {\n const app = apps[i];\n if (!app || typeof app !== 'object') continue;\n const appName = typeof app.name === 'string' ? app.name : `(app ${i})`;\n const walk = (node: unknown, path: string) => {\n if (!node || typeof node !== 'object') return;\n if (Array.isArray(node)) {\n node.forEach((child, ci) => walk(child, `${path}[${ci}]`));\n return;\n }\n const rec = node as AnyRec;\n for (const cap of asCapArray(rec.requiredPermissions)) {\n flag(cap, `app \"${appName}\"`, `${path}.requiredPermissions`);\n }\n // Recurse only into the sub-structures that carry requiredPermissions.\n if (rec.navigation) walk(rec.navigation, `${path}.navigation`);\n if (rec.areas) walk(rec.areas, `${path}.areas`);\n if (rec.tabs) walk(rec.tabs, `${path}.tabs`);\n if (rec.children) walk(rec.children, `${path}.children`);\n if (rec.items) walk(rec.items, `${path}.items`);\n };\n walk(app, `apps[${i}]`);\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * Approval-node approver authoring lint (ADR-0090 D3 fallout).\n *\n * `org_membership_level` (and `role`, its deprecated spelling) resolves against\n * better-auth's org-membership tier (`sys_member.role`: owner / admin / member)\n * — it is NOT a position. After ADR-0090 D3 renamed `sys_role` → `sys_position`,\n * downstream apps that authored `{ type: 'role', value: 'sales_manager' }`\n * silently route the approval to nobody: the expansion finds no member row,\n * falls back to the `role:sales_manager` literal, and the request waits on an\n * approver that can never act. These rules move that failure from a stuck\n * request at runtime to a located fix-it at author time.\n *\n * Rules:\n *\n * | Rule | Severity | Origin |\n * |--------------------------------------------|----------|----------------------------|\n * | approval-approver-not-membership-tier | warning | ADR-0090 D3 (hotcrm class) |\n * | approval-approver-type-deprecated | warning | ADR-0090 D3 (#3133) |\n * | approval-approver-type-unknown | warning | contract-first (PD #12) |\n * | approval-escalation-reassign-no-target | warning | silent notify degradation |\n *\n * The first two are mutually exclusive by construction — a bad *value* wins,\n * because its fix (`position`) differs from the deprecation's fix\n * (`org_membership_level`), and prescribing the latter for a position name\n * would be wrong advice.\n *\n * Warnings (not errors): a custom better-auth membership tier is legal, and\n * the runtime keeps its literal fallback — but both shapes are near-certainly\n * authoring mistakes, so say it out loud.\n *\n * Pure `(stack) => Finding[]`; accepts the NORMALIZED stack input.\n */\n\nimport {\n ApproverType,\n APPROVAL_NODE_TYPE,\n DEPRECATED_APPROVER_TYPES,\n canonicalApproverType,\n} from '@objectstack/spec/automation';\n\nexport const APPROVAL_APPROVER_NOT_MEMBERSHIP_TIER = 'approval-approver-not-membership-tier';\nexport const APPROVAL_APPROVER_TYPE_DEPRECATED = 'approval-approver-type-deprecated';\nexport const APPROVAL_APPROVER_TYPE_UNKNOWN = 'approval-approver-type-unknown';\nexport const APPROVAL_ESCALATION_REASSIGN_NO_TARGET = 'approval-escalation-reassign-no-target';\n\nexport type ApprovalApproverSeverity = 'error' | 'warning' | 'info';\n\nexport interface ApprovalApproverFinding {\n severity: ApprovalApproverSeverity;\n /** Diagnostic rule id (`approval-*`). */\n rule: string;\n /** Human-readable location, e.g. `flow \"expense_approval\" · node \"step1\"`. */\n where: string;\n /** Config path, e.g. `flows[0].nodes[2].config.approvers[0]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/**\n * The better-auth org-membership tiers `sys_member.role` actually stores\n * (see `identity/organization.zod.ts` + `mapMembershipRole`). Anything else\n * authored as `{ type: 'org_membership_level' }` (or its deprecated `role`\n * spelling) is almost certainly a position name.\n */\nconst MEMBERSHIP_TIERS = new Set(['owner', 'admin', 'member', 'guest']);\n\n/** Off-spec dialect spellings we can name a canonical fix for. */\nconst TYPE_FIX: Record<string, string> = {\n business_unit: 'department',\n bu: 'department',\n};\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/**\n * Validate the approvers of every Approval node in the stack's flows.\n * Returns findings (empty = clean).\n */\nexport function validateApprovalApprovers(stack: AnyRec): ApprovalApproverFinding[] {\n const findings: ApprovalApproverFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const flows = asArray(stack.flows);\n const validTypes = new Set<string>(ApproverType.options);\n\n for (let fi = 0; fi < flows.length; fi++) {\n const flow = flows[fi];\n if (!flow || typeof flow !== 'object') continue;\n const flowName = typeof flow.name === 'string' ? flow.name : `(flow ${fi})`;\n const nodes = Array.isArray(flow.nodes) ? (flow.nodes as AnyRec[]) : [];\n\n for (let ni = 0; ni < nodes.length; ni++) {\n const node = nodes[ni];\n if (!node || node.type !== APPROVAL_NODE_TYPE) continue;\n const nodeId = typeof node.id === 'string' ? node.id : `(node ${ni})`;\n const cfg = (node.config ?? {}) as AnyRec;\n const approvers = Array.isArray(cfg.approvers) ? (cfg.approvers as AnyRec[]) : [];\n const where = `flow \"${flowName}\" · node \"${nodeId}\"`;\n\n for (let ai = 0; ai < approvers.length; ai++) {\n const a = approvers[ai];\n if (!a || typeof a !== 'object') continue;\n const type = typeof a.type === 'string' ? a.type : '';\n const value = typeof a.value === 'string' ? a.value : '';\n const path = `flows[${fi}].nodes[${ni}].config.approvers[${ai}]`;\n\n if (type && !validTypes.has(type)) {\n const fix = TYPE_FIX[type];\n findings.push({\n severity: 'warning',\n rule: APPROVAL_APPROVER_TYPE_UNKNOWN,\n where,\n path: `${path}.type`,\n message:\n `approver type '${type}' is not an ApproverType (${ApproverType.options.join(' | ')}).`,\n hint: fix\n ? `Use the spec value: { type: '${fix}', value: '${value}' }.`\n : `Pick one of the spec values; unmapped types degrade to an inert '${type}:${value}' literal at runtime.`,\n });\n continue;\n }\n\n const canonical = canonicalApproverType(type);\n\n // Exactly one of the two below fires. Order matters: a bad VALUE is\n // the more serious (and differently-fixed) defect, so it wins. Telling\n // an author to rewrite { type: 'role', value: 'sales_manager' } as\n // `org_membership_level` would be actively wrong advice — the fix is\n // `position`, and the deprecation is beside the point.\n if (canonical === 'org_membership_level' && value && !MEMBERSHIP_TIERS.has(value.toLowerCase())) {\n findings.push({\n severity: 'warning',\n rule: APPROVAL_APPROVER_NOT_MEMBERSHIP_TIER,\n where,\n path: `${path}.value`,\n message:\n `approver { type: '${type}', value: '${value}' } resolves against the better-auth ` +\n `org-membership tier (sys_member.role: owner/admin/member) — '${value}' is not a ` +\n `membership tier, so this approver matches nobody and the request stalls.`,\n hint:\n `If '${value}' is an org position, author { type: 'position', value: '${value}' } ` +\n `(resolved via sys_user_position, ADR-0090 D3). Keep type 'org_membership_level' ` +\n `only for membership tiers (owner/admin/member).`,\n });\n } else if (type in DEPRECATED_APPROVER_TYPES) {\n const fix = canonicalApproverType(type);\n findings.push({\n severity: 'warning',\n rule: APPROVAL_APPROVER_TYPE_DEPRECATED,\n where,\n path: `${path}.type`,\n message:\n `approver type '${type}' is the deprecated spelling of '${fix}' (ADR-0090 D3) and ` +\n `is removed in the next major.`,\n hint: `Author { type: '${fix}', value: '${value}' }. It resolves identically today.`,\n });\n }\n }\n\n // escalation.action 'reassign' with no escalateTo silently degrades to a\n // plain SLA-breach notification at runtime — the hand-off the author\n // asked for never happens.\n const escalation = (cfg.escalation ?? null) as AnyRec | null;\n if (escalation && typeof escalation === 'object' && escalation.action === 'reassign') {\n const target = typeof escalation.escalateTo === 'string' ? escalation.escalateTo.trim() : '';\n if (!target) {\n findings.push({\n severity: 'warning',\n rule: APPROVAL_ESCALATION_REASSIGN_NO_TARGET,\n where,\n path: `flows[${fi}].nodes[${ni}].config.escalation.escalateTo`,\n message:\n `escalation.action is 'reassign' but escalateTo is empty — at runtime the ` +\n `escalation degrades to a notify and the request stays with the original approvers.`,\n hint:\n `Set escalateTo to a position machine name (expanded via sys_user_position, ` +\n `ADR-0090 D3) or a specific user id, or change action to 'notify'.`,\n });\n }\n }\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0090 D7] Security-domain publish linter.\n *\n * Every rule here is traceable to an observed failure class (the taxonomy\n * grows by incident, per the ADR):\n *\n * | Rule | Origin |\n * |-----------------------------------------|---------------------------------|\n * | security-owd-unset (error) | objectui#2348 leave_request 事故 |\n * | security-owd-alias (error) | ADR-0090 D4 canonical enum |\n * | security-external-wider (error) | ADR-0090 D11 external ≤ internal|\n * | security-wildcard-vama (error) | ADR-0066 superuser wildcard |\n * | security-anchor-high-privilege(error) | ADR-0090 D5/D9 anchors |\n * | security-role-word (error) | ADR-0090 D3 vocabulary freeze |\n * | security-book-audience-unknown-set(warn)| ADR-0046 §6.7 { permissionSet } |\n * | security-private-no-readscope (info) | admin-intent mismatch class |\n * | security-master-detail-ungranted(warn) | framework#2700 os-tianshun-mtc#43|\n * | security-grant-expired-at-authoring(err)| ADR-0091 D2 resolution filtering|\n * | security-delegation-missing-reason(err) | ADR-0091 D3 dual audit |\n *\n * Per ADR-0049 discipline these are NOT advisory security: every `error` rule\n * mirrors a runtime enforcement point (D1 fail-closed OWD default, D4 zod\n * enum + fail-closed evaluator, D5/D9 anchor binding gate, D3 rename wave) —\n * the lint moves the failure from runtime-deny to author-time fix-it. The lone\n * `warning` (master-detail-ungranted) likewise mirrors a runtime gate — the\n * object-level CRUD check (ADR-0055) — but stays advisory: it flags a *likely*\n * misconfiguration whose per-permission-set nuance it cannot fully adjudicate.\n *\n * Pure `(stack) => Finding[]`; accepts the NORMALIZED stack input (works both\n * pre- and post-zod-parse, so `os lint` catches what the zod gate would\n * reject in `os compile` — with a better message).\n */\n\nimport { describeAnchorForbiddenBits } from '@objectstack/spec/security';\n\nexport const SECURITY_OWD_UNSET = 'security-owd-unset';\nexport const SECURITY_OWD_ALIAS = 'security-owd-alias';\nexport const SECURITY_EXTERNAL_WIDER = 'security-external-wider-than-internal';\nexport const SECURITY_WILDCARD_VAMA = 'security-wildcard-vama';\nexport const SECURITY_ANCHOR_HIGH_PRIVILEGE = 'security-anchor-high-privilege';\nexport const SECURITY_ROLE_WORD = 'security-role-word';\nexport const SECURITY_BOOK_AUDIENCE_UNKNOWN_SET = 'security-book-audience-unknown-set';\nexport const SECURITY_PRIVATE_NO_READSCOPE = 'security-private-no-readscope';\nexport const SECURITY_MASTER_DETAIL_UNGRANTED = 'security-master-detail-ungranted';\nexport const SECURITY_FLS_UNQUALIFIED_KEY = 'security-fls-unqualified-key';\nexport const SECURITY_GRANT_EXPIRED_AT_AUTHORING = 'security-grant-expired-at-authoring';\nexport const SECURITY_DELEGATION_MISSING_REASON = 'security-delegation-missing-reason';\n\nexport type SecuritySeverity = 'error' | 'warning' | 'info';\n\nexport interface SecurityFinding {\n severity: SecuritySeverity;\n /** Diagnostic rule id (`security-*`). */\n rule: string;\n /** Human-readable location, e.g. `object \"leave_request\"`. */\n where: string;\n /** Config path, e.g. `objects[3].sharingModel`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\nconst CANONICAL_OWD = ['private', 'public_read', 'public_read_write', 'controlled_by_parent'] as const;\n/** [ADR-0090 D4] Legacy alias → canonical fix-it mapping. */\nconst OWD_ALIAS_FIX: Record<string, string> = {\n read: 'public_read',\n read_write: 'public_read_write',\n full: 'public_read_write',\n public: 'public_read_write',\n};\n/** D11 ordering for external ≤ internal (controlled_by_parent excluded). */\nconst OWD_WIDTH: Record<string, number> = {\n private: 0,\n public_read: 1,\n public_read_write: 2,\n};\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction owdOf(obj: AnyRec): unknown {\n return obj.sharingModel ?? (obj.security as AnyRec | undefined)?.sharingModel;\n}\n\nfunction isSystemObject(obj: AnyRec): boolean {\n return obj.isSystem === true || String(obj.name ?? '').startsWith('sys_');\n}\n\n/** snake_case identifier contains the reserved token `role`/`roles`. */\nfunction identifierHasRoleToken(name: unknown): boolean {\n if (typeof name !== 'string') return false;\n return name\n .toLowerCase()\n .split(/[^a-z0-9]+/)\n .some((tok) => tok === 'role' || tok === 'roles');\n}\n\n/** Free-text label contains the whole word `role(s)` (case-insensitive). */\nfunction labelHasRoleWord(label: unknown): boolean {\n if (typeof label !== 'string') return false;\n return /\\brole(s)?\\b/i.test(label);\n}\n\n/** The `reference`/`reference_to` target a relationship field points at. */\nfunction refOf(def: AnyRec): string | undefined {\n const r = (def.reference ?? def.reference_to) as unknown;\n return typeof r === 'string' && r ? r : undefined;\n}\n\n/**\n * The first `master_detail` field on an object, if any — its presence is what\n * makes the object a DETAIL (the child side of a master-detail; ADR-0055).\n * Works for both the array and name-keyed-map field forms (`asArray` folds the\n * map key into `name`).\n */\nfunction firstMasterDetailField(obj: AnyRec): { name: string; parent?: string } | undefined {\n for (const f of asArray(obj.fields)) {\n if (f.type === 'master_detail') {\n return { name: String(f.name ?? '?'), parent: refOf(f) };\n }\n }\n return undefined;\n}\n\n/**\n * Does a per-object permission entry open the object-level CRUD gate at all?\n * Any of the four CRUD bits, or a super-user bypass (View/Modify All Data),\n * counts — this mirrors the runtime `checkObjectPermission` gate (ADR-0066 D2):\n * that gate returns true if ANY set contributes one of these for the object.\n */\nfunction grantsObjectAccess(p: AnyRec): boolean {\n return (\n p.allowRead === true ||\n p.allowCreate === true ||\n p.allowEdit === true ||\n p.allowDelete === true ||\n p.viewAllRecords === true ||\n p.modifyAllRecords === true\n );\n}\n\n/**\n * Validate the security posture of a stack. Returns findings (empty = clean).\n * `error` findings gate the build in `os compile`; `info` is advisory.\n *\n * `opts.nowMs` injects the clock for the ADR-0091 authoring-time expiry rule\n * (tests); production callers omit it.\n */\nexport function validateSecurityPosture(stack: AnyRec, opts?: { nowMs?: number }): SecurityFinding[] {\n const findings: SecurityFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const objects = asArray(stack.objects);\n const permissionSets = asArray(stack.permissions);\n\n // ── D1/D4/D11: per-object OWD posture ────────────────────────────────\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n if (!obj || typeof obj !== 'object') continue;\n const objName = typeof obj.name === 'string' ? obj.name : `(object ${i})`;\n const objPath = `objects[${i}]`;\n const owd = owdOf(obj);\n const external = obj.externalSharingModel;\n\n if (!isSystemObject(obj)) {\n if (owd == null) {\n findings.push({\n severity: 'error',\n rule: SECURITY_OWD_UNSET,\n where: `object \"${objName}\"`,\n path: `${objPath}.sharingModel`,\n message:\n `custom object \"${objName}\" declares no sharingModel (OWD). The runtime fails ` +\n `CLOSED to 'private' (ADR-0090 D1), but the baseline must be an authored decision, ` +\n `not an accident — this is the exact shape of the leave_request incident (objectui#2348).`,\n hint:\n `Declare sharingModel explicitly: 'private' (owner + shares; recommended default), ` +\n `'public_read', 'public_read_write', or 'controlled_by_parent' (master-detail children).`,\n });\n } else if (typeof owd === 'string' && OWD_ALIAS_FIX[owd]) {\n findings.push({\n severity: 'error',\n rule: SECURITY_OWD_ALIAS,\n where: `object \"${objName}\"`,\n path: `${objPath}.sharingModel`,\n message:\n `sharingModel '${owd}' is a retired alias (ADR-0090 D4). The runtime fails CLOSED ` +\n `to 'private' on unknown values, so this object is NOT ${owd === 'read' ? 'readable' : 'writable'} org-wide.`,\n hint: `Replace with the canonical value: sharingModel: '${OWD_ALIAS_FIX[owd]}'.`,\n });\n } else if (typeof owd === 'string' && !(CANONICAL_OWD as readonly string[]).includes(owd)) {\n findings.push({\n severity: 'error',\n rule: SECURITY_OWD_ALIAS,\n where: `object \"${objName}\"`,\n path: `${objPath}.sharingModel`,\n message:\n `sharingModel '${owd}' is not a canonical OWD value; the runtime fails CLOSED to 'private'.`,\n hint: `Use one of: ${CANONICAL_OWD.join(', ')}.`,\n });\n }\n }\n\n // D11: external dial present on any object (system included) must obey\n // external ≤ internal. controlled_by_parent inherits the master's pair.\n if (typeof external === 'string') {\n if (OWD_ALIAS_FIX[external]) {\n findings.push({\n severity: 'error',\n rule: SECURITY_OWD_ALIAS,\n where: `object \"${objName}\"`,\n path: `${objPath}.externalSharingModel`,\n message: `externalSharingModel '${external}' is a retired alias (ADR-0090 D4).`,\n hint: `Replace with the canonical value: externalSharingModel: '${OWD_ALIAS_FIX[external]}'.`,\n });\n } else if (\n typeof owd === 'string' &&\n external in OWD_WIDTH &&\n owd in OWD_WIDTH &&\n OWD_WIDTH[external] > OWD_WIDTH[owd]\n ) {\n findings.push({\n severity: 'error',\n rule: SECURITY_EXTERNAL_WIDER,\n where: `object \"${objName}\"`,\n path: `${objPath}.externalSharingModel`,\n message:\n `externalSharingModel '${external}' is WIDER than the internal sharingModel '${owd}' — ` +\n `the external baseline must never exceed the internal one (ADR-0090 D11).`,\n hint: `Narrow externalSharingModel to '${owd}' or below (ordering: private < public_read < public_read_write).`,\n });\n }\n }\n }\n\n // ── ADR-0066 / D5/D9: permission-set posture ─────────────────────────\n for (let i = 0; i < permissionSets.length; i++) {\n const ps = permissionSets[i];\n if (!ps || typeof ps !== 'object') continue;\n const psName = typeof ps.name === 'string' ? ps.name : `(permission set ${i})`;\n const psPath = `permissions[${i}]`;\n const objectsMap = (ps.objects && typeof ps.objects === 'object' ? ps.objects : {}) as AnyRec;\n\n // [#19 / permission zoo audit] FLS keys MUST be `<object>.<field>`\n // qualified. The runtime evaluator matches keys by object prefix\n // (`getFieldPermissions`: `key.startsWith(objectName + '.')`), so a bare\n // `budget` key matches NOTHING — the declared masking silently never\n // enforces (the worst declared-≠-enforced class, ADR-0049). The showcase\n // itself shipped this bug for months.\n const flsMap = (ps.fields && typeof ps.fields === 'object' ? ps.fields : {}) as AnyRec;\n for (const flsKey of Object.keys(flsMap)) {\n if (flsKey.includes('.')) continue;\n findings.push({\n severity: 'error',\n rule: SECURITY_FLS_UNQUALIFIED_KEY,\n where: `permission set \"${psName}\"`,\n path: `${psPath}.fields[\"${flsKey}\"]`,\n message:\n `field-permission key '${flsKey}' is not object-qualified — the runtime matches FLS keys ` +\n `by '<object>.<field>' prefix, so a bare key is silently IGNORED and the declared masking never enforces.`,\n hint: `Qualify the key with its object, e.g. 'crm_opportunity.${flsKey}': { readable: true, editable: false }.`,\n });\n }\n\n const wildcard = objectsMap['*'] as AnyRec | undefined;\n if (wildcard && (wildcard.viewAllRecords === true || wildcard.modifyAllRecords === true)) {\n findings.push({\n severity: 'error',\n rule: SECURITY_WILDCARD_VAMA,\n where: `permission set \"${psName}\"`,\n path: `${psPath}.objects.*`,\n message:\n `'*' wildcard carrying View All / Modify All Data — a package-authored superuser. ` +\n `Only the platform's own admin set may combine the wildcard with VAMA (ADR-0066).`,\n hint:\n `Enumerate the objects this set really needs, or drop viewAllRecords/modifyAllRecords ` +\n `from the wildcard entry. App-level admins belong in an ordinary set the customer binds ` +\n `to a position of their choosing (ADR-0090 D9).`,\n });\n }\n\n // D5: an isDefault set is a SUGGESTED binding to the `everyone` anchor —\n // hold it to the anchor tier at author time (the runtime gate enforces the\n // same predicate at bind time; this moves the failure to the author).\n if (ps.isDefault === true) {\n const offending = describeAnchorForbiddenBits(ps, 'everyone');\n if (offending) {\n findings.push({\n severity: 'error',\n rule: SECURITY_ANCHOR_HIGH_PRIVILEGE,\n where: `permission set \"${psName}\"`,\n path: `${psPath}.isDefault`,\n message:\n `isDefault:true suggests binding this set to the 'everyone' audience anchor, but it ` +\n `carries ${offending} — the runtime will refuse the binding (ADR-0090 D5/D9).`,\n hint:\n `Split the powerful bits into a separate set granted through ordinary positions, and ` +\n `keep the everyone-suggested set low-privilege.`,\n });\n }\n }\n }\n\n // ── D3: the word \"role\" is reserved-forbidden ────────────────────────\n // Scope: security-relevant identifiers/labels (objects, fields, actions,\n // permission sets, positions, apps). Pages/views/components are NOT\n // scanned — `role` there is HTML/ARIA semantics, not permission vocabulary.\n // The sole platform exception (better-auth `sys_member.role`) is a system\n // object, which app stacks never author.\n const flagRole = (kind: string, name: unknown, label: unknown, where: string, path: string) => {\n if (identifierHasRoleToken(name)) {\n findings.push({\n severity: 'error',\n rule: SECURITY_ROLE_WORD,\n where,\n path,\n message:\n `${kind} name \"${String(name)}\" uses the reserved word \"role\" — the platform vocabulary ` +\n `is permission_set (capability), position (distribution), business_unit (hierarchy) (ADR-0090 D3).`,\n hint: `Rename using 'position' for distribution groups or a domain word (e.g. 'function', 'duty').`,\n });\n } else if (labelHasRoleWord(label)) {\n findings.push({\n severity: 'error',\n rule: SECURITY_ROLE_WORD,\n where,\n path: `${path.replace(/\\.name$/, '')}.label`,\n message: `${kind} label \"${String(label)}\" uses the reserved word \"role\" (ADR-0090 D3).`,\n hint: `Relabel with 'Position' (distribution) or a domain word — admins must meet ONE vocabulary.`,\n });\n }\n };\n\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n if (!obj || typeof obj !== 'object' || isSystemObject(obj)) continue;\n const objName = typeof obj.name === 'string' ? obj.name : `(object ${i})`;\n flagRole('object', obj.name, obj.label, `object \"${objName}\"`, `objects[${i}].name`);\n for (const f of asArray(obj.fields)) {\n flagRole('field', f.name, f.label, `field \"${objName}.${String(f.name ?? '?')}\"`, `objects[${i}].fields.${String(f.name ?? '?')}.name`);\n }\n for (const [ai, action] of asArray(obj.actions).entries()) {\n flagRole('action', action.name, action.label, `action \"${objName}.${String(action.name ?? '?')}\"`, `objects[${i}].actions[${ai}].name`);\n }\n }\n for (let i = 0; i < permissionSets.length; i++) {\n const ps = permissionSets[i];\n if (!ps || typeof ps !== 'object') continue;\n flagRole('permission set', ps.name, ps.label, `permission set \"${String(ps.name ?? i)}\"`, `permissions[${i}].name`);\n }\n for (const [i, pos] of asArray(stack.positions).entries()) {\n flagRole('position', pos.name, pos.label, `position \"${String(pos.name ?? i)}\"`, `positions[${i}].name`);\n }\n for (const [i, app] of asArray(stack.apps).entries()) {\n flagRole('app', app.name, app.label, `app \"${String(app.name ?? i)}\"`, `apps[${i}].name`);\n }\n for (const [i, book] of asArray(stack.books).entries()) {\n // Books entered the security-relevant set when `book.audience` became a\n // permission-model reference (ADR-0046 §6.7 / ADR-0090): their names and\n // labels are access-adjacent UI copy.\n flagRole('book', book.name, book.label, `book \"${String(book.name ?? i)}\"`, `books[${i}].name`);\n }\n\n // ── Book audience → permission-set reference must resolve ────────────\n // A `{ permissionSet }` book audience names a set the reader must hold\n // (ADR-0046 §6.7). The runtime fails CLOSED on an unknown name (nobody\n // holds it → nobody reads the book), so a typo is not a leak — but it IS\n // the \"why can nobody see the Admin Guide\" support class, and packages\n // should gate their books on their own sets (ADR-0090 D9 / ADR-0086\n // provenance). Advisory: an environment-authored book may legitimately\n // reference an installed package's set that is not in THIS stack.\n const stackSetNames = new Set(\n permissionSets\n .map((ps) => (typeof ps.name === 'string' ? ps.name : undefined))\n .filter((n): n is string => !!n),\n );\n for (const [i, book] of asArray(stack.books).entries()) {\n const audience = (book as AnyRec).audience;\n if (!audience || typeof audience !== 'object') continue;\n const setName = (audience as AnyRec).permissionSet;\n if (typeof setName !== 'string' || setName.length === 0) continue;\n if (!stackSetNames.has(setName)) {\n findings.push({\n severity: 'warning',\n rule: SECURITY_BOOK_AUDIENCE_UNKNOWN_SET,\n where: `book \"${String(book.name ?? i)}\"`,\n path: `books[${i}].audience.permissionSet`,\n message:\n `book audience references permission set \"${setName}\", which this stack does not declare. ` +\n `The runtime fails closed — no holder means NO reader can open the book.`,\n hint:\n `Gate the book on one of this package's own permission sets (ADR-0090 D9, e.g. its admin set), ` +\n `or fix the typo. Ignore if the set is intentionally provided by another installed package.`,\n });\n }\n }\n\n // ── Admin-intent mismatch: private object, plain read, no depth ──────\n // An object whose baseline is private (explicit or D1-defaulted) where a set\n // grants allowRead with neither readScope nor viewAllRecords: every reader\n // sees ONLY their own records. Legitimate (personal to-dos) often enough\n // that this stays `info` — but it is the #1 \"why can't 李四 see the data\"\n // support class, so say it out loud at author time.\n const privateObjects = new Set(\n objects\n .filter((o) => o && typeof o === 'object' && !isSystemObject(o))\n .filter((o) => {\n const owd = owdOf(o);\n return owd == null || owd === 'private';\n })\n .map((o) => String(o.name ?? '')),\n );\n if (privateObjects.size > 0) {\n for (let i = 0; i < permissionSets.length; i++) {\n const ps = permissionSets[i];\n if (!ps || typeof ps !== 'object') continue;\n const psName = typeof ps.name === 'string' ? ps.name : `(permission set ${i})`;\n const objectsMap = (ps.objects && typeof ps.objects === 'object' ? ps.objects : {}) as AnyRec;\n for (const [objName, rawPerm] of Object.entries(objectsMap)) {\n if (!privateObjects.has(objName)) continue;\n const p = (rawPerm ?? {}) as AnyRec;\n if (p.allowRead === true && p.readScope == null && p.viewAllRecords !== true) {\n findings.push({\n severity: 'info',\n rule: SECURITY_PRIVATE_NO_READSCOPE,\n where: `permission set \"${psName}\"`,\n path: `permissions[${i}].objects.${objName}.readScope`,\n message:\n `\"${objName}\" is private (OWD) and this set grants allowRead without a readScope — ` +\n `holders see ONLY records they own (plus explicit shares).`,\n hint:\n `If that is intended (personal data), ignore this. Otherwise add readScope: ` +\n `'own_and_reports' | 'unit' | 'unit_and_below' | 'org', or widen the object's sharingModel.`,\n });\n }\n }\n }\n }\n\n // ── ADR-0055: master-detail DETAIL object with no object-level CRUD ───\n // A master-detail CHILD derives its RECORD-level scope from the master\n // (`controlled_by_parent`) — but that is gate ②. Object-level CRUD is a\n // SEPARATE gate ① (`checkObjectPermission`) that is NEVER derived: a set that\n // lists the parent but forgets the child denies role-bound non-admin users a\n // 403 *before* the parent-derived access is ever consulted, surfacing as the\n // silent \"can't fill in / can't submit the subtable\" trap (framework#2700,\n // downstream os-tianshun-mtc#43). Statically detectable: a detail (has a\n // master_detail field) that NO authored permission set grants.\n //\n // Advisory `warning` — it does not gate the build. Two deliberate silences\n // keep the false-positive rate near zero: (a) if the package authors no\n // permission sets there is nothing to compare against, and (b) a package-\n // declared `'*'` wildcard grant is treated as covering every object (a broad\n // grant is an explicit choice — suppress rather than cry wolf). The residual\n // per-set gap (one role grants it, another forgets it) is intentionally out\n // of scope (issue #2700); the platform's own default admin set lives outside\n // the linted stack, so it never masks a package that forgot the child here.\n if (permissionSets.length > 0) {\n const wildcardGrantsAll = permissionSets.some((ps) =>\n grantsObjectAccess(((ps.objects as AnyRec | undefined)?.['*'] ?? {}) as AnyRec),\n );\n if (!wildcardGrantsAll) {\n const grantedObjects = new Set<string>();\n for (const ps of permissionSets) {\n const objectsMap = (ps.objects && typeof ps.objects === 'object' ? ps.objects : {}) as AnyRec;\n for (const [objName, rawPerm] of Object.entries(objectsMap)) {\n if (objName === '*') continue;\n if (grantsObjectAccess((rawPerm ?? {}) as AnyRec)) grantedObjects.add(objName);\n }\n }\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n if (!obj || typeof obj !== 'object' || isSystemObject(obj)) continue;\n const objName = typeof obj.name === 'string' ? obj.name : '';\n if (!objName || grantedObjects.has(objName)) continue;\n const md = firstMasterDetailField(obj);\n if (!md) continue;\n const parentText = md.parent ? ` → \"${md.parent}\"` : '';\n findings.push({\n severity: 'warning',\n rule: SECURITY_MASTER_DETAIL_UNGRANTED,\n where: `object \"${objName}\"`,\n path: `objects[${i}].fields.${md.name}`,\n message:\n `detail object \"${objName}\" (master_detail \"${md.name}\"${parentText}) has no object-level ` +\n `CRUD grant in any permission set. A master-detail child derives its RECORD-level access ` +\n `from the master (ADR-0055 controlled_by_parent), but object-level CRUD is a SEPARATE gate ` +\n `that is never derived — role-bound non-admin users are denied (403) before the ` +\n `parent-derived access is ever consulted (the silent \"can't submit the subtable\" trap).`,\n hint:\n `Grant \"${objName}\" in at least one permission set that already grants its master` +\n `${md.parent ? ` \"${md.parent}\"` : ''} — e.g. permissions[i].objects.${objName} = ` +\n `{ allowRead: true, allowCreate: true, allowEdit: true }. If no role should ever touch ` +\n `it (a pure system/internal table), name it sys_* or set isSystem: true.`,\n });\n }\n }\n }\n\n // ── ADR-0091: authored grant rows (seed data) — lifecycle sanity ──────\n // Grant assignments authored as seed data on the two user-grant tables.\n // Both rules mirror runtime enforcement (D2 resolution-time filtering; the\n // D3 delegation gate), per the ADR-0049 \"no advisory security\" discipline:\n // the lint moves the failure from silent-dead-grant to author-time fix-it.\n const GRANT_SEED_OBJECTS = new Set(['sys_user_position', 'sys_user_permission_set']);\n const nowMs = opts?.nowMs ?? Date.now();\n for (const [i, seed] of asArray(stack.data).entries()) {\n const seedObject = typeof seed.object === 'string' ? seed.object : '';\n if (!GRANT_SEED_OBJECTS.has(seedObject)) continue;\n const records = Array.isArray(seed.records) ? (seed.records as AnyRec[]) : [];\n for (let j = 0; j < records.length; j++) {\n const rec = (records[j] ?? {}) as AnyRec;\n const where = `seed \"${seedObject}\" record #${j}`;\n\n // D2: a valid_until already in the past (or unparseable) at authoring\n // time is a grant that will NEVER resolve — dead on arrival, fail-closed.\n const until = rec.valid_until;\n if (until != null && until !== '') {\n const ms =\n typeof until === 'number'\n ? (until < 1e12 ? until * 1000 : until)\n : until instanceof Date\n ? until.getTime()\n : typeof until === 'string'\n ? Date.parse(until)\n : Number.NaN;\n if (Number.isNaN(ms) || ms <= nowMs) {\n findings.push({\n severity: 'error',\n rule: SECURITY_GRANT_EXPIRED_AT_AUTHORING,\n where,\n path: `data[${i}].records[${j}].valid_until`,\n message: Number.isNaN(ms)\n ? `valid_until ${JSON.stringify(until)} is not a parseable timestamp — the resolver fails ` +\n `closed (ADR-0091 D2), so this grant will NEVER be active.`\n : `valid_until ${JSON.stringify(until)} is already in the past — this grant is expired at ` +\n `authoring time and will never resolve (ADR-0091 D2 filters it fail-closed).`,\n hint:\n `Set valid_until to a future instant (ISO-8601 UTC), or drop the column for an unbounded ` +\n `grant. If the row is a historical record, it belongs in audit history, not seed data.`,\n });\n }\n }\n\n // D3: delegation rows (delegated_from set) MUST carry a reason — the\n // dual-audit half the runtime gate also rejects.\n const delegatedFrom = rec.delegated_from;\n if (delegatedFrom != null && delegatedFrom !== '') {\n const reason = rec.reason;\n if (typeof reason !== 'string' || reason.trim().length === 0) {\n findings.push({\n severity: 'error',\n rule: SECURITY_DELEGATION_MISSING_REASON,\n where,\n path: `data[${i}].records[${j}].reason`,\n message:\n `delegation row (delegated_from = ${JSON.stringify(delegatedFrom)}) has no reason. ` +\n `ADR-0091 D3 requires a mandatory reason on every delegation for the dual audit trail ` +\n `(granted_by = writer, delegated_from = authority source, reason = why).`,\n hint: `Add reason: 'vacation stand-in for 张三, 2026-08-01..15' (free text, required).`,\n });\n }\n }\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0049 — references] Reference-integrity for dashboard header & widget\n * action targets (issue #3367).\n *\n * ADR-0049 established the \"enforce-or-remove\" gate for spec *properties*: a\n * declared property the runtime does not honour is a false promise and must be\n * enforced, marked experimental, or removed. This rule applies the SAME honesty\n * principle to *references*. A dashboard header action (or a widget's header\n * action button) names a target — a `script`/`modal` action, or a `url` route —\n * that must actually resolve. A dangling target ships a button that renders and,\n * on click, silently does nothing: a false affordance, exactly the failure\n * ADR-0049 exists to prevent, just for a reference rather than a property.\n *\n * Nothing in the protocol schema can express this: `actionUrl` is a free string,\n * so `{ actionType: 'script', actionUrl: 'export_dashboard_pdf' }` parses and\n * ships even when no such action is defined anywhere in the stack.\n *\n * Surfaces checked:\n * - dashboard `header.actions[]` — each `{ actionType, actionUrl }`\n * - dashboard `widgets[].actionUrl` (+ `actionType`) — the per-widget button\n *\n * Resolution mirrors the objectui runtime dispatch (`DashboardRenderer` +\n * `DashboardView`) so the lint flags exactly what would fail to resolve at\n * runtime:\n *\n * actionType 'script' → `actionUrl` must name a DEFINED action (`stack.actions`\n * or any `object.actions`, by `name`). A script target that names no\n * defined action fails open at runtime (\"action not found\"). → ERROR.\n *\n * actionType 'modal' → `actionUrl` resolves if it names a defined action, OR\n * matches the runtime `<verb>_<object>` convention the modalHandler\n * implements (create_/new_/add_/edit_/update_ + a defined object), OR is a\n * bare defined object name (the handler falls back to that object's create\n * form). Otherwise → ERROR.\n *\n * actionType 'url' → a relative in-app path. WARN when a recognizable\n * `<collection>/<name>` segment (objects/reports/dashboards/pages/views)\n * names an entity that does not exist in this stack. External URLs\n * (`http(s)://`, `//`), interpolated targets (`${…}`), and opaque routes\n * (no recognized collection segment) are skipped — they cannot be resolved\n * statically and may be host/app/plugin routes. → WARNING.\n *\n * actionType 'flow' | 'api' — not checked: flow targets resolve against the\n * automation engine / other packages, and api targets are opaque endpoints.\n * Out of scope for #3367.\n *\n * Severity split follows the issue's acceptance criteria: an undefined\n * `script`/`modal` target FAILS validation (a genuine dead reference that fails\n * open at runtime as a dead button); an unresolved `url` route is advisory\n * (route resolution is app-context-dependent, and a path may be served by\n * another installed package or a host/console route). External, interpolated,\n * convention, and opaque targets are exempted to keep false positives near zero\n * — the same conservative posture as the sibling `lint-view-refs` and\n * `validate-capability-references` rules.\n */\n\nexport const DASHBOARD_ACTION_TARGET_UNDEFINED = 'dashboard-action-target-undefined';\nexport const DASHBOARD_ACTION_ROUTE_UNRESOLVED = 'dashboard-action-route-unresolved';\n\nexport type DashboardActionRefSeverity = 'error' | 'warning';\n\nexport interface DashboardActionRefFinding {\n /** `error` for a dangling script/modal action; `warning` for an unresolved url route. */\n severity: DashboardActionRefSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `dashboard \"sales_overview\" · header action \"Export PDF\"`. */\n where: string;\n /** Config path, e.g. `dashboards[2].header.actions[0].actionUrl`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array of records, injecting\n * `name` from the map key — mirrors the helper in the sibling authoring lints so\n * the rule works on both the parsed (array) and normalized (map) stack shapes. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\n/** The runtime modal `<verb>_<object>` convention (objectui `DashboardView`\n * modalHandler): `create_/new_/add_/edit_/update_` + an object name opens that\n * object's create/edit form. */\nconst MODAL_VERB_RE = /^(?:create|new|add|edit|update)_(.+)$/;\n\n/** URL path segments that name a metadata collection, mapped to the stack key\n * whose members can appear after them in an in-app route\n * (`/…/objects/crm_lead`, `/reports/forecast`, `/dashboards/exec`, …). Both the\n * singular and plural spellings are accepted. */\nconst URL_COLLECTION_TO_STACK_KEY: Record<string, 'objects' | 'reports' | 'dashboards' | 'pages' | 'views'> = {\n object: 'objects',\n objects: 'objects',\n report: 'reports',\n reports: 'reports',\n dashboard: 'dashboards',\n dashboards: 'dashboards',\n page: 'pages',\n pages: 'pages',\n view: 'views',\n views: 'views',\n};\n\n/** Derive the name a top-level `views` container registers under (mirrors the\n * runtime loader's `resolveMetadataItemName('views', …)` fallbacks). */\nfunction viewContainerName(item: AnyRec): string | undefined {\n return (\n strName(item.name) ??\n strName(item.id) ??\n strName(item.object) ??\n strName((item.list as AnyRec | undefined)?.data && ((item.list as AnyRec).data as AnyRec).object) ??\n strName((item.form as AnyRec | undefined)?.data && ((item.form as AnyRec).data as AnyRec).object)\n );\n}\n\ninterface KnownTargets {\n /** Every action name defined in the stack (global + object-embedded). */\n actions: Set<string>;\n /** Object names (also valid as bare modal targets and `objects/<name>` routes). */\n objects: Set<string>;\n reports: Set<string>;\n dashboards: Set<string>;\n pages: Set<string>;\n /** View names routable as `views/<name>` — container names plus object names. */\n views: Set<string>;\n}\n\n/** Build the author-time \"known target\" sets from a stack. */\nfunction collectKnownTargets(stack: AnyRec): KnownTargets {\n const actions = new Set<string>();\n const objects = new Set<string>();\n const reports = new Set<string>();\n const dashboards = new Set<string>();\n const pages = new Set<string>();\n const views = new Set<string>();\n\n const collectNames = (v: unknown, into: Set<string>, name: (rec: AnyRec) => string | undefined) => {\n for (const item of asArray(v)) {\n if (!item || typeof item !== 'object') continue;\n const n = name(item);\n if (n) into.add(n);\n }\n };\n\n collectNames(stack.actions, actions, (a) => strName(a.name));\n for (const obj of asArray(stack.objects)) {\n if (!obj || typeof obj !== 'object') continue;\n const n = strName(obj.name);\n if (n) objects.add(n);\n collectNames(obj.actions, actions, (a) => strName(a.name));\n }\n collectNames(stack.reports, reports, (r) => strName(r.name));\n collectNames(stack.dashboards, dashboards, (d) => strName(d.name));\n collectNames(stack.pages, pages, (p) => strName(p.name));\n collectNames(stack.views, views, viewContainerName);\n // An object's default view is routable by the object's own name too.\n for (const o of objects) views.add(o);\n\n return { actions, objects, reports, dashboards, pages, views };\n}\n\n/** Does a `script`/`modal` `actionUrl` resolve? */\nfunction resolveActionTarget(\n actionType: 'script' | 'modal',\n target: string,\n known: KnownTargets,\n): boolean {\n if (known.actions.has(target)) return true;\n if (actionType === 'modal') {\n // Runtime modalHandler convention: `<verb>_<object>` or a bare object name\n // opens that object's create/edit form.\n if (known.objects.has(target)) return true;\n const m = MODAL_VERB_RE.exec(target);\n if (m && known.objects.has(m[1])) return true;\n }\n return false;\n}\n\n/**\n * Resolve a relative `url` in-app route. Returns:\n * - `null` when the target is not statically resolvable (external, interpolated,\n * or carries no recognized `<collection>/<name>` segment) — SKIP, no finding.\n * - `{ collection, name }` for a recognized `<collection>/<name>` pair that does\n * NOT exist in the stack — WARN.\n * - `undefined` when a recognized pair DID resolve — OK, no finding.\n */\nfunction resolveUrlRoute(\n target: string,\n known: KnownTargets,\n): { collection: string; name: string } | null | undefined {\n // External / protocol-relative — leaves the app; not an in-app route.\n if (/^[a-z][a-z0-9+.-]*:\\/\\//i.test(target) || target.startsWith('//')) return null;\n // Interpolated — resolved by the renderer at click time, not statically known.\n if (target.includes('${')) return null;\n // Only relative in-app paths are considered.\n if (!target.startsWith('/')) return null;\n\n // Strip query + hash, then split into non-empty segments.\n const pathPart = target.split(/[?#]/, 1)[0];\n const segments = pathPart.split('/').filter(Boolean);\n\n for (let i = 0; i < segments.length - 1; i++) {\n const stackKey = URL_COLLECTION_TO_STACK_KEY[segments[i]];\n if (!stackKey) continue;\n const name = segments[i + 1];\n if (known[stackKey].has(name)) return undefined; // resolved\n return { collection: segments[i], name }; // recognized shape, unknown name\n }\n return null; // no recognized collection segment — opaque route, skip\n}\n\ninterface HeaderAction {\n actionType?: string;\n actionUrl?: string;\n label?: string;\n}\n\n/**\n * Validate every dashboard header / widget action reference in a stack. Returns\n * findings (empty = clean). `script`/`modal` dead targets are errors; `url`\n * unresolved routes are warnings.\n */\nexport function validateDashboardActionRefs(stack: AnyRec): DashboardActionRefFinding[] {\n const findings: DashboardActionRefFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const dashboards = asArray(stack.dashboards);\n if (dashboards.length === 0) return findings;\n\n const known = collectKnownTargets(stack);\n\n const checkOne = (\n action: HeaderAction,\n where: string,\n path: string,\n ) => {\n const target = strName(action.actionUrl);\n if (!target) return; // nothing referenced (widget with no action button)\n if (target.includes('${')) return; // dynamic target — not statically resolvable\n\n // Renderer default: a missing actionType is treated as a 'url' navigation\n // (DashboardRenderer builds header ActionDefs with `type: actionType || 'url'`).\n const actionType = strName(action.actionType) ?? 'url';\n\n if (actionType === 'script' || actionType === 'modal') {\n if (resolveActionTarget(actionType, target, known)) return;\n const kindWord = actionType === 'script' ? 'script' : 'modal';\n findings.push({\n severity: 'error',\n rule: DASHBOARD_ACTION_TARGET_UNDEFINED,\n where,\n path,\n message:\n `${kindWord} action target \"${target}\" resolves to no defined action` +\n (actionType === 'modal' ? ' or object' : '') +\n `. The button renders but does nothing when clicked — a dangling reference ` +\n `the runtime cannot dispatch (ADR-0049: a declared reference must resolve).`,\n hint:\n actionType === 'modal'\n ? `Define an action named \"${target}\" (stack.actions or the object's actions), ` +\n `use the \"<verb>_<object>\" convention against a real object ` +\n `(e.g. \"create_<object>\"), point actionUrl at an existing object, or remove the button.`\n : `Define a script action named \"${target}\" (stack.actions or the object's actions) ` +\n `with an inline body or a registered handler, or remove the button.`,\n });\n return;\n }\n\n if (actionType === 'url') {\n const route = resolveUrlRoute(target, known);\n if (!route) return; // skip (external/interpolated/opaque) or resolved\n findings.push({\n severity: 'warning',\n rule: DASHBOARD_ACTION_ROUTE_UNRESOLVED,\n where,\n path,\n message:\n `url action target \"${target}\" points at ${route.collection}/${route.name}, ` +\n `but no ${route.collection.replace(/s$/, '')} named \"${route.name}\" is registered ` +\n `in this stack — the button likely navigates to a dead route.`,\n hint:\n `Check the path for a typo, define the referenced ${route.collection.replace(/s$/, '')}, ` +\n `or ignore this if the route is served by another installed package or a host/console route.`,\n });\n return;\n }\n // 'flow' | 'api' | custom types are out of scope (see module header).\n };\n\n for (let di = 0; di < dashboards.length; di++) {\n const dash = dashboards[di];\n if (!dash || typeof dash !== 'object') continue;\n const dashName = strName(dash.name) ?? `(dashboard ${di})`;\n const dashPath = `dashboards[${di}]`;\n\n // Header actions.\n const headerActions = asArray((dash.header as AnyRec | undefined)?.actions);\n for (let ai = 0; ai < headerActions.length; ai++) {\n const action = headerActions[ai] as HeaderAction | null;\n if (!action || typeof action !== 'object') continue;\n const label = strName(action.label) ?? strName(action.actionUrl) ?? `#${ai}`;\n checkOne(\n action,\n `dashboard \"${dashName}\" · header action \"${label}\"`,\n `${dashPath}.header.actions[${ai}].actionUrl`,\n );\n }\n\n // Per-widget action buttons.\n const widgets = asArray(dash.widgets);\n for (let wi = 0; wi < widgets.length; wi++) {\n const widget = widgets[wi];\n if (!widget || typeof widget !== 'object') continue;\n if (!strName(widget.actionUrl)) continue;\n const widgetId = strName(widget.id) ?? `#${wi}`;\n checkOne(\n { actionType: widget.actionType as string | undefined, actionUrl: widget.actionUrl as string | undefined },\n `dashboard \"${dashName}\" · widget \"${widgetId}\" action`,\n `${dashPath}.widgets[${wi}].actionUrl`,\n );\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0090 D6] Access-matrix snapshot — authoring-time companion to the\n * runtime explain engine.\n *\n * `buildAccessMatrix(stack)` derives, PURELY from metadata, one row per\n * (permission set × object) the stack declares: the CRUD/VAMA bits, the\n * depth axes, and the object's OWD for context. The matrix is snapshotted to\n * `access-matrix.json` and diffed on every compile: an unchanged matrix\n * auto-passes; a changed one fails the build until the snapshot is updated —\n * so every capability change becomes a REVIEWABLE, semantic diff\n * (\"`crm_admin` gains delete on `crm_lead`\") instead of a buried JSON hunk.\n * This is the publish-gate substrate the AI-authoring safety story needs:\n * AI may draft grants freely; it cannot silently change who can do what.\n */\n\nimport type { AccessMatrix, AccessMatrixEntry } from '@objectstack/spec/security';\n\ntype AnyRec = Record<string, unknown>;\n\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** Build the sorted access matrix for a normalized stack. */\nexport function buildAccessMatrix(stack: AnyRec): AccessMatrix {\n const entries: AccessMatrixEntry[] = [];\n if (!stack || typeof stack !== 'object') return { version: 1, entries };\n\n const owdByObject = new Map<string, string>();\n for (const obj of asArray(stack.objects)) {\n const name = typeof obj.name === 'string' ? obj.name : '';\n if (!name) continue;\n const owd = (obj.sharingModel ?? (obj.security as AnyRec | undefined)?.sharingModel) as string | undefined;\n if (typeof owd === 'string') owdByObject.set(name, owd);\n }\n\n for (const ps of asArray(stack.permissions)) {\n const psName = typeof ps.name === 'string' ? ps.name : '';\n if (!psName) continue;\n const objects = (ps.objects && typeof ps.objects === 'object' ? ps.objects : {}) as AnyRec;\n for (const [objName, rawPerm] of Object.entries(objects)) {\n const p = (rawPerm ?? {}) as AnyRec;\n const entry: AccessMatrixEntry = {\n permissionSet: psName,\n object: objName,\n create: p.allowCreate === true,\n read: p.allowRead === true || p.viewAllRecords === true || p.modifyAllRecords === true,\n edit: p.allowEdit === true || p.modifyAllRecords === true,\n delete: p.allowDelete === true || p.modifyAllRecords === true,\n viewAllRecords: p.viewAllRecords === true,\n modifyAllRecords: p.modifyAllRecords === true,\n };\n if (typeof p.readScope === 'string') entry.readScope = p.readScope;\n if (typeof p.writeScope === 'string') entry.writeScope = p.writeScope;\n const owd = owdByObject.get(objName);\n if (owd) entry.sharingModel = owd;\n entries.push(entry);\n }\n }\n\n entries.sort((a, b) =>\n a.permissionSet === b.permissionSet\n ? a.object.localeCompare(b.object)\n : a.permissionSet.localeCompare(b.permissionSet),\n );\n return { version: 1, entries };\n}\n\nconst BIT_LABELS: Array<[keyof AccessMatrixEntry, string]> = [\n ['create', 'create'],\n ['read', 'read'],\n ['edit', 'edit'],\n ['delete', 'delete'],\n ['viewAllRecords', 'View All Data'],\n ['modifyAllRecords', 'Modify All Data'],\n];\n\n/**\n * Semantic diff between two matrices — human-review lines, empty = identical.\n * Ordered: removals, additions, then per-entry bit/scope changes.\n */\nexport function diffAccessMatrix(before: AccessMatrix, after: AccessMatrix): string[] {\n const lines: string[] = [];\n const key = (e: AccessMatrixEntry) => `${e.permissionSet}\\u0000${e.object}`;\n const beforeMap = new Map((before?.entries ?? []).map((e) => [key(e), e]));\n const afterMap = new Map((after?.entries ?? []).map((e) => [key(e), e]));\n\n for (const [k, b] of beforeMap) {\n if (!afterMap.has(k)) {\n lines.push(`'${b.permissionSet}' loses ALL access to '${b.object}' (entry removed)`);\n }\n }\n for (const [k, a] of afterMap) {\n const b = beforeMap.get(k);\n if (!b) {\n const grants = BIT_LABELS.filter(([bit]) => a[bit] === true).map(([, label]) => label);\n lines.push(`'${a.permissionSet}' gains access to '${a.object}' (${grants.join(', ') || 'no bits set'})`);\n continue;\n }\n for (const [bit, label] of BIT_LABELS) {\n if (b[bit] !== a[bit]) {\n lines.push(`'${a.permissionSet}' ${a[bit] ? 'gains' : 'loses'} ${label} on '${a.object}'`);\n }\n }\n if ((b.readScope ?? 'own') !== (a.readScope ?? 'own')) {\n lines.push(`'${a.permissionSet}' read depth on '${a.object}': ${b.readScope ?? 'own'} → ${a.readScope ?? 'own'}`);\n }\n if ((b.writeScope ?? 'own') !== (a.writeScope ?? 'own')) {\n lines.push(`'${a.permissionSet}' write depth on '${a.object}': ${b.writeScope ?? 'own'} → ${a.writeScope ?? 'own'}`);\n }\n if ((b.sharingModel ?? '') !== (a.sharingModel ?? '')) {\n lines.push(`'${a.object}' record baseline (OWD): ${b.sharingModel ?? '(unset)'} → ${a.sharingModel ?? '(unset)'} (affects every principal)`);\n }\n }\n return lines;\n}\n"],"mappings":"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","names":["asArray","asArray","asArray","asArray","asArray","asArray","createRequire","asArray","asArray","asArray","asArray","asArray","asArray","asArray","asArray","asArray","asArray","asArray"]}
1
+ {"version":3,"sources":["../src/validate-widget-bindings.ts","../src/validate-expressions.ts","../src/validate-list-view-mode.ts","../src/validate-flow-trigger-readiness.ts","../src/validate-flow-template-paths.ts","../src/validate-readonly-flow-writes.ts","../src/validate-view-containers.ts","../src/validate-responsive-styles.ts","../src/validate-jsx-pages.ts","../src/validate-react-pages.ts","../src/validate-react-page-props.ts","../src/validate-page-source-styling.ts","../src/validate-record-title.ts","../src/validate-semantic-roles.ts","../src/validate-form-layout.ts","../src/validate-visibility-predicates.ts","../src/validate-capability-references.ts","../src/validate-approval-approvers.ts","../src/validate-seed-replay-safety.ts","../src/validate-seed-state-machine.ts","../src/validate-security-posture.ts","../src/validate-org-axis-red-lines.ts","../src/validate-dashboard-action-refs.ts","../src/validate-filter-tokens.ts","../src/validate-object-references.ts","../src/page-walk.ts","../src/validate-action-name-refs.ts","../src/validate-page-field-bindings.ts","../src/validate-chart-bindings.ts","../src/validate-nav-access.ts","../src/build-access-matrix.ts","../src/validate-translation-references.ts","../src/validate-ai-surface-affinity.ts","../src/validate-ai-tool-references.ts","../src/validate-ai-agent-authoring.ts","../src/reference-integrity-suite.ts"],"sourcesContent":["// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\nimport { isIncoherentAggregate } from '@objectstack/spec/data';\n\n/**\n * Build-time dashboard widget binding diagnostics (issues #1719, #1721).\n *\n * Runs at `objectstack validate`/`compile`/`build` AFTER the stack has been\n * schema-parsed, so every widget's `dataset` reference can be linked to its\n * `defineDataset` and each entry in `dimensions`/`values` resolved to a\n * declared dimension/measure. This is the semantic/cross-reference phase —\n * the rules here cannot run during plain Zod parsing of the raw widget\n * literal (the dataset may even live in another package of the stack).\n *\n * Reference-integrity rules (#1721) — severity `error`, the page is broken:\n *\n * - `widget-dataset-unknown` — `dataset` does not resolve to a declared\n * `Dataset`.\n * - `widget-dimension-unknown` — a `dimensions[]` entry is not a dimension\n * name on the bound dataset.\n * - `widget-measure-unknown` — a `values[]` entry is not a measure name on\n * the bound dataset.\n * - `chart-field-unknown` — a `chartConfig` binding names a field the query\n * result will not contain: `xAxis.field` must be one of the widget's\n * dimensions (or a dataset dimension), and each `yAxis[].field` /\n * `series[].name` must be one of the widget's selected measures\n * (`values`). Post-cutover (ADR-0021) the result rows are keyed by\n * measure NAME (e.g. `sum_amount`), not the base column (`amount`) — a\n * stale base-column reference renders the axis but an empty series.\n * - `widget-legacy-analytics-unrenderable` (#1878/#1894) — a widget uses the\n * removed pre-ADR-0021 inline-analytics shape (`categoryField`/`rowField`/…)\n * as its ONLY data wiring: no `dataset`, no `object`, no inline `data`. The\n * renderer reads only the dataset path, so the widget has no data at all and\n * renders nothing. Errored (not warned) so this class of authoring mistake —\n * very often an AI emitting a removed shape — fails the build instead of\n * shipping a blank widget past human review.\n * - `dashboard-filter-field-unknown` (#3365) — a dashboard-level filter\n * (`dateRange` or a `globalFilters[]` entry) is wired into EVERY widget's\n * analytics query (#2501), but its EFFECTIVE field (after any `filterBindings`\n * re-target) does not exist on a bound widget's dataset object. The widget's\n * query then references a non-existent column and crashes at render time\n * (`no such column …`) — a build-decidable invariant that previously escaped\n * the static gate and failed only when a user opened the dashboard. A widget\n * opts out with `filterBindings: { <name>: false }` or re-targets to a real\n * field. This is the same field-existence invariant ADR-0032 enforces for\n * CEL formula / sharing-rule references, applied to dashboard filter fields.\n *\n * Advisory rules — severity `warning`, build stays green:\n *\n * - `chart-config-missing` — a chart-type widget (bar/line/pie/…) has no\n * `chartConfig`, so the renderer cannot tell which measure to plot.\n * - `table-count-only` (#1719) — a `table`/`pivot` widget whose selected\n * measures are ALL `aggregate: 'count'` and which declares no\n * `dimensions` asks the analytics service for a single summary row. That\n * is the shape a `metric` widget wants — for a table it almost always\n * means the author wanted a per-record listing, which is not an\n * analytics dataset at all (model it as an object-bound ListView,\n * ADR-0017). Evaluated on the WIDGET's binding, not the dataset.\n * - `measure-aggregate-incoherent` — a dataset measure aggregates its field\n * in a way that produces a meaningless number: today, SUM (or\n * `count_distinct`) of a `percent`/rate field, whose total routinely\n * exceeds 100%. Rates must AVG. Checked once per dataset (independent of\n * any widget) when the bound object's field types are known.\n * - `widget-legacy-analytics-shape` (#1878/#1894) — a widget sets a\n * pre-ADR-0021 inline key (`categoryField`/`valueField`/`xAxisField`/\n * `yAxisFields`/`aggregate`/`aggregation`/`rowField`/`columnField`) that the\n * single-form cutover removed. The dashboard renderer routes dataset-bound\n * widgets through `DatasetWidget` and never reads these, so they are a\n * silent no-op. Steers the author onto `dataset`+`dimensions`+`values`.\n *\n * Warnings can be deliberately suppressed per widget via\n * `suppressWarnings: ['<rule-id>']`; errors cannot — they describe a\n * binding the analytics service cannot satisfy.\n */\n\nexport const WIDGET_DATASET_UNKNOWN = 'widget-dataset-unknown';\nexport const WIDGET_DIMENSION_UNKNOWN = 'widget-dimension-unknown';\nexport const WIDGET_MEASURE_UNKNOWN = 'widget-measure-unknown';\nexport const CHART_FIELD_UNKNOWN = 'chart-field-unknown';\nexport const CHART_CONFIG_MISSING = 'chart-config-missing';\nexport const TABLE_COUNT_ONLY = 'table-count-only';\nexport const MEASURE_AGGREGATE_INCOHERENT = 'measure-aggregate-incoherent';\nexport const WIDGET_LEGACY_ANALYTICS_SHAPE = 'widget-legacy-analytics-shape';\nexport const WIDGET_LEGACY_ANALYTICS_UNRENDERABLE = 'widget-legacy-analytics-unrenderable';\nexport const DASHBOARD_FILTER_FIELD_UNKNOWN = 'dashboard-filter-field-unknown';\n\n/**\n * Pre-ADR-0021 inline-analytics keys. The single-form cutover replaced them\n * with the semantic-layer shape (`dataset` + `dimensions` + `values`); the\n * dashboard renderer routes dataset-bound widgets through `DatasetWidget` and\n * never reads these, so authoring one today is a silent no-op. Warned (not\n * errored) because they still parse and a legacy object-bound widget keeps\n * rendering — the author is just being steered to the governed shape.\n * (liveness audit #1878 / #1894).\n *\n * Interplay with `DashboardWidgetSchema.strict()` (framework#3251, protocol 16):\n * on the schema-parsed CLI paths (`compile`, `validate`) strict rejects these\n * keys as a hard parse error *before* binding validation runs, so these rules\n * are effectively preempted there. They remain the friendly, suppressible\n * bridge on the raw-config paths (`lint`, `doctor`) that hand\n * `validateWidgetBindings` un-parsed config — keeping the actionable\n * \"steer to the dataset shape\" message rather than a bare unknown-key error.\n */\nconst LEGACY_ANALYTICS_KEYS = [\n 'categoryField', 'valueField', 'xAxisField', 'yAxisFields',\n 'aggregate', 'aggregation', 'rowField', 'columnField',\n] as const;\n\nexport type WidgetBindingSeverity = 'error' | 'warning';\n\nexport interface WidgetBindingFinding {\n /** `error` = unresolvable binding (broken page); `warning` = advisory. */\n severity: WidgetBindingSeverity;\n /** Diagnostic rule id (registry entry), e.g. `widget-measure-unknown`. */\n rule: string;\n /** Human-readable location, e.g. `dashboard \"x\" › widget \"y\"`. */\n where: string;\n /** Config path, e.g. `dashboards[0].widgets[3]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix (or deliberately suppress) it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction asStrings(v: unknown): string[] {\n return Array.isArray(v) ? v.filter((s): s is string => typeof s === 'string') : [];\n}\n\n/**\n * Chart families whose renderer needs a `chartConfig` measure mapping.\n * Single-value types (metric/kpi/gauge/…) plot their lone value and tabular\n * types (table/pivot) render every column, so they are exempt.\n */\nconst CHART_TYPES = new Set([\n 'bar', 'horizontal-bar', 'column',\n 'line', 'area',\n 'pie', 'donut', 'funnel',\n 'scatter', 'treemap', 'sankey', 'radar',\n]);\n\nfunction levenshtein(a: string, b: string): number {\n const m = a.length, n = b.length;\n let prev = Array.from({ length: n + 1 }, (_, j) => j);\n for (let i = 1; i <= m; i++) {\n const cur = [i];\n for (let j = 1; j <= n; j++) {\n cur[j] = Math.min(\n prev[j] + 1,\n cur[j - 1] + 1,\n prev[j - 1] + (a[i - 1] === b[j - 1] ? 0 : 1),\n );\n }\n prev = cur;\n }\n return prev[n];\n}\n\n/**\n * Nearest declared name for a typo'd/stale reference, or undefined when\n * nothing is close. Containment is checked first because the cutover's\n * canonical drift is base column → prefixed measure name (`amount` →\n * `sum_amount`), which is far in edit distance but obvious to a human.\n */\nfunction didYouMean(input: string, candidates: Iterable<string>): string | undefined {\n let best: string | undefined;\n let bestScore = Infinity;\n for (const c of candidates) {\n let score: number;\n if (input.length >= 3 && (c.includes(input) || input.includes(c))) {\n score = Math.abs(c.length - input.length);\n } else {\n const d = levenshtein(input, c);\n if (d > Math.max(2, Math.floor(input.length / 3))) continue;\n score = 100 + d;\n }\n if (score < bestScore) { bestScore = score; best = c; }\n }\n return best;\n}\n\nfunction suggest(input: string, candidates: Iterable<string>): string {\n const s = didYouMean(input, candidates);\n return s ? ` Did you mean \"${s}\"?` : '';\n}\n\nfunction list(names: Iterable<string>): string {\n const arr = [...names];\n return arr.length > 0 ? arr.join(', ') : '(none)';\n}\n\n// ── dashboard-filter field-existence (#3365) ─────────────────────────────────\n\n/** Reserved filter name for the dashboard's built-in date range (#2501). */\nconst DATE_RANGE_FILTER_NAME = 'dateRange';\n/**\n * Default field of the built-in date range when `dateRange.field` is omitted.\n * MUST track objectui `dashboard-filters.ts` `DATE_RANGE_DEFAULT_FIELD` — the\n * runtime this check shadows. `created_at` is a registry-injected system field\n * (below), so a bare `dateRange` never false-positives.\n */\nconst DATE_RANGE_DEFAULT_FIELD = 'created_at';\n\n/**\n * Registry-injected fields present on (almost) every object but NOT declared in\n * `object.fields`, so a dashboard filter targeting one must not be flagged as a\n * missing column. Superset of the objectql registry's `applySystemFields`\n * (audit columns, ownership, tenant, soft-delete) and spec's `SystemFieldName`.\n * Deliberately generous: the cost of over-inclusion is at worst a missed error\n * on a `systemFields: false` object (rare); the cost of under-inclusion is a\n * false build failure on the ubiquitous `dateRange` → `created_at` default. The\n * near-zero-false-positive bias mirrors ADR-0032's field-ref validator.\n */\nconst SYSTEM_FIELDS = new Set<string>([\n 'id',\n 'created_at', 'created_by', 'updated_at', 'updated_by',\n 'owner_id', 'organization_id', 'tenant_id', 'user_id',\n 'deleted_at',\n]);\n\ninterface DashFilterDef {\n /** Stable filter name — the key widgets bind against in `filterBindings`. */\n name: string;\n /** Default target field when a widget declares no explicit binding. */\n field: string;\n /** Legacy widget-id allow-list; gates the DEFAULT binding only. */\n targetWidgets?: string[];\n}\n\n/**\n * Normalize a dashboard's declared filters into `{ name, field, targetWidgets }`\n * defs — the built-in `dateRange` (reserved name) first, then every\n * `globalFilters[]` entry named by its `name` (defaulting to `field`). Later\n * duplicates win. Mirrors objectui `resolveDashboardFilterDefs`.\n */\nfunction dashboardFilterDefs(dash: AnyRec): DashFilterDef[] {\n const byName = new Map<string, DashFilterDef>();\n\n const dateRange = dash.dateRange;\n if (dateRange && typeof dateRange === 'object') {\n const declared = (dateRange as AnyRec).field;\n const field = typeof declared === 'string' && declared ? declared : DATE_RANGE_DEFAULT_FIELD;\n byName.set(DATE_RANGE_FILTER_NAME, { name: DATE_RANGE_FILTER_NAME, field });\n }\n\n for (const f of asArray(dash.globalFilters)) {\n if (typeof f.field !== 'string' || !f.field) continue;\n const name = typeof f.name === 'string' && f.name ? f.name : f.field;\n const targetWidgets = Array.isArray(f.targetWidgets)\n ? f.targetWidgets.filter((w): w is string => typeof w === 'string')\n : undefined;\n byName.set(name, { name, field: f.field, targetWidgets });\n }\n\n return [...byName.values()];\n}\n\n/**\n * Resolve which field of `widget` a filter binds to, or `undefined` when the\n * widget is not bound (opted out / not targeted). Precedence mirrors objectui\n * `resolveBoundField`: explicit `filterBindings` entry (string re-targets,\n * `false` opts out — both win) → legacy `targetWidgets` allow-list → the\n * filter's own default `field`. `explicit` distinguishes an author-chosen field\n * (a typo they must fix) from the inherited default (which they may opt out of).\n */\nfunction effectiveFilterField(\n widget: AnyRec,\n def: DashFilterDef,\n): { field: string; explicit: boolean } | undefined {\n const bindings = widget.filterBindings;\n const binding = bindings && typeof bindings === 'object'\n ? (bindings as AnyRec)[def.name]\n : undefined;\n if (binding === false) return undefined;\n if (typeof binding === 'string' && binding) return { field: binding, explicit: true };\n if (def.targetWidgets && def.targetWidgets.length > 0) {\n const id = typeof widget.id === 'string' ? widget.id : undefined;\n if (!id || !def.targetWidgets.includes(id)) return undefined;\n }\n return { field: def.field, explicit: false };\n}\n\n/**\n * Validate every dashboard widget's dataset binding. Returns the list of\n * findings (empty = clean). Caller decides how to surface them: `error`\n * findings describe bindings the analytics service cannot satisfy and\n * should fail validate/build; `warning` findings are advisory and must\n * never fail the build on their own.\n */\nexport function validateWidgetBindings(stack: AnyRec): WidgetBindingFinding[] {\n const findings: WidgetBindingFinding[] = [];\n\n const datasets = new Map<string, AnyRec>();\n for (const ds of asArray(stack.datasets)) {\n if (typeof ds.name === 'string') datasets.set(ds.name, ds);\n }\n\n // ── (0) dataset measures aggregate their field coherently ──\n // A measure that SUMs a percentage/rate field produces a meaningless total\n // (it can exceed 100%); rates must AVG. This is a dataset-level defect (it\n // does not depend on any widget), so it is checked once over every dataset\n // whose object's field types are known. Advisory — the page still renders.\n const objectFieldTypes = new Map<string, Map<string, string>>();\n for (const o of asArray(stack.objects)) {\n if (typeof o.name !== 'string') continue;\n const fm = new Map<string, string>();\n for (const f of asArray(o.fields)) {\n if (typeof f.name === 'string' && typeof f.type === 'string') fm.set(f.name, f.type);\n }\n objectFieldTypes.set(o.name, fm);\n }\n const datasetList = asArray(stack.datasets);\n for (let i = 0; i < datasetList.length; i++) {\n const ds = datasetList[i];\n const fieldTypes = typeof ds.object === 'string' ? objectFieldTypes.get(ds.object) : undefined;\n if (!fieldTypes) continue; // cannot judge without the object's field types\n const dsMeasures = asArray(ds.measures);\n for (let k = 0; k < dsMeasures.length; k++) {\n const m = dsMeasures[k];\n const field = typeof m.field === 'string' ? m.field : undefined;\n const aggregate = typeof m.aggregate === 'string' ? m.aggregate : undefined;\n if (!field || !aggregate) continue; // count(*) and underivable measures are fine\n const ftype = fieldTypes.get(field);\n if (ftype && isIncoherentAggregate(aggregate, ftype)) {\n findings.push({\n severity: 'warning',\n rule: MEASURE_AGGREGATE_INCOHERENT,\n where: `dataset \"${typeof ds.name === 'string' ? ds.name : `(dataset ${i})`}\" › measure \"${typeof m.name === 'string' ? m.name : `(measure ${k})`}\"`,\n path: `datasets[${i}].measures[${k}]`,\n message:\n `measure \"${m.name}\" applies ${aggregate} to ${ftype} field \"${field}\" — ` +\n `summed percentages are meaningless (they can exceed 100%).`,\n hint:\n `Use aggregate \"avg\" for percentage/rate fields (or \"count\" of records). ` +\n `If a running total is genuinely intended, suppress with: ` +\n `suppressWarnings: ['${MEASURE_AGGREGATE_INCOHERENT}'] on the measure.`,\n });\n }\n }\n }\n\n const dashboards = asArray(stack.dashboards);\n for (let i = 0; i < dashboards.length; i++) {\n const dash = dashboards[i];\n const dashName = typeof dash.name === 'string' ? dash.name : `(dashboard ${i})`;\n const widgets = Array.isArray(dash.widgets) ? (dash.widgets as AnyRec[]) : [];\n // Dashboard-level filters (`dateRange` + `globalFilters`) are broadcast into\n // every widget's query (#2501) — resolved once here, checked per widget below.\n const dashFilterDefs = dashboardFilterDefs(dash);\n\n for (let j = 0; j < widgets.length; j++) {\n const w = widgets[j];\n const widgetId = typeof w.id === 'string' ? w.id : `(widget ${j})`;\n const where = `dashboard \"${dashName}\" › widget \"${widgetId}\"`;\n const path = `dashboards[${i}].widgets[${j}]`;\n const suppressed = (rule: string): boolean =>\n Array.isArray(w.suppressWarnings) && w.suppressWarnings.includes(rule);\n const push = (f: Omit<WidgetBindingFinding, 'where' | 'path'>): void => {\n if (f.severity === 'warning' && suppressed(f.rule)) return;\n findings.push({ ...f, where, path });\n };\n\n // ── (a0) legacy pre-ADR-0021 analytics shape ──\n // Steer authors (very often an AI) off the removed inline shape and onto\n // the semantic-layer `dataset`+`dimensions`+`values`. The renderer reads\n // ONLY the dataset path, so these keys are dead. Two severities:\n // • ERROR — the legacy keys are the widget's only (dead) data wiring\n // (no dataset / object / inline data): it renders nothing.\n // • warning — a data source is present, so the widget still renders and\n // the legacy keys are merely ignored noise (suppressible).\n const legacyUsed = LEGACY_ANALYTICS_KEYS.filter((k) => w[k] !== undefined);\n if (legacyUsed.length > 0) {\n const optionsData =\n typeof w.options === 'object' && w.options !== null &&\n (w.options as AnyRec).data !== undefined;\n const hasDataSource =\n w.dataset !== undefined || w.object !== undefined ||\n w.data !== undefined || optionsData;\n const keyList = legacyUsed.map((k) => `\\`${k}\\``).join(', ');\n const plural = legacyUsed.length > 1;\n const datasetHint =\n `Bind a semantic dataset and select fields BY NAME: ` +\n `\\`dataset: '<name>', dimensions: [...], values: [...]\\`. ` +\n `Dataset-bound widgets render through DatasetWidget (pivot rows/cols come from ` +\n `\\`dimensions\\`, cell values from \\`values\\`).`;\n if (!hasDataSource) {\n push({\n severity: 'error',\n rule: WIDGET_LEGACY_ANALYTICS_UNRENDERABLE,\n message:\n `sets legacy analytics key${plural ? 's' : ''} ${keyList} ` +\n `(removed by the ADR-0021 single-form cutover) and binds no data source ` +\n `(no \\`dataset\\`, \\`object\\`, or inline \\`data\\`) — it renders nothing.`,\n hint:\n `${datasetHint} The renderer ignores the legacy keys, so without a data ` +\n `source this widget has no data at all.`,\n });\n } else {\n push({\n severity: 'warning',\n rule: WIDGET_LEGACY_ANALYTICS_SHAPE,\n message:\n `sets legacy analytics key${plural ? 's' : ''} ${keyList} that the ADR-0021 ` +\n `single-form cutover removed — the dashboard renderer ignores ${plural ? 'them' : 'it'}.`,\n hint:\n `${datasetHint} These inline keys are a no-op. ` +\n `Suppress with suppressWarnings: ['${WIDGET_LEGACY_ANALYTICS_SHAPE}'] if intentional.`,\n });\n }\n }\n\n // ── (a) dataset reference resolves ──\n const dsName = typeof w.dataset === 'string' ? w.dataset : undefined;\n const dataset = dsName ? datasets.get(dsName) : undefined;\n if (dsName && !dataset) {\n push({\n severity: 'error',\n rule: WIDGET_DATASET_UNKNOWN,\n message: `dataset \"${dsName}\" does not resolve to a declared dataset.`,\n hint:\n `Declared datasets: ${list(datasets.keys())}.${suggest(dsName, datasets.keys())} ` +\n `Define the dataset with defineDataset() or fix the reference (ADR-0021).`,\n });\n }\n // A widget with NO `dataset` key at all. `DashboardWidgetSchema.dataset`\n // is REQUIRED, so the schema-parsed paths (`compile`, `validate`) reject\n // this before we run — but `lint`/`doctor` hand us raw, un-parsed config,\n // where it previously fell into the `continue` below and silently\n // bypassed EVERY binding and chart check (issue #3583). Report it rather\n // than skip: an unbound widget resolves no data and renders empty.\n if (!dsName) {\n push({\n severity: 'error',\n rule: WIDGET_DATASET_UNKNOWN,\n message:\n `binds no \\`dataset\\` — the ADR-0021 widget shape requires one, so this ` +\n `widget resolves no data and renders empty.`,\n hint:\n `Set \\`dataset: '<name>'\\` (plus \\`values\\`, and \\`dimensions\\` where the chart ` +\n `family needs them). Declared datasets: ${list(datasets.keys())}.`,\n });\n continue;\n }\n // A named-but-unresolvable dataset was already reported above; either way\n // there is nothing left to check names against.\n if (!dataset) continue;\n\n // ── (a1) dashboard filter fields exist on the widget's object (#3365) ──\n // Each dashboard-level filter is ANDed into this widget's analytics query\n // (#2501); a filter whose EFFECTIVE field (after `filterBindings`) is not a\n // column on the bound dataset object emits SQL like `WHERE close_date …`\n // against a table without that column and the widget crashes at query time.\n // Errored (not warned): a broken query, not advice. The opt-out is the\n // author's own `filterBindings: { <name>: false }`, so no suppression needed.\n if (dashFilterDefs.length > 0) {\n const datasetObject = typeof dataset.object === 'string' ? dataset.object : undefined;\n // Only judge when the bound object's fields are known in THIS stack; an\n // object from another installed package is unknowable here — skip rather\n // than false-positive (mirrors the measure-aggregate check above).\n const objectFields = datasetObject ? objectFieldTypes.get(datasetObject) : undefined;\n if (objectFields) {\n for (const def of dashFilterDefs) {\n const eff = effectiveFilterField(w, def);\n if (!eff) continue; // opted out / not targeted → filter never applies\n const field = eff.field;\n // A relationship path (`account.region`) is resolved by the query\n // engine, not a base column, so it can't be checked here — skip it.\n if (field.includes('.')) continue;\n if (objectFields.has(field) || SYSTEM_FIELDS.has(field)) continue;\n push({\n severity: 'error',\n rule: DASHBOARD_FILTER_FIELD_UNKNOWN,\n message: eff.explicit\n ? `binds dashboard filter \\`${def.name}\\` to field \\`${field}\\` ` +\n `(via filterBindings), but object \\`${datasetObject}\\` (dataset \"${dsName}\") ` +\n `has no field \\`${field}\\`.`\n : `inherits dashboard filter \\`${def.name}(${field})\\`, but object ` +\n `\\`${datasetObject}\\` (dataset \"${dsName}\") has no field \\`${field}\\`.`,\n hint: eff.explicit\n ? `Point filterBindings: { ${def.name}: '<field>' } at a field that exists on ` +\n `\\`${datasetObject}\\`, or opt out with filterBindings: { ${def.name}: false }.` +\n `${suggest(field, objectFields.keys())} Object fields: ${list(objectFields.keys())}.`\n : `Set filterBindings: { ${def.name}: false } on this widget to opt out, or ` +\n `re-target to an existing field with filterBindings: { ${def.name}: '<field>' }.` +\n `${suggest(field, objectFields.keys())} Object fields: ${list(objectFields.keys())}.`,\n });\n }\n }\n }\n\n const dimensionNames = new Set<string>();\n for (const d of asArray(dataset.dimensions)) {\n if (typeof d.name === 'string') dimensionNames.add(d.name);\n }\n const measures = new Map<string, AnyRec>();\n for (const m of asArray(dataset.measures)) {\n if (typeof m.name === 'string') measures.set(m.name, m);\n }\n\n // ── (b) every dimensions[] entry is a dataset dimension ──\n const dims = asStrings(w.dimensions);\n for (let k = 0; k < dims.length; k++) {\n if (dimensionNames.has(dims[k])) continue;\n push({\n severity: 'error',\n rule: WIDGET_DIMENSION_UNKNOWN,\n message:\n `dimensions[${k}] \"${dims[k]}\" is not a dimension of dataset ` +\n `\"${dsName}\" (declared dimensions: ${list(dimensionNames)}).`,\n hint:\n `Widgets select dataset dimensions BY NAME.${suggest(dims[k], dimensionNames)} ` +\n `Add the dimension to the dataset or fix the reference.`,\n });\n }\n\n // ── (c) every values[] entry is a dataset measure ──\n const values = asStrings(w.values);\n for (let k = 0; k < values.length; k++) {\n if (measures.has(values[k])) continue;\n push({\n severity: 'error',\n rule: WIDGET_MEASURE_UNKNOWN,\n message:\n `values[${k}] \"${values[k]}\" is not a measure of dataset ` +\n `\"${dsName}\" (declared measures: ${list(measures.keys())}).`,\n hint:\n `Widgets select dataset measures BY NAME, not by base column.` +\n `${suggest(values[k], measures.keys())} ` +\n `Add the measure to the dataset or fix the reference.`,\n });\n }\n\n // ── (d) chartConfig bindings resolve against the widget's selection ──\n const chartConfig = (w.chartConfig && typeof w.chartConfig === 'object')\n ? (w.chartConfig as AnyRec)\n : undefined;\n const isChartType = typeof w.type === 'string' && CHART_TYPES.has(w.type);\n\n if (chartConfig) {\n // The query result carries the widget's selected dimensions and\n // measures; resolve every chartConfig field against that shape.\n const selectedValues = new Set(values.filter((v) => measures.has(v)));\n\n const xAxis = (chartConfig.xAxis && typeof chartConfig.xAxis === 'object')\n ? (chartConfig.xAxis as AnyRec)\n : undefined;\n // A field naming an entry of the widget's own (already-validated)\n // selection is not re-reported here — rules (b)/(c) own that error.\n if (xAxis && typeof xAxis.field === 'string'\n && !dimensionNames.has(xAxis.field) && !dims.includes(xAxis.field)) {\n push({\n severity: 'error',\n rule: CHART_FIELD_UNKNOWN,\n message:\n `chartConfig.xAxis.field \"${xAxis.field}\" does not resolve to a ` +\n `dimension of dataset \"${dsName}\" (declared dimensions: ${list(dimensionNames)}).`,\n hint: `Point xAxis.field at a dataset dimension name.${suggest(xAxis.field, dimensionNames)}`,\n });\n }\n\n const measureField = (label: string, field: string): void => {\n if (values.includes(field)) return; // resolvable, or already errored via rule (c)\n const declaredButUnselected = measures.has(field);\n push({\n severity: 'error',\n rule: CHART_FIELD_UNKNOWN,\n message: declaredButUnselected\n ? `chartConfig.${label} \"${field}\" is a measure of dataset \"${dsName}\" ` +\n `but is not selected in the widget's values (${list(values)}), so the ` +\n `query result will not contain it.`\n : `chartConfig.${label} \"${field}\" does not resolve to a measure of ` +\n `dataset \"${dsName}\" (declared measures: ${list(measures.keys())}).`,\n hint: declaredButUnselected\n ? `Add \"${field}\" to the widget's values, or bind the chart to a selected measure.`\n : `Post-cutover data is keyed by the dataset's measure NAME, not the ` +\n `base column.${suggest(field, selectedValues.size > 0 ? selectedValues : measures.keys())}`,\n });\n };\n\n const yAxes = Array.isArray(chartConfig.yAxis) ? (chartConfig.yAxis as AnyRec[]) : [];\n for (let k = 0; k < yAxes.length; k++) {\n const field = yAxes[k]?.field;\n if (typeof field === 'string') measureField(`yAxis[${k}].field`, field);\n }\n const series = Array.isArray(chartConfig.series) ? (chartConfig.series as AnyRec[]) : [];\n for (let k = 0; k < series.length; k++) {\n const name = series[k]?.name;\n if (typeof name === 'string') measureField(`series[${k}].name`, name);\n }\n } else if (isChartType) {\n push({\n severity: 'warning',\n rule: CHART_CONFIG_MISSING,\n message:\n `chart-type widget ('${w.type}') has no chartConfig — the renderer ` +\n `cannot determine which measure to plot, so the series renders empty.`,\n hint:\n `Add chartConfig with xAxis.field set to a dimension (${list(dims)}) and ` +\n `yAxis[].field set to a measure name (${list(values)}). If the default ` +\n `rendering is intentional, suppress with: suppressWarnings: ['${CHART_CONFIG_MISSING}']`,\n });\n }\n\n // ── (e) table/pivot bound to a count-only, dimensionless selection ──\n if (w.type !== 'table' && w.type !== 'pivot') continue;\n // Grouped by at least one dimension → genuinely aggregated rows.\n if (dims.length > 0) continue;\n if (values.length === 0) continue;\n const resolved = values.map((v) => measures.get(v));\n // An unresolvable measure name already errored above — don't guess here.\n if (resolved.some((m) => !m)) continue;\n\n // Derived measures combine other measures; treat them as non-count even\n // when their (ignored) `aggregate` says otherwise.\n const countOnly = resolved.every((m) => m!.aggregate === 'count' && !m!.derived);\n if (!countOnly) continue;\n\n push({\n severity: 'warning',\n rule: TABLE_COUNT_ONLY,\n message:\n `a '${w.type}' widget bound to dataset \"${dsName}\" selects only count ` +\n `measure(s) (${values.join(', ')}) and no dimensions, so it renders a ` +\n `single summary row — not a per-record list.`,\n hint:\n `A flat record listing is not an analytics dataset. Model it as an ` +\n `object-bound ListView (ADR-0017) surfaced through app navigation, and ` +\n `use a 'metric' widget here if you only need the count. If a single-row ` +\n `table is intentional, add an explicit dimension or suppress with: ` +\n `suppressWarnings: ['${TABLE_COUNT_ONLY}']`,\n });\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * Build-time expression validation (ADR-0032 §Decision 1a + 1b).\n *\n * Runs at `objectstack compile`, where the whole normalized stack is in hand —\n * so flow conditions can be checked against the *resolved* object schema\n * (field existence) in addition to CEL syntax. Uses the one shared validator\n * from `@objectstack/formula`, so the verdict matches `registerFlow` and the\n * agent `validate_expression` tool exactly.\n *\n * Scope (v1): flow predicates (start/decision `config.condition` + edge\n * `condition`), object validation-rule / formula predicates, and UI action\n * `visible` / `disabled` predicates. Each error is located (flow/object/action\n * + node/edge/field) with a corrective message.\n */\n\nimport { validateExpression } from '@objectstack/formula';\n\nexport interface ExprIssue {\n where: string;\n message: string;\n source: string;\n /**\n * `error` fails the build (e.g. a bare ref in a record-scoped formula). `warning`\n * is advisory and never fails it (e.g. a possible field typo in a flattened flow\n * condition, which might be a flow variable). Absent ⇒ treat as `error`.\n */\n severity?: 'error' | 'warning';\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce an `objects` collection (array or name-keyed map) to an array. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** object name → set of its field names, for schema-aware field checks. */\nfunction buildFieldIndex(objects: AnyRec[]): Map<string, string[]> {\n const idx = new Map<string, string[]>();\n for (const obj of objects) {\n const name = typeof obj.name === 'string' ? obj.name : undefined;\n if (!name) continue;\n const fields = obj.fields;\n let names: string[] = [];\n if (Array.isArray(fields)) names = fields.map(f => (f as AnyRec).name).filter((n): n is string => typeof n === 'string');\n else if (fields && typeof fields === 'object') names = Object.keys(fields as AnyRec);\n idx.set(name, names);\n }\n return idx;\n}\n\n/**\n * object name → (field name → field type), for the #1928 tier-4 type-soundness\n * check. Handles both `fields` shapes (array of `{name, type}` and name-keyed\n * map). Fields with a non-string `type` are simply omitted (treated as `dyn`).\n */\nfunction buildFieldTypeIndex(objects: AnyRec[]): Map<string, Record<string, string>> {\n const idx = new Map<string, Record<string, string>>();\n for (const obj of objects) {\n const name = typeof obj.name === 'string' ? obj.name : undefined;\n if (!name) continue;\n const fields = obj.fields;\n const types: Record<string, string> = {};\n if (Array.isArray(fields)) {\n for (const f of fields as AnyRec[]) {\n const fn = (f as AnyRec)?.name;\n const ft = (f as AnyRec)?.type;\n if (typeof fn === 'string' && typeof ft === 'string') types[fn] = ft;\n }\n } else if (fields && typeof fields === 'object') {\n for (const [fn, def] of Object.entries(fields as AnyRec)) {\n const ft = (def as AnyRec)?.type;\n if (typeof ft === 'string') types[fn] = ft;\n }\n }\n idx.set(name, types);\n }\n return idx;\n}\n\n/**\n * Validate every predicate in the stack. Returns the list of issues (empty =\n * clean). Caller decides how to surface / whether to fail the build.\n */\nexport function validateStackExpressions(stack: AnyRec): ExprIssue[] {\n const issues: ExprIssue[] = [];\n const objects = asArray(stack.objects);\n const fieldIndex = buildFieldIndex(objects);\n const fieldTypeIndex = buildFieldTypeIndex(objects);\n\n const check = (\n where: string,\n raw: unknown,\n objectName?: string,\n scope: 'record' | 'flattened' = 'flattened',\n ): void => {\n if (raw == null) return;\n const fields = objectName ? fieldIndex.get(objectName) : undefined;\n // Field types feed the #1928 tier-4 soundness warning; only consulted for\n // `record`-scoped sites, so it is harmless to pass for flattened ones too.\n const fieldTypes = objectName ? fieldTypeIndex.get(objectName) : undefined;\n const res = validateExpression('predicate', raw as string | { dialect?: string; source?: string },\n objectName ? { objectName, fields, fieldTypes, scope } : { scope });\n for (const e of res.errors) issues.push({ where, message: e.message, source: e.source, severity: 'error' });\n for (const w of res.warnings) issues.push({ where, message: w.message, source: w.source, severity: 'warning' });\n };\n\n // ── Flows ──────────────────────────────────────────────────────────\n for (const flow of asArray(stack.flows)) {\n const flowName = typeof flow.name === 'string' ? flow.name : '(unnamed flow)';\n const nodes = Array.isArray(flow.nodes) ? (flow.nodes as AnyRec[]) : [];\n const edges = Array.isArray(flow.edges) ? (flow.edges as AnyRec[]) : [];\n // The record-change target object — `record.*` refs resolve against it.\n const startNode = nodes.find(n => n.type === 'start');\n const startCfg = (startNode?.config ?? {}) as AnyRec;\n const objectName = typeof startCfg.objectName === 'string' ? startCfg.objectName : undefined;\n\n for (const node of nodes) {\n const cfg = (node.config ?? {}) as AnyRec;\n check(`flow '${flowName}' · node '${node.id}' (${node.type}) condition`, cfg.condition, objectName);\n // #1870 — a `script` node must declare a callable target (`actionType` or\n // `function`). A node with neither is a silent no-op that otherwise passes\n // build. (Function *existence* isn't checkable here — functions are code,\n // not serialized into the artifact — so this is a structural check; the\n // runtime verifies the named function is actually registered.)\n if (node.type === 'script') {\n // `function` is canonical; `functionName` is an accepted alias.\n const fn =\n (typeof cfg.function === 'string' ? cfg.function.trim() : '') ||\n (typeof cfg.functionName === 'string' ? cfg.functionName.trim() : '');\n const action = typeof cfg.actionType === 'string' ? cfg.actionType.trim() : '';\n // Inline `config.script` (a JS body) is also a declared form — the\n // built-in runtime doesn't execute it (warned at run time), but the node\n // is not the empty no-op this check targets, so don't flag it.\n const inline = typeof cfg.script === 'string' ? cfg.script.trim() : '';\n if (!fn && !action && !inline) {\n issues.push({\n where: `flow '${flowName}' · node '${node.id}' (script) callable`,\n message:\n `script node declares neither \\`actionType\\` nor \\`function\\` — it would do nothing at runtime. ` +\n `Name a built-in action (e.g. \\`actionType: 'email'\\`) or a registered function ` +\n `(\\`function: 'my_fn'\\`, registered via \\`defineStack({ functions })\\`).`,\n source: JSON.stringify({ id: node.id, type: node.type, config: cfg }),\n });\n } else if (action === 'invoke_function' && !fn) {\n // `actionType: 'invoke_function'` is a marker that names no callable on\n // its own — the function name must be in `function`/`functionName`.\n issues.push({\n where: `flow '${flowName}' · node '${node.id}' (script) callable`,\n message:\n `script node uses \\`actionType: 'invoke_function'\\` but no \\`function\\` (or \\`functionName\\`) — ` +\n `it names no callable. Set \\`function: 'my_fn'\\` and register it via \\`defineStack({ functions })\\`.`,\n source: JSON.stringify({ id: node.id, type: node.type, config: cfg }),\n });\n }\n }\n }\n for (const edge of edges) {\n check(`flow '${flowName}' · edge '${edge.id}' (${edge.source}→${edge.target}) condition`, edge.condition, objectName);\n }\n }\n\n // ── Object validation-rule + formula predicates ────────────────────\n for (const obj of objects) {\n const objectName = typeof obj.name === 'string' ? obj.name : undefined;\n const validations = obj.validations ?? obj.validationRules;\n for (const rule of asArray(validations)) {\n const where = `object '${objectName}' · validation '${(rule.name as string) ?? '?'}'`;\n // Common predicate keys across rule shapes. Validation predicates are\n // `record`-scoped — no field flattening — so bare refs are flagged (#1928).\n check(where, rule.expression ?? rule.predicate ?? rule.condition ?? rule.formula, objectName, 'record');\n // `conditional` rules carry a nested `when` predicate (record-scoped).\n check(`${where} when`, (rule as AnyRec).when, objectName, 'record');\n }\n // Field-level formulas (computed fields) reference the same object.\n const fields = obj.fields;\n const fieldList = Array.isArray(fields)\n ? (fields as AnyRec[])\n : (fields && typeof fields === 'object' ? Object.values(fields as AnyRec) as AnyRec[] : []);\n\n // (ADR-0062 D7's `field.columnName`-on-external-objects rejection was removed\n // with `field.columnName` itself in #2377: the field no longer exists, so there\n // is no dual-source ambiguity to guard — external column mapping is `external.columnMap`.)\n\n for (const f of fieldList) {\n // Field-level conditional rules are server-enforced (rule-validator) and\n // record-scoped — a bare ref silently fails the rule (required/readonly\n // not enforced = data-integrity hole). #1928 class, same as actions.\n if (f && typeof f === 'object') {\n const fname = (f.name as string) ?? '?';\n for (const key of ['requiredWhen', 'readonlyWhen', 'conditionalRequired', 'visibleWhen'] as const) {\n check(`object '${objectName}' · field '${fname}' ${key}`, (f as AnyRec)[key], objectName, 'record');\n }\n }\n if (f && typeof f === 'object' && f.formula) {\n // formulas are `value` role (any return type), still CEL. They are\n // `record`-scoped — `record.<field>`, never bare — so flag bare refs (#1928).\n const res = validateExpression('value', f.formula as string | { dialect?: string; source?: string },\n objectName ? { objectName, fields: fieldIndex.get(objectName), fieldTypes: fieldTypeIndex.get(objectName), scope: 'record' } : { scope: 'record' });\n const fieldWhere = `object '${objectName}' · field '${(f.name as string) ?? '?'}' formula`;\n for (const e of res.errors) issues.push({ where: fieldWhere, message: e.message, source: e.source, severity: 'error' });\n for (const w of res.warnings) issues.push({ where: fieldWhere, message: w.message, source: w.source, severity: 'warning' });\n }\n }\n }\n\n // ── Action `visible` / `disabled` predicates ───────────────────────\n // Record-scoped, same as validation rules: a record-header / row action's\n // `visible` is evaluated by ActionEngine against `{ record, recordId,\n // objectName, user, … }` with fail-closed semantics, so a BARE field ref\n // (`done` instead of `record.done`) throws and the action is silently hidden\n // on every record (the trap behind the #2183 \"Mark Done never hides\" hunt).\n // Flagging it here turns that into a build error with a corrective message.\n // `disabled` may be a boolean (skip) or a predicate (check).\n const seenActions = new Set<string>();\n const checkAction = (where: string, action: AnyRec, objectName?: string): void => {\n const obj = objectName\n ?? (typeof action.objectName === 'string' ? action.objectName : undefined)\n ?? (typeof action.object === 'string' ? action.object : undefined);\n const name = typeof action.name === 'string' ? action.name : '?';\n const key = `${obj ?? ''}:${name}`;\n if (seenActions.has(key)) return; // de-dup (actions are merged onto objects AND kept top-level)\n seenActions.add(key);\n check(`${where} · action '${name}' visible`, action.visible, obj, 'record');\n if (typeof action.disabled !== 'boolean') {\n check(`${where} · action '${name}' disabled`, action.disabled, obj, 'record');\n }\n };\n for (const action of asArray(stack.actions)) {\n checkAction('stack', action);\n }\n for (const obj of objects) {\n const objectName = typeof obj.name === 'string' ? obj.name : undefined;\n for (const action of asArray(obj.actions)) {\n checkAction(`object '${objectName}'`, action, objectName);\n }\n }\n\n // ── Sharing-rule predicates (security-critical, record-scoped) ─────\n // A criteria sharing rule's `condition` decides which rows a principal sees.\n // It is evaluated against the record, so a bare ref silently changes access.\n for (const rule of asArray(stack.sharingRules)) {\n const ruleObj = typeof rule.object === 'string' ? rule.object : undefined;\n const where = `sharingRule '${(rule.name as string) ?? '?'}'${ruleObj ? ` (${ruleObj})` : ''} condition`;\n check(where, rule.condition ?? rule.criteria ?? rule.predicate, ruleObj, 'record');\n }\n\n // ── Hook `condition` predicates (record-scoped gate) ───────────────\n // A lifecycle hook's `condition` skips the handler when false; it is\n // evaluated against the record, so a bare ref silently makes the hook\n // run on every record (or never) instead of the intended subset.\n for (const hook of asArray(stack.hooks)) {\n const hookName = (hook.name as string) ?? '?';\n if (typeof hook.object === 'string') {\n check(`hook '${hookName}' (${hook.object}) condition`, hook.condition, hook.object, 'record');\n continue;\n }\n\n // A hook may target MANY objects (`object: ['a','b']`). Previously any\n // non-string target dropped to `undefined`, so the condition got NO\n // field-awareness at all — a hook filtering on a field that exists on none\n // of its targets passed clean (issue #3583). The hook body runs against\n // each target in turn, so a ref missing from ANY of them silently\n // misbehaves there; validate per target and de-duplicate the\n // object-independent diagnostics (syntax/shape) that every pass repeats.\n const targets = Array.isArray(hook.object)\n ? (hook.object as unknown[]).filter((o): o is string => typeof o === 'string' && o !== '*')\n : [];\n if (targets.length === 0) {\n // `'*'` (or an unusable shape) — no single field set to judge against;\n // syntax/shape is still validated.\n check(`hook '${hookName}' condition`, hook.condition, undefined, 'record');\n continue;\n }\n\n const before = issues.length;\n const seen = new Set<string>();\n const kept: ExprIssue[] = [];\n for (const target of targets) {\n const mark = issues.length;\n check(`hook '${hookName}' (${target}) condition`, hook.condition, target, 'record');\n for (let i = mark; i < issues.length; i++) {\n const issue = issues[i];\n const key = `${issue.message}\\u0000${issue.source ?? ''}`;\n // Keep the first occurrence of each distinct diagnostic. A field-unknown\n // finding differs per target (it names the object), so each survives;\n // a syntax error is identical across targets and collapses to one.\n if (!seen.has(key)) {\n seen.add(key);\n kept.push(issue);\n }\n }\n }\n issues.length = before;\n issues.push(...kept);\n }\n\n return issues;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail for ADR-0047 list-view navigation modes.\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019), run from `os validate` and\n// reusable by AI authoring. It catches the \"wrong context\" authoring mistake\n// the type system alone cannot surface at author time on an object list view\n// (\"views\" mode — where the ViewTabBar owns the tab-bar role):\n// - `quickFilters` — never valid on an object list view;\n// - `userFilters` with `element: 'tabs'` (or carrying `tabs`) — the tab-bar\n// preset style is page-only; it would collide with the ViewTabBar.\n// A `dropdown` (value-chip) `userFilters` IS allowed on object views since the\n// ADR-0047 amendment (framework #2679 / objectui #2338) and is NOT flagged.\n//\n// Runs PRE-parse (on the normalizeStackInput output, before the\n// ObjectStackDefinition parse): the object-list schema (ObjectListViewSchema)\n// narrows `userFilters` to ObjectUserFiltersSchema (dropdown/toggle only), so a\n// post-parse stack has already had a `tabs` user-filter stripped and this rule\n// would never see it. The layering is deliberate — tsc rejects it at author\n// time, the schema strips it at runtime (no throw, back-compat), and this rule\n// reports it at `os validate` with a fix hint. See objectui #2338 and ADR-0047.\n\nexport type ListViewModeSeverity = 'error' | 'warning';\n\nexport interface ListViewModeFinding {\n severity: ListViewModeSeverity;\n rule: string;\n /** Human-readable location, e.g. `object \"task\" › listViews.my_pending`. */\n where: string;\n /** Config path, e.g. `objects[0].listViews.my_pending.userFilters`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule id (registry entry).\nexport const LIST_VIEW_FILTERS_IN_VIEWS_MODE = 'list-view-filters-in-views-mode';\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce an array-or-name-keyed-map collection to an array (name injected). */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({\n name,\n ...(def as AnyRec),\n }));\n }\n return [];\n}\n\n/** Emit a finding for each wrong-context filter control on a single list-view def. */\nfunction scanView(\n view: unknown,\n where: string,\n path: string,\n out: ListViewModeFinding[],\n): void {\n if (!view || typeof view !== 'object') return;\n const rec = view as AnyRec;\n\n // `quickFilters` is never valid on an object list view.\n if (rec.quickFilters != null) {\n out.push({\n severity: 'error',\n rule: LIST_VIEW_FILTERS_IN_VIEWS_MODE,\n where,\n path: `${path}.quickFilters`,\n message:\n '`quickFilters` is a page filters-mode control and is ignored on an object ' +\n 'list view (\"views\" mode) — the ViewTabBar owns nav here.',\n hint:\n 'Move `quickFilters` to a page list (InterfaceListPage, \"filters\" mode), or ' +\n 'remove it. See ADR-0047.',\n });\n }\n\n // `userFilters` is allowed on object views ONLY as `dropdown` (value chips).\n // The `tabs` preset style — or any `userFilters` carrying `tabs` — collides\n // with the ViewTabBar and stays page-only.\n const uf = rec.userFilters;\n if (uf && typeof uf === 'object') {\n const ufRec = uf as AnyRec;\n if (ufRec.element === 'tabs' || ufRec.tabs != null) {\n out.push({\n severity: 'error',\n rule: LIST_VIEW_FILTERS_IN_VIEWS_MODE,\n where,\n path: `${path}.userFilters`,\n message:\n '`userFilters` with `element: \"tabs\"` is page-only and is ignored on an ' +\n 'object list view (\"views\" mode) — it would collide with the ViewTabBar.',\n hint:\n 'Use `listViews` for named presets on an object (each becomes a segmented ' +\n 'tab), switch to `element: \"dropdown\"` for value chips, or move the `tabs` ' +\n 'filter to a page list (InterfaceListPage, \"filters\" mode). See ADR-0047.',\n });\n }\n }\n}\n\n/** Scan a `listViews` record (name → list-view def). */\nfunction scanListViews(\n listViews: unknown,\n wherePrefix: string,\n pathPrefix: string,\n out: ListViewModeFinding[],\n): void {\n if (!listViews || typeof listViews !== 'object') return;\n for (const [name, view] of Object.entries(listViews as AnyRec)) {\n scanView(\n view,\n `${wherePrefix} › listViews.${name}`,\n `${pathPrefix}.listViews.${name}`,\n out,\n );\n }\n}\n\n/**\n * Flag ADR-0047 \"views\" mode violations on an object's built-in named views or a\n * `defineView` default `list` / named `listViews`: `quickFilters`, or a `tabs`\n * `userFilters`. A `dropdown` `userFilters` is allowed and not flagged. Returns\n * the list of findings (empty = clean). Caller decides how to surface / whether\n * to fail the build.\n *\n * Feed the PRE-parse stack (normalizeStackInput output) — see file header.\n */\nexport function validateListViewMode(stack: AnyRec): ListViewModeFinding[] {\n const out: ListViewModeFinding[] = [];\n\n // Object built-in named views (object.zod.ts `listViews`).\n asArray(stack.objects).forEach((obj, i) => {\n const label = typeof obj.name === 'string' ? `object \"${obj.name}\"` : `objects[${i}]`;\n scanListViews(obj.listViews, label, `objects[${i}]`, out);\n });\n\n // `defineView` aggregates (stack `views`: default `list` + named `listViews`).\n asArray(stack.views).forEach((view, i) => {\n const named =\n typeof view.objectName === 'string'\n ? view.objectName\n : typeof view.name === 'string'\n ? view.name\n : undefined;\n const label = named ? `view \"${named}\"` : `views[${i}]`;\n scanView(view.list, `${label} › list`, `views[${i}].list`, out);\n scanListViews(view.listViews, label, `views[${i}]`, out);\n });\n\n return out;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail for auto-launched flow trigger wiring (2026-07-17\n// third-party eval: a record-change flow that silently never fires).\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019), run from `os validate` and\n// reusable by AI authoring. It catches the two authoring mistakes that produce\n// a flow which LOOKS armed but never launches — with zero runtime output:\n//\n// 1. `objectName` mismatch — the start node targets an object name that is\n// not defined in this stack. The runtime binds an ObjectQL hook filtered\n// to that exact name; if nobody writes it, the flow never fires. Names\n// match exactly (`eval_app_candidate`, not `candidate`). Objects owned by\n// other packages (`sys_*`, dependency packages) are legitimate targets,\n// so this is a warning with the cross-package caveat, not an error.\n//\n// 2. `status: 'draft'` on an auto-triggered flow — the schema default when\n// no status is authored (defineFlow parses at definition time, so by the\n// time this rule runs an unauthored status is indistinguishable from an\n// explicit 'draft'). Either way the intent is ambiguous: the engine still\n// binds and fires draft flows (only `obsolete`/`invalid` disable), which\n// surprises authors in both directions. Declare `'active'` to arm\n// deliberately or `'obsolete'` to disable. Only auto-triggered flows are\n// flagged (manual/screen flows have no arming semantics to be unclear\n// about).\n\nexport type FlowTriggerReadinessSeverity = 'error' | 'warning';\n\nexport interface FlowTriggerReadinessFinding {\n severity: FlowTriggerReadinessSeverity;\n rule: string;\n /** Human-readable location, e.g. `flow \"notify_on_done\" › start node`. */\n where: string;\n /** Config path, e.g. `flows[0].nodes[0].config.objectName`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule ids (registry entries).\nexport const FLOW_TRIGGER_UNKNOWN_OBJECT = 'flow-trigger-unknown-object';\nexport const FLOW_DRAFT_STATUS_AMBIGUOUS = 'flow-draft-status-ambiguous';\nexport const FLOW_TRIGGER_UNKNOWN_EVENT = 'flow-trigger-unknown-event';\n\ntype AnyRec = Record<string, unknown>;\n\n/**\n * The record-change trigger fires only for a `triggerType` matching this exact\n * grammar — the same set its `triggerTypeToHookEvents` maps to ObjectQL hooks.\n * `insert` is a synonym for `create`; `write` is the create-OR-update union\n * (#3427). Any OTHER `record-`-prefixed token — a typo (`record-after-updated`),\n * a phase-less bare noun (`record-change`), or a bad phase (`record-during-update`)\n * — binds to the trigger but maps to NO hook and never fires. Kept in sync with\n * that trigger (one small, stable contract).\n */\nconst VALID_RECORD_TRIGGER = /^record-(?:before|after)-(?:create|insert|update|delete|write)$/;\n\n/** Coerce an array-or-name-keyed-map collection to an array (name injected). */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({\n name,\n ...(def as AnyRec),\n }));\n }\n return [];\n}\n\n/** The start node of a flow definition, if any. */\nfunction startNodeOf(flow: AnyRec): { node: AnyRec; index: number } | undefined {\n const nodes = Array.isArray(flow.nodes) ? (flow.nodes as AnyRec[]) : [];\n const index = nodes.findIndex((n) => n?.type === 'start');\n return index >= 0 ? { node: nodes[index], index } : undefined;\n}\n\n/**\n * Validate auto-launched flow trigger wiring against the stack definition.\n * Pure and dependency-free; safe on pre- or post-parse stacks.\n */\nexport function validateFlowTriggerReadiness(stack: AnyRec): FlowTriggerReadinessFinding[] {\n const findings: FlowTriggerReadinessFinding[] = [];\n const flows = asArray(stack.flows);\n if (flows.length === 0) return findings;\n\n const objectNames = new Set(\n asArray(stack.objects)\n .map((o) => (typeof o.name === 'string' ? o.name : undefined))\n .filter((n): n is string => !!n),\n );\n\n flows.forEach((flow, flowIndex) => {\n const flowName = typeof flow.name === 'string' ? flow.name : `#${flowIndex}`;\n const start = startNodeOf(flow);\n const config = (start?.node.config ?? {}) as AnyRec;\n const triggerType = typeof config.triggerType === 'string' ? config.triggerType : undefined;\n const isRecordTriggered = !!triggerType && triggerType.startsWith('record-');\n // Array-form triggerType (e.g. ['record-after-create', 'record-after-delete'])\n // is NOT supported — multi-event unions are deferred (#3457). It needs its own\n // detection because a non-string triggerType folds to `undefined` above, so the\n // runtime misclassifies the flow as manual and it never fires with zero output\n // (#3481). Any record-* element is enough to recognize the (unsupported) intent.\n const isArrayRecordTriggered =\n Array.isArray(config.triggerType) &&\n (config.triggerType as unknown[]).some((t) => typeof t === 'string' && t.startsWith('record-'));\n const isTimeRelative = config.timeRelative != null && typeof config.timeRelative === 'object';\n const isAutoTriggered =\n isRecordTriggered || triggerType === 'api' || config.schedule != null ||\n isTimeRelative || flow.type === 'schedule' || flow.type === 'api';\n\n // 1. Record-triggered flow targeting an object this stack does not define.\n if (isRecordTriggered && start) {\n const objectName = typeof config.objectName === 'string' ? config.objectName : undefined;\n if (objectName && !objectNames.has(objectName) && !objectName.startsWith('sys_')) {\n findings.push({\n severity: 'warning',\n rule: FLOW_TRIGGER_UNKNOWN_OBJECT,\n where: `flow \"${flowName}\" › start node`,\n path: `flows[${flowIndex}].nodes[${start.index}].config.objectName`,\n message:\n `targets object '${objectName}', which this stack does not define — if the name is wrong, ` +\n `the flow will never fire (and the runtime stays silent about it).`,\n hint:\n `Object names match exactly. Check config.objectName against the object's registered name ` +\n `(e.g. 'app_candidate', not 'candidate'). If the object comes from another installed package, ` +\n `this warning can be ignored.`,\n });\n }\n }\n\n // 1b. Time-relative flow sweeping an object this stack does not define. Like\n // the record-change case, a wrong object name makes the sweep match\n // nothing forever with no runtime output.\n if (isTimeRelative && start) {\n const tr = config.timeRelative as AnyRec;\n const objectName = typeof tr.object === 'string' ? tr.object : undefined;\n if (objectName && !objectNames.has(objectName) && !objectName.startsWith('sys_')) {\n findings.push({\n severity: 'warning',\n rule: FLOW_TRIGGER_UNKNOWN_OBJECT,\n where: `flow \"${flowName}\" › start node`,\n path: `flows[${flowIndex}].nodes[${start.index}].config.timeRelative.object`,\n message:\n `sweeps object '${objectName}', which this stack does not define — if the name is wrong, ` +\n `the sweep will match nothing (and the runtime stays quiet about it).`,\n hint:\n `Object names match exactly. Check config.timeRelative.object against the object's registered name. ` +\n `If the object comes from another installed package, this warning can be ignored.`,\n });\n }\n }\n\n // 1c. A `record-`-prefixed triggerType the trigger cannot map to any hook —\n // a typo (`record-after-updated`), a phase-less bare noun (`record-change`,\n // which the Studio picker once offered as \"Record changed (any)\"), or a bad\n // phase (`record-during-update`). The engine routes any `record-` token to\n // the record-change trigger, which then binds to NO hook and never fires\n // (only a runtime warn). Surface the never-fire defect at authoring time.\n if (start && isRecordTriggered && !VALID_RECORD_TRIGGER.test((triggerType ?? '').trim())) {\n findings.push({\n severity: 'warning',\n rule: FLOW_TRIGGER_UNKNOWN_EVENT,\n where: `flow \"${flowName}\" › start node`,\n path: `flows[${flowIndex}].nodes[${start.index}].config.triggerType`,\n message:\n `triggerType '${triggerType}' is not a recognized record trigger — the flow binds to the ` +\n `record-change trigger but never fires (the runtime stays silent about it).`,\n hint:\n `Use record-{before,after}-{create,update,delete,write}. 'write' fires on create OR update in one ` +\n `flow (#3427); create/insert are synonyms. There is no \"any change\" token — pick the specific event(s).`,\n });\n }\n\n // 1d. Array-form triggerType — an unsupported multi-event shape (#3457). The\n // runtime folds a non-string triggerType to \"no trigger\" and treats the\n // flow as manual, so it binds to nothing and never fires, with zero output\n // at any layer (#3481). Surface it at authoring time like the unmappable\n // single tokens above (same rule id — both are \"this token never fires\").\n if (start && isArrayRecordTriggered) {\n findings.push({\n severity: 'warning',\n rule: FLOW_TRIGGER_UNKNOWN_EVENT,\n where: `flow \"${flowName}\" › start node`,\n path: `flows[${flowIndex}].nodes[${start.index}].config.triggerType`,\n message:\n `triggerType is an array (${JSON.stringify(config.triggerType)}), which is not supported — a start ` +\n `node takes a single trigger event, so the flow binds to nothing and never fires (the runtime stays silent about it).`,\n hint:\n `Use one triggerType string. For \"created or updated\" use record-after-write (one flow, both events, #3427). ` +\n `For any other combination, author one flow per event — multi-event arrays are deferred (#3457).`,\n });\n }\n\n // 2. Auto-triggered flow whose status is 'draft' — authored or defaulted\n // (defineFlow parses at definition time, so the two are the same here).\n if (isAutoTriggered && (flow.status == null || flow.status === 'draft')) {\n findings.push({\n severity: 'warning',\n rule: FLOW_DRAFT_STATUS_AMBIGUOUS,\n where: `flow \"${flowName}\"`,\n path: `flows[${flowIndex}].status`,\n message:\n `has status 'draft' (the default when none is authored). Draft flows DO still fire their ` +\n `triggers (only 'obsolete'/'invalid' disable), so the intent is ambiguous.`,\n hint: `Declare status: 'active' to arm it deliberately, or status: 'obsolete' to disable it.`,\n });\n }\n });\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail for `{record.<path>}` template references in a\n// record-change flow's node config (#3426).\n//\n// A `notify` / `update_record` / `http` / ... node interpolates\n// `{record.<field>}` tokens against the triggering record. Two authoring\n// mistakes render a SILENT empty string at runtime, with no design-time\n// signal — exactly the failure #3426 reported:\n//\n// 1. `{record.<unknown>}` — the path head is neither a declared field nor a\n// system column. Almost always a typo (`{record.full_naem}`). The template\n// engine resolves it to `undefined` -> '' with no warning.\n//\n// 2. `{record.<lookup>.<subfield>}` — a cross-object hop through a lookup /\n// master_detail / user / tree relation. The seeded flow record carries the\n// relation as a SCALAR foreign-key id, not an expanded object (a default\n// data-API read does not expand relations either — see #3426's hydration\n// note and #1872). So `record.account.name` walks `.name` on a string id\n// and yields '' silently. Not resolved today; tracked on #3426.\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019), run from `os validate` and\n// reusable by AI authoring.\n//\n// SEVERITY FOLLOWS THE RUNTIME CONSEQUENCE, which differs by POSITION:\n//\n// - Everywhere else (a message body, an http url, a write payload) an\n// unresolved token renders a blank. The output is wrong but the run\n// completes, and the head object may legitimately come from another\n// installed package (skipped — see below). Advisory: WARNING.\n//\n// - Inside a filter-guarded CRUD node's `filter`, an unresolved token used to\n// DELETE the condition from the query, and a removed condition matches MORE\n// rows — `delete_record` with its only condition gone matched every row.\n// Since framework#3810 those nodes REFUSE TO EXECUTE. So a finding here is\n// not \"the output will be blank\", it is \"this node cannot run\": the build\n// is shipping a flow whose runtime is already decided. Gating: ERROR.\n//\n// The split is the same shift-left `validateReadonlyFlowWrites` makes — a\n// certain runtime failure gates the build, a state-dependent one advises — and\n// it keeps this rule honest about what it found. Catching the typo at build\n// time beats a failed run at 3am; catching it and calling it advisory, when the\n// runtime has already committed to refusing, understates it.\n//\n// Deliberately conservative to keep false positives near zero:\n// - Only `record.`-prefixed tokens are checked. Other `{var}` tokens address\n// flow variables / node outputs the rule cannot resolve statically.\n// - Only flows bound to an object THIS stack defines are checked; when the\n// object is unknown here (another package, `sys_*`) the rule has no schema\n// to compare against and skips the whole flow.\n// - `formula` / `summary` fields are VALID heads (formula is hydrated onto the\n// record since #3445; summary is stored on write) — never flagged.\n// - A trailing NUMERIC segment (`{record.target_channels.0}`) is an array\n// index into a `multiple` lookup (#1872), not a cross-object hop — allowed.\n// - Structured scalar heads (`json` / `composite` / `repeater` / `record`) may\n// carry legitimate sub-paths — their `.<sub>` access is left alone.\n\nexport type FlowTemplatePathSeverity = 'error' | 'warning';\n\nexport interface FlowTemplatePathFinding {\n severity: FlowTemplatePathSeverity;\n rule: string;\n /** Human-readable location, e.g. `flow \"notify_lead\" node \"notify\"`. */\n where: string;\n /** Config path, e.g. `flows[0].nodes[2]`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule ids (registry entries).\nexport const FLOW_TEMPLATE_UNKNOWN_FIELD = 'flow-template-unknown-field';\nexport const FLOW_TEMPLATE_LOOKUP_TRAVERSAL = 'flow-template-lookup-traversal';\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce an array-or-name-keyed-map collection to an array (name injected). */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({\n name,\n ...(def as AnyRec),\n }));\n }\n return [];\n}\n\n// System/audit columns the platform injects on every object — always\n// addressable in a `{record.<col>}` template even though they are not authored\n// fields. Mirrors `validateFormLayout`'s system-field set plus the audit/tenant\n// columns from `FIELD_GROUP_SYSTEM_FIELDS`.\nconst SYSTEM_FIELDS: ReadonlySet<string> = new Set([\n 'id',\n 'name',\n 'owner',\n 'owner_id',\n 'created_at',\n 'created_by',\n 'updated_at',\n 'updated_by',\n 'organization_id',\n 'tenant_id',\n 'is_deleted',\n 'deleted_at',\n 'record_type',\n]);\n\n// Field types that address ANOTHER object — a `.<subfield>` hop through one is\n// a cross-object traversal the seeded flow record does not expand.\nconst RELATION_TYPES: ReadonlySet<string> = new Set([\n 'lookup',\n 'master_detail',\n 'user',\n 'tree',\n]);\n\n// The CRUD nodes whose `filter` the runtime guards (framework#3810): each calls\n// `resolveNodeFilter`, which refuses the node when interpolation erased any\n// authored condition. `create_record` is deliberately absent — it writes a\n// payload and has no filter, so an unresolved token there is a blank value on\n// the new row, not a widened query.\nconst FILTER_GUARDED_NODE_TYPES: ReadonlySet<string> = new Set([\n 'get_record',\n 'update_record',\n 'delete_record',\n]);\n\n/** Build a `fieldName -> type` map for an object (declared fields only). */\nfunction fieldTypesOf(obj: AnyRec): Map<string, string> {\n const types = new Map<string, string>();\n for (const f of asArray(obj.fields)) {\n if (typeof f.name === 'string') {\n types.set(f.name, typeof f.type === 'string' ? f.type : '');\n }\n }\n return types;\n}\n\n/**\n * Extract the `record.<path>` references from a template string. Mirrors the\n * runtime interpolator's token grammar (service-automation builtin/template.ts):\n * a `{...}` token whose body is a dotted path whose HEAD is `record`. Arithmetic\n * / function tokens (`{NOW()}`, `{a + b}`) and non-`record` heads are ignored.\n *\n * Returns each reference's segment list AFTER the `record` head, e.g.\n * `{record.account.name}` -> `[['account', 'name']]`.\n */\nfunction recordRefsIn(text: string): string[][] {\n const refs: string[][] = [];\n const tokenRe = /\\{([^{}]+)\\}/g;\n let m: RegExpExecArray | null;\n while ((m = tokenRe.exec(text)) !== null) {\n const body = m[1].trim();\n // Pure dotted path only (same shape the interpolator's fast path accepts):\n // identifier head, then identifier-or-numeric segments. Anything with\n // operators / spaces / quotes is an arithmetic token — not a bare field ref.\n if (!/^[A-Za-z_$][\\w$]*(?:\\.(?:[A-Za-z_$][\\w$]*|\\d+))*$/.test(body)) continue;\n const segments = body.split('.');\n if (segments[0] !== 'record') continue;\n const rest = segments.slice(1);\n if (rest.length > 0) refs.push(rest);\n }\n return refs;\n}\n\n/** Recursively collect templated string leaves from a config-bearing block. */\nfunction stringLeaves(value: unknown, out: string[]): void {\n if (typeof value === 'string') {\n if (value.includes('{')) out.push(value);\n return;\n }\n if (Array.isArray(value)) {\n for (const v of value) stringLeaves(v, out);\n return;\n }\n if (value && typeof value === 'object') {\n for (const v of Object.values(value as AnyRec)) stringLeaves(v, out);\n }\n}\n\n// The typed config blocks + freeform `config` a node interpolates at runtime.\n// We scan every string leaf under these (the runtime `interpolate()` walks the\n// whole config recursively), NOT `id` / `type` / `label` / `position`, which are\n// never templated.\nconst NODE_CONFIG_KEYS = [\n 'config',\n 'notify',\n 'update_record',\n 'create_record',\n 'http',\n 'script',\n 'screen',\n 'wait',\n 'approval',\n 'connector_action',\n 'subflow',\n 'decision',\n 'start',\n];\n\n/** A templated string leaf plus the one thing severity depends on: where it sits. */\ninterface TemplateLeaf {\n text: string;\n /** Inside a filter-guarded CRUD node's `filter` — an unresolved token there is refused at runtime. */\n inFilter: boolean;\n}\n\n/**\n * Collect a node's templated string leaves, tagging those that sit under a\n * `filter` key when the node type is one the runtime guards.\n *\n * `guarded` leaves are returned FIRST so the per-node dedupe below resolves a\n * reference that appears in both positions at its higher severity: one typo\n * used in a filter and echoed in a message is an error, not a warning.\n */\nfunction collectNodeLeaves(node: AnyRec, guarded: boolean): TemplateLeaf[] {\n const filterLeaves: TemplateLeaf[] = [];\n const otherLeaves: TemplateLeaf[] = [];\n\n for (const key of NODE_CONFIG_KEYS) {\n if (!(key in node)) continue;\n const block = node[key];\n const splitFilter = guarded && !!block && typeof block === 'object' && !Array.isArray(block);\n\n if (splitFilter) {\n const { filter, ...rest } = block as AnyRec;\n const inFilter: string[] = [];\n stringLeaves(filter, inFilter);\n for (const text of inFilter) filterLeaves.push({ text, inFilter: true });\n const outside: string[] = [];\n stringLeaves(rest, outside);\n for (const text of outside) otherLeaves.push({ text, inFilter: false });\n continue;\n }\n\n const plain: string[] = [];\n stringLeaves(block, plain);\n for (const text of plain) otherLeaves.push({ text, inFilter: false });\n }\n\n return [...filterLeaves, ...otherLeaves];\n}\n\n/** True when the flow is armed by a record lifecycle event. */\nfunction isRecordTriggered(flow: AnyRec, startConfig: AnyRec): boolean {\n if (flow.type === 'record_change') return true;\n const triggerType = typeof startConfig.triggerType === 'string' ? startConfig.triggerType : undefined;\n return !!triggerType && triggerType.startsWith('record-');\n}\n\n/** Resolve the object a record-change flow binds to, from its start node. */\nfunction boundObjectOf(flow: AnyRec): string | undefined {\n const nodes = Array.isArray(flow.nodes) ? (flow.nodes as AnyRec[]) : [];\n const start = nodes.find((n) => n?.type === 'start');\n if (!start) return undefined;\n const config = (start.config ?? {}) as AnyRec;\n const typed = (start.start ?? {}) as AnyRec;\n const fromConfig = typeof config.objectName === 'string' ? config.objectName : undefined;\n const fromTyped = typeof typed.objectName === 'string' ? typed.objectName : undefined;\n return fromConfig ?? fromTyped;\n}\n\n/**\n * The lookup relations a record-change flow opted IN to expand, from the start\n * node's `config.expand` (#3475). A `{record.<rel>.<field>}` hop through one of\n * these IS resolved at run time — the engine re-reads it as the run's identity —\n * so the traversal warning is suppressed for those relations. Accepts a `string`\n * or `string[]`; anything else yields the empty set.\n */\nfunction declaredExpandOf(flow: AnyRec): Set<string> {\n const nodes = Array.isArray(flow.nodes) ? (flow.nodes as AnyRec[]) : [];\n const start = nodes.find((n) => n?.type === 'start');\n const raw = ((start?.config ?? {}) as AnyRec).expand;\n if (typeof raw === 'string') return new Set(raw ? [raw] : []);\n if (Array.isArray(raw)) return new Set(raw.filter((r): r is string => typeof r === 'string' && r.length > 0));\n return new Set();\n}\n\n/**\n * Validate `{record.<path>}` template references across every record-change\n * flow. Pure and dependency-free; safe on pre- or post-parse stacks.\n */\nexport function validateFlowTemplatePaths(stack: AnyRec): FlowTemplatePathFinding[] {\n const findings: FlowTemplatePathFinding[] = [];\n const flows = asArray(stack.flows);\n if (flows.length === 0) return findings;\n\n const objectsByName = new Map<string, AnyRec>();\n for (const obj of asArray(stack.objects)) {\n if (typeof obj.name === 'string') objectsByName.set(obj.name, obj);\n }\n\n flows.forEach((flow, flowIndex) => {\n const flowName = typeof flow.name === 'string' ? flow.name : `#${flowIndex}`;\n const nodes = Array.isArray(flow.nodes) ? (flow.nodes as AnyRec[]) : [];\n const start = (nodes.find((n) => n?.type === 'start')?.config ?? {}) as AnyRec;\n if (!isRecordTriggered(flow, start)) return;\n\n const objectName = boundObjectOf(flow);\n if (!objectName) return;\n const obj = objectsByName.get(objectName);\n // Unknown object here -> no schema to compare against (another package /\n // `sys_*`). The trigger-readiness rule already flags a wrong name; we can't\n // meaningfully classify field paths, so skip the whole flow.\n if (!obj) return;\n\n const fieldTypes = fieldTypesOf(obj);\n const expandSet = declaredExpandOf(flow);\n\n nodes.forEach((node, nodeIndex) => {\n if (typeof node !== 'object' || !node) return;\n const nodeLabel =\n typeof node.type === 'string' ? node.type : typeof node.id === 'string' ? node.id : `#${nodeIndex}`;\n\n // Collect templated string leaves from the config-bearing blocks only,\n // tagging filter positions when this node type guards its filter (#3810).\n const nodeType = typeof node.type === 'string' ? node.type : '';\n const guarded = FILTER_GUARDED_NODE_TYPES.has(nodeType);\n const leaves = collectNodeLeaves(node as AnyRec, guarded);\n if (leaves.length === 0) return;\n\n // Dedupe references so one repeated typo yields one finding per node.\n const seenUnknown = new Set<string>();\n const seenTraversal = new Set<string>();\n\n for (const leaf of leaves) {\n const inFilter = leaf.inFilter;\n for (const rest of recordRefsIn(leaf.text)) {\n const head = rest[0];\n const hasSubPath = rest.length > 1;\n // A trailing numeric segment is an array index (#1872), not a hop.\n const nextIsIdentifier = hasSubPath && !/^\\d+$/.test(rest[1]);\n\n const isKnown = fieldTypes.has(head) || SYSTEM_FIELDS.has(head);\n\n if (!isKnown) {\n if (seenUnknown.has(head)) continue;\n seenUnknown.add(head);\n findings.push({\n severity: inFilter ? 'error' : 'warning',\n rule: FLOW_TEMPLATE_UNKNOWN_FIELD,\n where: `flow \"${flowName}\" node \"${nodeLabel}\"`,\n path: `flows[${flowIndex}].nodes[${nodeIndex}]`,\n message: inFilter\n ? `${nodeType} filter references '{record.${rest.join('.')}}', but '${head}' is not a field on ` +\n `object '${objectName}' — the token resolves to nothing, which DROPS the condition from the ` +\n `query instead of narrowing it. The node refuses to run at execution time (#3810).`\n : `template references '{record.${rest.join('.')}}', but '${head}' is not a field on ` +\n `object '${objectName}' — it resolves to an empty string at runtime (silently).`,\n hint: inFilter\n ? `Check the field name against the object's field definitions (e.g. '{record.full_name}', ` +\n `not '{record.full_naem}'); system columns like id/created_at/owner are also addressable. ` +\n `This gates the build rather than warning: an absent condition WIDENS the query, so the ` +\n `runtime has already decided to refuse this node.`\n : `Check the field name against the object's field definitions (e.g. '{record.full_name}', ` +\n `not '{record.full_naem}'). System columns like id/created_at/owner are also addressable.`,\n });\n continue;\n }\n\n if (nextIsIdentifier) {\n const headType = fieldTypes.get(head) ?? '';\n if (RELATION_TYPES.has(headType) && !expandSet.has(head)) {\n const key = rest.join('.');\n if (seenTraversal.has(key)) continue;\n seenTraversal.add(key);\n findings.push({\n severity: inFilter ? 'error' : 'warning',\n rule: FLOW_TEMPLATE_LOOKUP_TRAVERSAL,\n where: `flow \"${flowName}\" node \"${nodeLabel}\"`,\n path: `flows[${flowIndex}].nodes[${nodeIndex}]`,\n message: inFilter\n ? `${nodeType} filter references '{record.${key}}', a cross-object hop through the ` +\n `${headType} field '${head}' — the flow record carries '${head}' as a scalar id, not an ` +\n `expanded object, so the token resolves to nothing and the condition is DROPPED from the ` +\n `query instead of narrowing it. The node refuses to run at execution time (#3810).`\n : `template references '{record.${key}}', a cross-object hop through the ${headType} field ` +\n `'${head}' — the flow record carries '${head}' as a scalar id, not an expanded object, so ` +\n `this resolves to an empty string at runtime (silently).`,\n hint: inFilter\n ? `Opt in to resolve it: add '${head}' to the start node's config.expand (#3475) and the ` +\n `engine re-reads it as the run's identity. Otherwise filter on the foreign-key id directly ` +\n `('{record.${head}}'), or project the value via a formula field on '${objectName}'. This ` +\n `gates the build rather than warning: an absent condition WIDENS the query.`\n : `Opt in to resolve it: add '${head}' to the start node's config.expand (#3475) and the ` +\n `engine re-reads it as the run's identity. Otherwise reference the foreign-key id directly ` +\n `('{record.${head}}'), or project the value via a formula field on '${objectName}'.`,\n });\n }\n // STRUCTURED_TYPES + any other scalar `.sub` access is left alone:\n // json/composite/record sub-paths are legitimate in-row reads, and\n // a plain scalar `.sub` is rare enough that flagging it would risk\n // more false positives than it prevents.\n }\n }\n }\n });\n });\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail: a flow `update_record` node that writes a field the\n// target object declares `readonly: true`, under a non-system run identity, is\n// a SILENT NO-OP. The objectql engine strips static-`readonly` fields from a\n// non-system UPDATE payload (#2948), so the intended write never lands — yet\n// the step still reports `success`. #3407/#3413 made that strip observable at\n// RUN time (a step warning + `droppedFields`); this rule shifts the discovery\n// LEFT to `os validate` / `os build`, so an author finds the mismatch at design\n// time instead of by reading server WARN logs days later (#3425).\n//\n// Scope — deliberately narrow to keep it false-positive-free:\n//\n// • Only `update_record`. INSERT is engine-exempt from the readonly strip (a\n// `create_record` may legitimately seed readonly columns; the ingress strip\n// added in #3043 lives in metadata-protocol, which the flow engine bypasses\n// by calling the data engine directly), so a create writing a readonly\n// field is NOT a no-op and is never flagged.\n//\n// • Only `runAs !== 'system'`. A `runAs:'system'` run is elevated and the\n// engine skips the strip entirely, so a system flow legitimately MAINTAINS\n// readonly fields (\"users can't edit this, but automation does\"). That is\n// the intended channel, so it is never flagged.\n//\n// • Static `readonly:true` + a LITERAL field name is a 100%-certain no-op →\n// ERROR (gates the build). `readonlyWhen` is per-record-state — it strips\n// only on records whose predicate is TRUE at run time, so it MAY silently\n// not land → WARNING (advisory). A templated object name or a non-literal\n// `fields` map is not statically knowable → skipped, no guess.\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019): no I/O, no runtime. Shared by\n// the CLI and any other consumer (AI authoring), so hand-authored and generated\n// flows are held to the same bar.\n\nexport type ReadonlyFlowWriteSeverity = 'error' | 'warning';\n\nexport interface ReadonlyFlowWriteFinding {\n severity: ReadonlyFlowWriteSeverity;\n rule: string;\n /** Human-readable location, e.g. `flow \"approve_deal\" › node \"Mark approved\"`. */\n where: string;\n /** Config path, e.g. `flows[0].nodes[3].config.fields.approval_status`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule ids (registry entries).\nexport const FLOW_UPDATE_READONLY_FIELD = 'flow-update-readonly-field';\nexport const FLOW_UPDATE_READONLY_WHEN_FIELD = 'flow-update-readonly-when-field';\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce an array-or-name-keyed-map collection to an array (name injected). */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({\n name,\n ...(def as AnyRec),\n }));\n }\n return [];\n}\n\ninterface FieldReadonlyMeta {\n /** Static `readonly: true`. */\n readonly: boolean;\n /** A non-empty `readonlyWhen` predicate is declared. */\n readonlyWhen: boolean;\n}\n\n/**\n * object name → (field name → readonly metadata). Handles both `fields` shapes\n * (array of `{name, readonly, readonlyWhen}` and name-keyed map). A field with\n * neither flag is recorded as `{false, false}` so callers can distinguish a\n * \"known-writable field\" from an \"unknown field\" (absent from the map).\n */\nfunction buildReadonlyIndex(objects: AnyRec[]): Map<string, Map<string, FieldReadonlyMeta>> {\n const idx = new Map<string, Map<string, FieldReadonlyMeta>>();\n for (const obj of objects) {\n const name = typeof obj.name === 'string' ? obj.name : undefined;\n if (!name) continue;\n const fieldMap = new Map<string, FieldReadonlyMeta>();\n const collect = (fieldName: string, def: AnyRec): void => {\n const rw = def?.readonlyWhen;\n const readonlyWhen = rw != null && !(typeof rw === 'string' && rw.trim() === '');\n fieldMap.set(fieldName, { readonly: def?.readonly === true, readonlyWhen });\n };\n const fields = obj.fields;\n if (Array.isArray(fields)) {\n for (const f of fields as AnyRec[]) {\n const fn = (f as AnyRec)?.name;\n if (typeof fn === 'string') collect(fn, f as AnyRec);\n }\n } else if (fields && typeof fields === 'object') {\n for (const [fn, def] of Object.entries(fields as AnyRec)) collect(fn, def as AnyRec);\n }\n idx.set(name, fieldMap);\n }\n return idx;\n}\n\n/**\n * The target object of an `update_record` node, when statically knowable. Reads\n * the canonical `objectName` and its historical `object` alias (the same pair\n * `readAliasedConfig` resolves at run time). A templated value (contains `{`) is\n * dynamic — return undefined so the node is skipped rather than guessed.\n */\nfunction readLiteralObjectName(config: AnyRec): string | undefined {\n const raw = config.objectName ?? config.object;\n if (typeof raw !== 'string' || raw.includes('{')) return undefined;\n return raw || undefined;\n}\n\n/**\n * Validate flow `update_record` writes against target-object readonly\n * declarations. Pure and dependency-free; safe on pre- or post-parse stacks.\n */\nexport function validateReadonlyFlowWrites(stack: AnyRec): ReadonlyFlowWriteFinding[] {\n const findings: ReadonlyFlowWriteFinding[] = [];\n const flows = asArray(stack.flows);\n if (flows.length === 0) return findings;\n\n const roIndex = buildReadonlyIndex(asArray(stack.objects));\n\n flows.forEach((flow, flowIndex) => {\n // `runAs` defaults to 'user' (schema default). Only an explicit 'system'\n // run bypasses the strip, so treat anything else — including an unauthored\n // (undefined) runAs — as strip-subject.\n if (flow.runAs === 'system') return;\n const runAs = flow.runAs === 'user' || flow.runAs === 'system' ? flow.runAs : 'user';\n\n const flowName = typeof flow.name === 'string' ? flow.name : `#${flowIndex}`;\n const nodes = Array.isArray(flow.nodes) ? (flow.nodes as AnyRec[]) : [];\n\n nodes.forEach((node, nodeIndex) => {\n if (node?.type !== 'update_record') return;\n const config = (node.config ?? {}) as AnyRec;\n\n const objectName = readLiteralObjectName(config);\n if (!objectName) return; // templated / dynamic object — not statically knowable\n const fieldMap = roIndex.get(objectName);\n if (!fieldMap) return; // object defined by another package — cannot judge its fields\n\n const fields = config.fields;\n // A non-literal write map (templated string, spread, array) is not\n // statically knowable — skip rather than guess.\n if (!fields || typeof fields !== 'object' || Array.isArray(fields)) return;\n\n const nodeName =\n typeof node.label === 'string' && node.label\n ? node.label\n : typeof node.id === 'string' && node.id\n ? node.id\n : `#${nodeIndex}`;\n\n for (const fieldName of Object.keys(fields as AnyRec)) {\n const meta = fieldMap.get(fieldName);\n if (!meta) continue; // unknown field — a form/field-layout lint concern, not this rule's\n\n if (meta.readonly) {\n findings.push({\n severity: 'error',\n rule: FLOW_UPDATE_READONLY_FIELD,\n where: `flow \"${flowName}\" › node \"${nodeName}\"`,\n path: `flows[${flowIndex}].nodes[${nodeIndex}].config.fields.${fieldName}`,\n message:\n `writes field '${fieldName}', which object '${objectName}' declares readonly:true. Under ` +\n `runAs:'${runAs}' the engine silently strips readonly fields from the UPDATE payload (#2948), ` +\n `so this write never lands — while the step still reports success.`,\n hint:\n `If automation is meant to maintain this field, declare the flow runAs:'system' (the intended ` +\n `channel — readonly governs the end-user/API surface, not trusted system writers). Otherwise ` +\n `remove '${fieldName}' from this update_record node.`,\n });\n } else if (meta.readonlyWhen) {\n findings.push({\n severity: 'warning',\n rule: FLOW_UPDATE_READONLY_WHEN_FIELD,\n where: `flow \"${flowName}\" › node \"${nodeName}\"`,\n path: `flows[${flowIndex}].nodes[${nodeIndex}].config.fields.${fieldName}`,\n message:\n `writes field '${fieldName}', which object '${objectName}' declares readonlyWhen. On records ` +\n `where that predicate is TRUE, a runAs:'${runAs}' UPDATE strips the field (#3042), so this ` +\n `write may silently not land depending on the record's state.`,\n hint:\n `If automation must maintain this field regardless of record state, run the flow runAs:'system'. ` +\n `Otherwise confirm this node only targets records whose readonlyWhen predicate is FALSE.`,\n });\n }\n }\n });\n });\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail for the `defineView` container shape.\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019), run from `os validate`. It\n// catches the \"flat view object\" authoring mistake the schema alone cannot\n// surface: `ViewSchema` is a container (`{ list, form, listViews, formViews }`)\n// whose slots are all optional, and Zod strips unknown keys — so a flat list\n// view (`{ name: 'all_tasks', label, type: 'grid', columns: [...] }`) parses\n// to an EMPTY container. The stack validates, the loader finds nothing to\n// expand, and the Console silently renders no view (no switcher entry). The\n// third-party 15.1 evaluation hit exactly this via the old docs.\n//\n// Runs PRE-parse (on the normalizeStackInput output, before the\n// ObjectStackDefinition parse): post-parse the flat keys are already stripped\n// and the mistake is indistinguishable from an intentionally empty container.\n//\n// Independent ViewItems (`viewKind` + `config`) are legal `views: []` entries\n// (the loader registers them as-is) and are not flagged.\n\nexport type ViewContainerSeverity = 'error' | 'warning';\n\nexport interface ViewContainerFinding {\n severity: ViewContainerSeverity;\n rule: string;\n /** Human-readable location, e.g. `views[0] (\"all_tasks\")`. */\n where: string;\n /** Config path, e.g. `views[0]`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule id (registry entry).\nexport const VIEW_CONTAINER_SHAPE = 'view-container-shape';\n\ntype AnyRec = Record<string, unknown>;\n\nconst CONTAINER_SLOT_KEYS = ['list', 'form', 'listViews', 'formViews'] as const;\n\n/** Coerce an array-or-name-keyed-map collection to indexed entries. */\nfunction asEntries(v: unknown): Array<{ key: string; value: unknown }> {\n if (Array.isArray(v)) return v.map((value, i) => ({ key: `[${i}]`, value }));\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, value]) => ({ key: `.${name}`, value }));\n }\n return [];\n}\n\n/** Number of views a parsed-or-raw container actually carries. */\nfunction containerViewCount(rec: AnyRec): number {\n const named = (slot: unknown): number =>\n slot && typeof slot === 'object' && !Array.isArray(slot) ? Object.keys(slot as AnyRec).length : 0;\n return (rec.list ? 1 : 0) + (rec.form ? 1 : 0) + named(rec.listViews) + named(rec.formViews);\n}\n\n/**\n * Validate that every stack-level `views` entry is a real view container (or\n * an independent ViewItem). Flat list-view objects and view-less containers\n * are reported as errors with a wrap-it fix hint.\n */\nexport function validateViewContainers(stack: Record<string, unknown>): ViewContainerFinding[] {\n const out: ViewContainerFinding[] = [];\n if (!stack || typeof stack !== 'object') return out;\n\n for (const { key, value } of asEntries((stack as AnyRec).views)) {\n // Non-object entries are the schema step's problem, not this rule's.\n if (!value || typeof value !== 'object' || Array.isArray(value)) continue;\n const rec = value as AnyRec;\n\n // Independent ViewItem (`viewKind` discriminator) — registered as-is.\n if (rec.viewKind != null) continue;\n\n if (containerViewCount(rec) > 0) continue;\n\n const label = typeof rec.name === 'string' ? ` (\"${rec.name}\")` : '';\n const hasContainerSlot = CONTAINER_SLOT_KEYS.some((k) => k in rec);\n // Flat list-view fingerprint: view-ish keys at the top level where the\n // container slots should be.\n const looksFlat = !hasContainerSlot\n && ['type', 'columns', 'data', 'filter', 'sort'].some((k) => k in rec);\n\n out.push({\n severity: 'error',\n rule: VIEW_CONTAINER_SHAPE,\n where: `views${key}${label}`,\n path: `views${key}`,\n message: looksFlat\n ? 'Flat list-view object is not a view container: `ViewSchema` strips its keys, '\n + 'so it parses to an EMPTY container — zero views register and the Console '\n + 'renders no view for it.'\n : 'View container defines no views — all of `list` / `form` / `listViews` / '\n + '`formViews` are absent or empty, so nothing registers.',\n hint: 'Wrap every view in a defineView container: defineView({ list: { type, data, '\n + 'columns, ... }, listViews: { ... }, formViews: { ... } }). See '\n + 'examples/app-showcase/src/ui/views/task.view.ts.',\n });\n }\n\n return out;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time diagnostics for the SDUI scoped-styling model (ADR-0065).\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019): the same bar holds for\n// hand-authored and AI-generated pages, run from `os validate`/`compile` and\n// reusable by AI authoring. It catches the deterministic ways a `responsiveStyles`\n// block silently fails or drifts — the class of mistake an AI author is most\n// likely to make — *before* render, with actionable hints it can self-correct on.\n//\n// What it does NOT catch: whether the result looks good. Visual/semantic quality\n// (contrast, balance, \"is it ugly\") is only catchable by rendering + a VLM gate,\n// which is a separate, render-time concern (ADR-0065 §Decision-5).\n\nexport type StyleSeverity = 'error' | 'warning';\n\nexport interface StyleFinding {\n severity: StyleSeverity;\n rule: string;\n /** Human-readable location, e.g. `page \"pricing\" › node \"plan_solo\"`. */\n where: string;\n /** Config path, e.g. `pages[0].regions[0].components[1]`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule ids (registry entries).\nexport const STYLE_NODE_MISSING_ID = 'style-node-missing-id';\nexport const STYLE_CLASSNAME_TAILWIND = 'style-classname-tailwind';\nexport const STYLE_RESPONSIVE_NO_BASE = 'style-responsive-no-base';\nexport const STYLE_UNKNOWN_CSS_PROPERTY = 'style-unknown-css-property';\nexport const STYLE_UNKNOWN_TOKEN = 'style-unknown-token';\n\ntype AnyRec = Record<string, unknown>;\n\nconst BREAKPOINTS = ['large', 'medium', 'small', 'xsmall'] as const;\n\n/** SDUI design-token palette (ADR-0065) + base theme tokens, referenced as\n * `var(--name)`. Authors should resolve values against these. Kept in sync with\n * `apps/console/src/index.css` / `@object-ui/components` `:root`. */\nconst KNOWN_TOKENS = new Set<string>([\n // SDUI tokens\n 'space-1', 'space-2', 'space-3', 'space-4', 'space-5', 'space-6', 'space-8', 'space-10', 'space-12',\n 'radius', 'radius-sm', 'radius-md', 'radius-lg', 'radius-xl',\n 'shadow-sm', 'shadow-md', 'shadow-lg',\n 'surface', 'surface-sunken', 'text-strong', 'text-muted', 'brand', 'brand-foreground', 'hairline',\n // Base theme tokens (shadcn) — usually wrapped as hsl(var(--x)).\n 'background', 'foreground', 'card', 'card-foreground', 'popover', 'popover-foreground',\n 'primary', 'primary-foreground', 'secondary', 'secondary-foreground',\n 'muted', 'muted-foreground', 'accent', 'accent-foreground',\n 'destructive', 'destructive-foreground', 'border', 'input', 'ring',\n 'success', 'success-foreground', 'warning', 'warning-foreground',\n 'chart-1', 'chart-2', 'chart-3', 'chart-4', 'chart-5',\n]);\n\n/** Common CSS properties (camelCase) an SDUI block realistically sets. Generous\n * on purpose: an unknown property is only a *warning* (typo catcher), never a\n * blocker. Custom properties (`--x`) are always allowed. */\nconst KNOWN_CSS_PROPERTIES = new Set<string>([\n 'display', 'position', 'top', 'right', 'bottom', 'left', 'inset', 'zIndex', 'overflow', 'overflowX', 'overflowY', 'visibility', 'boxSizing', 'float', 'clear',\n 'width', 'height', 'minWidth', 'minHeight', 'maxWidth', 'maxHeight', 'aspectRatio',\n 'margin', 'marginTop', 'marginRight', 'marginBottom', 'marginLeft', 'marginInline', 'marginBlock',\n 'padding', 'paddingTop', 'paddingRight', 'paddingBottom', 'paddingLeft', 'paddingInline', 'paddingBlock',\n 'flex', 'flexDirection', 'flexWrap', 'flexGrow', 'flexShrink', 'flexBasis', 'alignItems', 'alignContent', 'alignSelf', 'justifyContent', 'justifyItems', 'justifySelf', 'gap', 'rowGap', 'columnGap', 'order', 'placeItems', 'placeContent',\n 'grid', 'gridTemplate', 'gridTemplateColumns', 'gridTemplateRows', 'gridTemplateAreas', 'gridColumn', 'gridRow', 'gridArea', 'gridAutoFlow', 'gridAutoColumns', 'gridAutoRows',\n 'color', 'backgroundColor', 'background', 'backgroundImage', 'backgroundSize', 'backgroundPosition', 'backgroundRepeat', 'backgroundClip', 'opacity', 'mixBlendMode',\n 'fontSize', 'fontWeight', 'fontFamily', 'fontStyle', 'lineHeight', 'letterSpacing', 'textAlign', 'textTransform', 'textDecoration', 'textOverflow', 'whiteSpace', 'wordBreak', 'overflowWrap', 'fontVariantNumeric', 'verticalAlign', 'textShadow',\n 'border', 'borderTop', 'borderRight', 'borderBottom', 'borderLeft', 'borderColor', 'borderWidth', 'borderStyle', 'borderRadius', 'borderTopLeftRadius', 'borderTopRightRadius', 'borderBottomLeftRadius', 'borderBottomRightRadius', 'outline', 'outlineOffset',\n 'boxShadow', 'transform', 'transformOrigin', 'transition', 'transitionProperty', 'transitionDuration', 'transitionTimingFunction', 'transitionDelay', 'animation', 'filter', 'backdropFilter', 'willChange',\n 'cursor', 'pointerEvents', 'userSelect', 'objectFit', 'objectPosition', 'content',\n]);\n\nconst VAR_RE = /var\\(\\s*--([a-zA-Z0-9-]+)\\s*[,)]/g;\n\n// High-precision Tailwind-utility detection. A `className` in page metadata is\n// \"Tailwind-looking\" if any token is a responsive/state variant, an arbitrary\n// `[…]` value, a known utility stem followed by a Tailwind *value* (number /\n// fraction / size keyword), or a bare layout utility. Tuned to NOT trip on\n// ordinary custom class names (e.g. `my-custom-scope`, `os-s-plan_solo`).\nconst TW_VARIANT = /^(sm|md|lg|xl|2xl|hover|focus|active|disabled|dark|group-hover|peer-[a-z]+|first|last|odd|even):/;\nconst TW_STEM_VALUE = /^-?(p|m|px|py|pt|pb|pl|pr|mx|my|mt|mb|ml|mr|gap|gap-x|gap-y|space-x|space-y|w|h|min-w|max-w|min-h|max-h|size|text|leading|tracking|bg|border|rounded|shadow|ring|opacity|inset|top|bottom|left|right|z|order|col|row|grid-cols|grid-rows|basis)-(\\d+(\\.\\d+)?|\\d+\\/\\d+|px|full|auto|none|screen|min|max|fit|xs|sm|md|lg|xl|2xl|3xl|4xl|5xl|6xl)$/;\nconst TW_BARE = /^(flex|grid|block|inline|inline-block|inline-flex|hidden|contents|table|flow-root|grow|shrink|truncate|italic|underline|uppercase|lowercase|capitalize|antialiased|absolute|relative|fixed|sticky|static|isolate|flex-col|flex-row|flex-wrap|flex-nowrap|items-center|items-start|items-end|items-stretch|justify-center|justify-between|justify-around|justify-start|justify-end|text-center|text-left|text-right|font-bold|font-semibold|font-medium|font-normal|tabular-nums)$/;\n\nfunction looksLikeTailwind(className: string): boolean {\n return className.split(/\\s+/).some((tok) => {\n if (!tok) return false;\n if (TW_VARIANT.test(tok)) return true;\n if (/\\[[^\\]]+\\]/.test(tok)) return true; // arbitrary value, e.g. p-[13px]\n if (TW_STEM_VALUE.test(tok)) return true;\n if (TW_BARE.test(tok)) return true;\n return false;\n });\n}\n\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** Child nodes can hang off `children`, `properties.children`, `body`, or\n * `properties.body` depending on block type — collect them all. */\nfunction childrenOf(node: AnyRec): AnyRec[] {\n const props = (node.properties as AnyRec) ?? {};\n const out: AnyRec[] = [];\n for (const c of [node.children, props.children, node.body, props.body]) {\n if (Array.isArray(c)) out.push(...(c.filter((x) => x && typeof x === 'object') as AnyRec[]));\n }\n return out;\n}\n\nfunction checkNode(node: AnyRec, pageName: string, path: string, findings: StyleFinding[]): void {\n const id = typeof node.id === 'string' ? node.id : undefined;\n const type = typeof node.type === 'string' ? node.type : 'node';\n const where = `page \"${pageName}\" › ${id ? `node \"${id}\"` : `<${type}>`}`;\n const rs = node.responsiveStyles as AnyRec | undefined;\n const hasRs = !!rs && typeof rs === 'object' && BREAKPOINTS.some((b) => rs[b]);\n\n // (1) responsiveStyles needs an id to scope to — else the CSS is dropped.\n if (hasRs && !id) {\n findings.push({\n severity: 'error', rule: STYLE_NODE_MISSING_ID, where, path,\n message: `Node has responsiveStyles but no \\`id\\`; scoped CSS cannot be generated and the styles are silently dropped.`,\n hint: `Add a stable \\`id\\` to this node.`,\n });\n }\n\n // (2) responsive breakpoint without a `large` base → unstyled at desktop.\n if (hasRs && !rs!.large && BREAKPOINTS.slice(1).some((b) => rs![b])) {\n findings.push({\n severity: 'warning', rule: STYLE_RESPONSIVE_NO_BASE, where, path,\n message: `responsiveStyles sets a smaller breakpoint but no \\`large\\` base; the node is unstyled at desktop width.`,\n hint: `Put the unconditional/base styles under \\`responsiveStyles.large\\` (desktop-first).`,\n });\n }\n\n // (3) className that looks like Tailwind → won't render from metadata.\n if (typeof node.className === 'string' && node.className.trim() && looksLikeTailwind(node.className)) {\n findings.push({\n severity: 'warning', rule: STYLE_CLASSNAME_TAILWIND, where, path,\n message: `\\`className\\` contains Tailwind-looking utilities (\"${node.className.trim().slice(0, 60)}\"); these are not compiled from metadata and will silently do nothing.`,\n hint: `Style this node with \\`responsiveStyles\\` + design tokens instead of \\`className\\` (ADR-0065).`,\n });\n }\n\n // (4)+(5) unknown CSS property / unknown token inside each breakpoint map.\n if (rs && typeof rs === 'object') {\n for (const bp of BREAKPOINTS) {\n const map = rs[bp] as AnyRec | undefined;\n if (!map || typeof map !== 'object') continue;\n for (const [prop, value] of Object.entries(map)) {\n if (!prop.startsWith('--') && !KNOWN_CSS_PROPERTIES.has(prop)) {\n findings.push({\n severity: 'warning', rule: STYLE_UNKNOWN_CSS_PROPERTY, where, path: `${path}.responsiveStyles.${bp}`,\n message: `Unknown CSS property \"${prop}\" (typo?); if unintended it will not apply.`,\n hint: `Use a camelCase CSS property name (e.g. \\`flexDirection\\`, \\`backgroundColor\\`).`,\n });\n }\n if (typeof value === 'string') {\n let m: RegExpExecArray | null;\n VAR_RE.lastIndex = 0;\n while ((m = VAR_RE.exec(value))) {\n const token = m[1];\n if (!KNOWN_TOKENS.has(token) && !token.startsWith('tw-')) {\n findings.push({\n severity: 'warning', rule: STYLE_UNKNOWN_TOKEN, where, path: `${path}.responsiveStyles.${bp}.${prop}`,\n message: `References unknown design token \\`var(--${token})\\` (typo?); it will not resolve.`,\n hint: `Use a token from the ADR-0065 palette (e.g. \\`var(--space-6)\\`, \\`var(--surface)\\`, \\`hsl(var(--primary))\\`).`,\n });\n }\n }\n }\n }\n }\n }\n\n // Recurse.\n const kids = childrenOf(node);\n for (let i = 0; i < kids.length; i++) {\n checkNode(kids[i], pageName, `${path}.children[${i}]`, findings);\n }\n}\n\n/**\n * Validate every page's component tree for SDUI styling correctness (ADR-0065).\n * Returns findings (empty = clean). `error` findings describe styles that are\n * silently dropped and should fail validate/build; `warning` findings are\n * advisory (typos, drift, footguns).\n */\nexport function validateResponsiveStyles(stack: AnyRec): StyleFinding[] {\n const findings: StyleFinding[] = [];\n const pages = asArray(stack.pages);\n for (let p = 0; p < pages.length; p++) {\n const page = pages[p];\n const pageName = typeof page.name === 'string' ? page.name : `pages[${p}]`;\n const regions = asArray(page.regions);\n for (let r = 0; r < regions.length; r++) {\n const components = asArray(regions[r].components);\n for (let c = 0; c < components.length; c++) {\n checkNode(components[c], pageName, `pages[${p}].regions[${r}].components[${c}]`, findings);\n }\n }\n }\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time diagnostics for AI-authored HTML-source pages (ADR-0080).\n//\n// Applies to `kind:'html'` (and its deprecated alias `kind:'jsx'`) — the tier\n// whose `source` is constrained JSX/HTML parsed (never executed) to the tree.\n// `kind:'react'` (ADR-0081) is intentionally NOT linted here: its source is\n// real JavaScript, not constrained JSX, so the constrained parser would\n// false-error on hooks / expressions.\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019), run from `os validate` / `os\n// build`. An html page's `source` is a constrained JSX/Tailwind string\n// compiled (parsed, never executed) to the SDUI tree at save time. This gate\n// parses it at author time so malformed source fails loudly (ADR-0078) instead\n// of being stored and breaking only at render.\n//\n// Scope: parse-level — syntax, tag matching, and forbidden constructs (event\n// handlers, dangerouslySetInnerHTML). Full component/prop whitelist validation\n// needs the registry manifest (a cross-repo artifact); when that is wired,\n// thread it through `compile()` here. Until then this catches the structural\n// class of error an AI author is most likely to emit.\n\nimport { parseJsx, compile, type Manifest } from '@objectstack/sdui-parser';\n\nexport type JsxPageSeverity = 'error' | 'warning';\n\nexport interface JsxPageFinding {\n severity: JsxPageSeverity;\n rule: string;\n /** Human-readable location, e.g. `page \"command_center\" › <flex>`. */\n where: string;\n /** Config path, e.g. `pages[3].source`. */\n path: string;\n message: string;\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\nconst asArray = (v: unknown): AnyRec[] => (Array.isArray(v) ? (v as AnyRec[]) : []);\n\nexport function validateJsxPages(stack: AnyRec, opts: { manifest?: Manifest } = {}): JsxPageFinding[] {\n const findings: JsxPageFinding[] = [];\n const pages = asArray(stack.pages);\n for (let p = 0; p < pages.length; p++) {\n const page = pages[p];\n // html tier (+ deprecated 'jsx' alias). react pages are not constrained JSX.\n if (!page || (page.kind !== 'html' && page.kind !== 'jsx')) continue;\n const name = String(page.name ?? `#${p}`);\n const source = page.source;\n if (typeof source !== 'string' || source.trim() === '') {\n // (PageSchema's superRefine also covers this; keep it for the build path.)\n findings.push({\n severity: 'error',\n rule: 'jsx-page-empty-source',\n where: `page \"${name}\"`,\n path: `pages[${p}].source`,\n message: `kind:'${page.kind}' page has no \\`source\\`.`,\n hint: 'Author the page as a constrained JSX/Tailwind string in `source`.',\n });\n continue;\n }\n // With a component manifest, do full validation (unknown component, missing/\n // wrong prop, bad enum, bindings); without it, parse-level (syntax/structure).\n const { diagnostics } = opts.manifest ? compile(source, opts.manifest) : parseJsx(source);\n for (const d of diagnostics) {\n findings.push({\n severity: d.severity,\n rule: `jsx-${d.code}`,\n where: d.tag ? `page \"${name}\" › <${d.tag}>` : `page \"${name}\"`,\n path: `pages[${p}].source`,\n message: d.message,\n hint: 'The source is parsed (never executed) and compiled to the SDUI tree at save time — fix the JSX.',\n });\n }\n }\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time syntax gate for `kind:'react'` pages (ADR-0081).\n//\n// A react page's `source` is REAL JavaScript/JSX executed at render by the\n// runtime — so the constrained JSX parser (validate-jsx-pages) cannot check it.\n// We instead transpile it with Sucrase (the same transpiler the runtime uses),\n// transpile-ONLY — never executed — to surface syntax errors at `os build`\n// instead of at render (ADR-0078: fail loudly at author time). It does NOT\n// validate runtime behaviour (a transpiling page can still throw at render);\n// the render-time error boundary owns that.\n\nimport { createRequire } from 'node:module';\nimport type { transform as sucraseTransform } from 'sucrase';\n\n// Sucrase must NOT be imported at module top level: it is ~1.5 MB of CJS\n// (~16 ms cold require), and @objectstack/lint sits on the kernel boot path —\n// while this gate only runs when a `kind:'react'` page is actually validated\n// (rare, trusted tier). Same boot-path contract as the TypeScript compiler in\n// validate-react-page-props.ts: loaded lazily, on first use, staying a regular\n// dependency in package.json. Guarded by lazy-deps.test.ts.\n//\n// `node:module` is a Node builtin, untouched by esbuild/tsup, so the static\n// `createRequire` import survives bundling; the `createRequire(...)` call is\n// deferred because `import.meta.url` is rewritten to an empty stub in the CJS\n// build (same pattern as driver-sqlite-wasm's knex-wasm-dialect).\nlet cachedTransform: typeof sucraseTransform | null = null;\nfunction loadSucraseTransform(): typeof sucraseTransform {\n if (cachedTransform) return cachedTransform;\n const anchor =\n typeof import.meta !== 'undefined' && import.meta.url\n ? import.meta.url\n : typeof __filename !== 'undefined'\n ? __filename\n : process.cwd() + '/';\n try {\n cachedTransform = (createRequire(anchor)('sucrase') as { transform: typeof sucraseTransform }).transform;\n } catch (err) {\n throw new Error(\n `@objectstack/lint: validating a kind:'react' page requires the \"sucrase\" package, which could not be loaded ` +\n `(${err instanceof Error ? err.message : String(err)}). It is a declared dependency of @objectstack/lint — ` +\n `if this deployment prunes packages, keep \"sucrase\" in the image; it is only loaded when a react-source page is validated.`,\n );\n }\n return cachedTransform;\n}\n\nexport type ReactPageSeverity = 'error' | 'warning';\n\nexport interface ReactPageFinding {\n severity: ReactPageSeverity;\n rule: string;\n where: string;\n path: string;\n message: string;\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\nconst asArray = (v: unknown): AnyRec[] => (Array.isArray(v) ? (v as AnyRec[]) : []);\n\nexport function validateReactPages(stack: AnyRec): ReactPageFinding[] {\n const findings: ReactPageFinding[] = [];\n const pages = asArray(stack.pages);\n for (let p = 0; p < pages.length; p++) {\n const page = pages[p];\n if (!page || page.kind !== 'react') continue;\n const name = String(page.name ?? `#${p}`);\n const source = page.source;\n if (typeof source !== 'string' || source.trim() === '') {\n findings.push({\n severity: 'error',\n rule: 'react-page-empty-source',\n where: `page \"${name}\"`,\n path: `pages[${p}].source`,\n message: \"kind:'react' page has no `source`.\",\n hint: 'Author the page as a real React component string in `source`.',\n });\n continue;\n }\n // Outside the try below on purpose: a missing transpiler must surface as\n // an error, not be swallowed as a syntax finding.\n const transform = loadSucraseTransform();\n try {\n // transpile-only (no eval) — catches syntax errors, unterminated JSX, etc.\n transform(source, { transforms: ['jsx', 'typescript'], production: true });\n } catch (err) {\n const message = err instanceof Error ? err.message : String(err);\n findings.push({\n severity: 'error',\n rule: 'react-page-syntax',\n where: `page \"${name}\"`,\n path: `pages[${p}].source`,\n message: `kind:'react' source has a syntax error: ${message.split('\\n')[0]}`,\n hint: 'The source is transpiled (never executed) at build to catch syntax errors early — fix the JS/JSX.',\n });\n }\n }\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time prop check for `kind:'react'` pages (ADR-0081 Phase 2). The syntax\n// gate (validate-react-pages) confirms the source parses; this confirms the\n// AUTHOR USED THE COMPONENT CONTRACT correctly — it parses the real JSX with the\n// TypeScript compiler, finds usages of the injected blocks (<ObjectForm>,\n// <ListView>, …), and checks each against the react-tier contract\n// (REACT_BLOCKS in @objectstack/spec):\n//\n// - missing a required binding prop (e.g. <ObjectForm> with no objectName)\n// → error. (Only the React-enforceable overlay props are required-checked;\n// a spread `{...props}` escapes the check since props may come from it.)\n// - a prop that is a near-miss (edit distance ≤ 2) of a known prop\n// (e.g. `onSucces` → `onSuccess`) → warning. We do NOT flag arbitrary\n// unknown props (the contract's data props are a curated subset) — only the\n// likely typos, to keep false positives near zero.\n// - <ObjectChart>'s data BINDINGS, by reading the attribute VALUES (#3701,\n// retargeted to the spec shape in #3729). See the block comment above\n// `checkObjectChart`.\n//\n// Reading values is opt-in per block and per prop: everything below evaluates\n// only STATIC literals (`objectName=\"invoice\"`, an `aggregate={{…}}` object\n// literal). A value that comes from a variable, a call, or a spread is not\n// knowable at build time and is skipped silently — an unresolvable binding is\n// not a wrong one (ADR-0072 D1).\n\nimport { createRequire } from 'node:module';\nimport type ts from 'typescript';\nimport { REACT_BLOCKS, chartAggregateResultKeys } from '@objectstack/spec/ui';\n\n// The TypeScript compiler must NOT be imported at module top level: it is\n// ~9 MB of CJS (~70 ms+ to parse, worse on container cold starts), and\n// @objectstack/lint sits on the kernel boot path — while this gate only runs\n// when a `kind:'react'` page is actually validated (rare, trusted tier). An\n// eager import also hard-crashes boot in deployments that prune the package\n// from the image (cloud's Docker pruner did exactly that). So the compiler is\n// loaded lazily, on first use, and stays a regular dependency in package.json.\n// Guarded by lazy-deps.test.ts.\n//\n// `node:module` is a Node builtin, untouched by esbuild/tsup, so the static\n// `createRequire` import survives bundling; the `createRequire(...)` call is\n// deferred because `import.meta.url` is rewritten to an empty stub in the CJS\n// build (same pattern as driver-sqlite-wasm's knex-wasm-dialect).\nlet cachedTs: typeof ts | null = null;\nfunction loadTypeScript(): typeof ts {\n if (cachedTs) return cachedTs;\n const anchor =\n typeof import.meta !== 'undefined' && import.meta.url\n ? import.meta.url\n : typeof __filename !== 'undefined'\n ? __filename\n : process.cwd() + '/';\n try {\n cachedTs = createRequire(anchor)('typescript') as typeof ts;\n } catch (err) {\n throw new Error(\n `@objectstack/lint: validating a kind:'react' page requires the \"typescript\" package, which could not be loaded ` +\n `(${err instanceof Error ? err.message : String(err)}). It is a declared dependency of @objectstack/lint — ` +\n `if this deployment prunes packages, keep \"typescript\" in the image; it is only loaded when a react-source page is validated.`,\n );\n }\n return cachedTs;\n}\n\nexport type ReactPropSeverity = 'error' | 'warning';\n\nexport interface ReactPropFinding {\n severity: ReactPropSeverity;\n rule: string;\n where: string;\n path: string;\n message: string;\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\nconst asArray = (v: unknown): AnyRec[] => (Array.isArray(v) ? (v as AnyRec[]) : []);\n\ninterface BlockSpec {\n requiredBindings: string[];\n knownProps: Set<string>;\n}\nconst BLOCKS: Map<string, BlockSpec> = new Map(\n (REACT_BLOCKS as Array<{ tag: string; interactions: Array<{ name: string; required?: boolean }> }>).map((b) => [\n b.tag,\n {\n requiredBindings: b.interactions.filter((i) => i.required).map((i) => i.name),\n knownProps: new Set(b.interactions.map((i) => i.name)),\n },\n ]),\n);\n\nfunction editDistance(a: string, b: string, cap = 2): number {\n if (Math.abs(a.length - b.length) > cap) return cap + 1;\n const dp = Array.from({ length: a.length + 1 }, (_, i) => i);\n for (let j = 1; j <= b.length; j++) {\n let prev = dp[0];\n dp[0] = j;\n for (let i = 1; i <= a.length; i++) {\n const tmp = dp[i];\n dp[i] = Math.min(dp[i] + 1, dp[i - 1] + 1, prev + (a[i - 1] === b[j - 1] ? 0 : 1));\n prev = tmp;\n }\n }\n return dp[a.length];\n}\n\nfunction nearestKnown(prop: string, known: Set<string>): string | null {\n if (known.has(prop)) return null;\n let best: string | null = null;\n let bestD = 3;\n for (const k of known) {\n const d = editDistance(prop, k);\n if (d < bestD) { bestD = d; best = k; }\n }\n return bestD <= 2 ? best : null;\n}\n\n// ─── Static attribute values ──────────────────────────────────────────────\n//\n// The gate above only needed prop NAMES. Checking a binding needs its VALUE,\n// and a JSX attribute's value is an arbitrary expression. `NOT_STATIC` is the\n// sentinel for \"this expression is not knowable at build time\" — distinct from\n// a literal `undefined`, which IS knowable.\n\nconst NOT_STATIC = Symbol('not-static');\n\n/** Evaluate a JSX expression to a plain JS value, or `NOT_STATIC`. */\nfunction staticValue(tsc: typeof ts, sf: ts.SourceFile, node: ts.Node | undefined): unknown {\n if (!node) return NOT_STATIC;\n if (tsc.isParenthesizedExpression(node)) return staticValue(tsc, sf, node.expression);\n if (tsc.isStringLiteral(node) || tsc.isNoSubstitutionTemplateLiteral(node)) return node.text;\n if (tsc.isNumericLiteral(node)) return Number(node.text);\n if (node.kind === tsc.SyntaxKind.TrueKeyword) return true;\n if (node.kind === tsc.SyntaxKind.FalseKeyword) return false;\n if (node.kind === tsc.SyntaxKind.NullKeyword) return null;\n if (tsc.isArrayLiteralExpression(node)) {\n const out: unknown[] = [];\n for (const el of node.elements) {\n const v = staticValue(tsc, sf, el);\n if (v === NOT_STATIC) return NOT_STATIC;\n out.push(v);\n }\n return out;\n }\n if (tsc.isObjectLiteralExpression(node)) {\n const out: Record<string, unknown> = {};\n for (const p of node.properties) {\n // A shorthand (`{ field }`) or spread (`{ ...cfg }`) hides its value.\n if (!tsc.isPropertyAssignment(p)) return NOT_STATIC;\n const key = tsc.isIdentifier(p.name) || tsc.isStringLiteral(p.name) ? p.name.text : null;\n if (key === null) return NOT_STATIC;\n const v = staticValue(tsc, sf, p.initializer);\n if (v === NOT_STATIC) return NOT_STATIC;\n out[key] = v;\n }\n return out;\n }\n return NOT_STATIC;\n}\n\n/** The static value of one JSX attribute (`x=\"s\"` or `x={…}`), or `NOT_STATIC`. */\nfunction attrValue(tsc: typeof ts, sf: ts.SourceFile, attr: ts.JsxAttribute): unknown {\n const init = attr.initializer;\n if (!init) return true; // bare `showLegend` — JSX shorthand for `={true}`\n if (tsc.isStringLiteral(init)) return init.text;\n if (tsc.isJsxExpression(init)) return staticValue(tsc, sf, init.expression);\n return NOT_STATIC;\n}\n\n// ─── <ObjectChart> binding integrity (#3701) ──────────────────────────────\n//\n// `validate-chart-bindings` covers every DATASET-bound chart surface: a\n// dataset declares its dimensions/measures by NAME, result rows are keyed by\n// those names, and an axis is checked against them. The react `<ObjectChart>`\n// block was excluded because it is OBJECT-bound — `objectName` + an inline\n// `aggregate` — and nothing said what the aggregated result columns were\n// called, so `xAxisKey`/`series[].dataKey` had nothing to resolve against.\n//\n// #3701 closed that: `chartAggregateResultKeys` in @objectstack/spec/ui now\n// records the convention every renderer already implements (rows keyed by the\n// RAW FIELD NAMES — `groupBy` for the category, `field` for the value, the\n// literal `'count'` for a fieldless count). With the columns pinned, both\n// halves of the binding are checkable:\n//\n// * `aggregate.field` / `aggregate.groupBy` are RAW FIELD names → check them\n// against the object's declared fields.\n// * the axes are RESULT COLUMN names → check them against what this\n// aggregate produces.\n//\n// The axes are read in the SPEC spelling — `xAxis.field`, `yAxis[].field`,\n// `series[].name` (#3729). #3701 had to read `xAxisKey`/`series[].dataKey`\n// because those were the only spellings the renderer honored; objectui#2880\n// made it honor ChartConfig, so the gate follows the protocol again. The\n// internal spellings are still accepted, silently: dashboards and the console's\n// own chart-view wiring emit them, and they remain a valid (if unpublished)\n// way to write the same binding.\n\nexport const REACT_CHART_FIELD_UNKNOWN = 'react-chart-field-unknown';\nexport const REACT_CHART_AGGREGATE_INVALID = 'react-chart-aggregate-invalid';\nexport const REACT_CHART_AXIS_UNKNOWN = 'react-chart-axis-unknown';\n\nconst CHART_FUNCTIONS = ['count', 'sum', 'avg', 'min', 'max'] as const;\n\n/**\n * Registry-injected fields present on (almost) every object but absent from\n * `object.fields`. Same set as `validate-page-field-bindings`, for the same\n * reason: over-inclusion costs at worst a missed finding, under-inclusion\n * costs a false one.\n */\nconst SYSTEM_FIELDS = new Set<string>([\n 'id',\n 'created_at', 'created_by', 'updated_at', 'updated_by',\n 'owner_id', 'organization_id', 'tenant_id', 'user_id',\n 'deleted_at',\n]);\n\n/**\n * Both `objects` and an object's `fields` are authored either as an array of\n * `{ name }` records or as a name-keyed map — normalize to the array form, the\n * same way the other reference-integrity rules do.\n */\nfunction namedArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v.filter((x): x is AnyRec => !!x && typeof x === 'object');\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({\n name,\n ...(def && typeof def === 'object' ? (def as AnyRec) : {}),\n }));\n }\n return [];\n}\n\n/** object name → its declared field names. */\nfunction indexObjectFields(stack: AnyRec): Map<string, Set<string>> {\n const out = new Map<string, Set<string>>();\n for (const obj of namedArray(stack.objects)) {\n const name = typeof obj.name === 'string' ? obj.name : undefined;\n if (!name) continue;\n const names = new Set<string>();\n for (const f of namedArray(obj.fields)) {\n if (typeof f.name === 'string' && f.name) names.add(f.name);\n }\n out.set(name, names);\n }\n return out;\n}\n\nconst isRec = (v: unknown): v is Record<string, unknown> =>\n !!v && typeof v === 'object' && !Array.isArray(v);\n\nconst strOf = (v: unknown): string | undefined =>\n typeof v === 'string' && v.length > 0 ? v : undefined;\n\ninterface ChartAttrs {\n /** Statically resolved attribute values, keyed by prop name. */\n values: Map<string, unknown>;\n where: string;\n path: string;\n}\n\nfunction checkObjectChart(\n attrs: ChartAttrs,\n objectFields: Map<string, Set<string>>,\n findings: ReactPropFinding[],\n): void {\n const { values, where, path } = attrs;\n const push = (severity: ReactPropSeverity, rule: string, message: string, hint: string) =>\n findings.push({ severity, rule, where, path, message, hint });\n\n // Inline `data` wins over the aggregate query: the columns then come from\n // the author's own rows, which this rule cannot see. Nothing further to say.\n if (values.has('data')) return;\n\n const aggregate = values.get('aggregate');\n if (aggregate === undefined || aggregate === NOT_STATIC) return;\n if (!isRec(aggregate)) return;\n\n const fn = strOf(aggregate.function);\n const field = strOf(aggregate.field);\n const groupBy = aggregate.groupBy;\n const groupByField = strOf(groupBy) ?? (isRec(groupBy) ? strOf(groupBy.field) : undefined);\n\n // 1. The aggregate declaration itself.\n if (fn && !(CHART_FUNCTIONS as readonly string[]).includes(fn)) {\n push(\n 'error',\n REACT_CHART_AGGREGATE_INVALID,\n `aggregate.function \"${fn}\" is not an aggregation this chart can run.`,\n `Use one of: ${CHART_FUNCTIONS.join(', ')}.`,\n );\n } else if (fn && fn !== 'count' && !field) {\n push(\n 'error',\n REACT_CHART_AGGREGATE_INVALID,\n `aggregate.function \"${fn}\" has no \"field\" to aggregate.`,\n 'Add aggregate.field, or use function \"count\" (the only one that may omit it).',\n );\n }\n\n // 2. `field` / `groupBy` are RAW field names on the bound object.\n const objectName = strOf(values.get('objectName'));\n const known = objectName ? objectFields.get(objectName) : undefined;\n // No object name, or an object declared in another package: unknowable here\n // — the same skip the widget/flow/page rules take.\n if (objectName && known) {\n const fieldRef = (name: string | undefined, prop: string) => {\n if (!name) return;\n // A relationship path (`account.name`) is resolved by the query engine.\n if (name.includes('.')) return;\n if (known.has(name) || SYSTEM_FIELDS.has(name)) return;\n push(\n 'error',\n REACT_CHART_FIELD_UNKNOWN,\n `aggregate.${prop} \"${name}\" is not a field on object \"${objectName}\" — ` +\n `the aggregate query has nothing to ${prop === 'groupBy' ? 'group by' : 'aggregate'}, so the chart comes back empty.`,\n `Fix the field name, or add \"${name}\" to ${objectName}.` +\n (known.size > 0 ? ` Object fields: ${[...known].sort().join(', ')}.` : ''),\n );\n };\n fieldRef(field, 'field');\n fieldRef(groupByField, 'groupBy');\n }\n\n // 3. The axes name RESULT COLUMNS, not fields — the #3701 convention.\n const keys = chartAggregateResultKeys({ field, function: fn, groupBy });\n const columns = [keys.category, keys.value].filter((k): k is string => !!k);\n if (columns.length === 0) return; // an aggregate too incomplete to judge against\n\n const axisRef = (name: string | undefined, prop: string) => {\n if (!name) return;\n if (columns.includes(name)) return;\n // The comparison overlay's column only exists when `compareTo` is on, but\n // binding it is legitimate — never flag it as unknown.\n if (keys.comparison && name === keys.comparison) return;\n push(\n 'error',\n REACT_CHART_AXIS_UNKNOWN,\n `\"${name}\" is not a column this aggregate returns, so the axis plots nothing. ` +\n `Object-bound aggregate rows are keyed by the RAW FIELD NAMES ` +\n `(unlike a dataset, whose rows are keyed by measure name).`,\n `Result columns: ${columns.join(', ')}` +\n (keys.comparison ? ` (plus \"${keys.comparison}\" with a comparison overlay)` : '') +\n `. Bind ${prop} to one of them.`,\n );\n };\n\n // The category axis: spec `xAxis: { field }`, the report surface's bare\n // string, or the internal `xAxisKey`. All three name the same column.\n const xAxisRaw = values.get('xAxis');\n const categoryAxis =\n strOf(values.get('xAxisKey')) ??\n strOf(xAxisRaw) ??\n (isRec(xAxisRaw) ? strOf(xAxisRaw.field) : undefined);\n const categoryProp = values.has('xAxisKey') ? 'xAxisKey' : 'xAxis.field';\n axisRef(categoryAxis, categoryProp);\n\n // The value axes: spec `yAxis: [{ field }]` (or a single object / bare\n // string) and spec `series: [{ name }]` / internal `series: [{ dataKey }]`.\n const yAxisRaw = values.get('yAxis');\n const yAxisList = Array.isArray(yAxisRaw) ? yAxisRaw : yAxisRaw !== undefined ? [yAxisRaw] : [];\n for (const a of yAxisList) {\n axisRef(strOf(a) ?? (isRec(a) ? strOf(a.field) : undefined), 'yAxis[].field');\n }\n\n const series = values.get('series');\n if (Array.isArray(series)) {\n for (const s of series) {\n if (!isRec(s)) continue;\n const dataKey = strOf(s.dataKey);\n axisRef(dataKey ?? strOf(s.name), dataKey ? 'series[].dataKey' : 'series[].name');\n }\n }\n\n // A category axis bound to anything but the groupBy is always wrong, and the\n // check above lets it through when it happens to equal the VALUE column.\n if (categoryAxis && keys.category && categoryAxis !== keys.category && categoryAxis === keys.value) {\n push(\n 'error',\n REACT_CHART_AXIS_UNKNOWN,\n `${categoryProp} \"${categoryAxis}\" is the aggregate's VALUE column, not its category column.`,\n `The category axis is keyed by groupBy — bind it to \"${keys.category}\".`,\n );\n }\n}\n\nexport function validateReactPageProps(stack: AnyRec): ReactPropFinding[] {\n const findings: ReactPropFinding[] = [];\n const objectFields = indexObjectFields(stack);\n const pages = asArray(stack.pages);\n for (let p = 0; p < pages.length; p++) {\n const page = pages[p];\n if (!page || page.kind !== 'react') continue;\n const source = page.source;\n if (typeof source !== 'string' || source.trim() === '') continue;\n const name = String(page.name ?? `#${p}`);\n\n // Outside the try below on purpose: a missing compiler must surface as an\n // error, not be swallowed as \"unparseable source\".\n const tsc = loadTypeScript();\n\n let sf: ts.SourceFile;\n try {\n sf = tsc.createSourceFile('page.tsx', source, tsc.ScriptTarget.Latest, true, tsc.ScriptKind.TSX);\n } catch {\n continue; // the syntax gate reports unparseable sources\n }\n\n const visit = (node: ts.Node): void => {\n if (tsc.isJsxOpeningElement(node) || tsc.isJsxSelfClosingElement(node)) {\n const tag = node.tagName.getText(sf);\n const block = BLOCKS.get(tag);\n if (block) {\n let hasSpread = false;\n const used = new Set<string>();\n const values = new Map<string, unknown>();\n for (const a of node.attributes.properties) {\n if (tsc.isJsxSpreadAttribute(a)) { hasSpread = true; continue; }\n if (tsc.isJsxAttribute(a)) {\n const propName = a.name.getText(sf);\n used.add(propName);\n values.set(propName, attrValue(tsc, sf, a));\n }\n }\n const where = `page \"${name}\" › <${tag}>`;\n const path = `pages[${p}].source`;\n if (!hasSpread) {\n for (const req of block.requiredBindings) {\n if (!used.has(req)) {\n findings.push({\n severity: 'error',\n rule: 'react-prop-missing-required',\n where, path,\n message: `<${tag}> is missing the required prop \"${req}\".`,\n hint: `Pass ${req}={…}. See the react-tier component contract.`,\n });\n }\n }\n }\n for (const u of used) {\n const near = nearestKnown(u, block.knownProps);\n if (near) {\n findings.push({\n severity: 'warning',\n rule: 'react-prop-typo',\n where, path,\n message: `<${tag}> has prop \"${u}\" — did you mean \"${near}\"?`,\n hint: 'Likely a typo of a contract prop. Fix it or remove it.',\n });\n }\n }\n // A spread can supply any of the bindings below, so the values we\n // can see are an incomplete picture — skip rather than guess.\n if (tag === 'ObjectChart' && !hasSpread) {\n checkObjectChart({ values, where, path }, objectFields, findings);\n }\n }\n }\n tsc.forEachChild(node, visit);\n };\n visit(sf);\n }\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail for SDUI source-tier page styling (ADR-0065 / ADR-0080 /\n// ADR-0081). A `kind:'html'` or `kind:'react'` page's `source` is RUNTIME\n// metadata — the console's build-time Tailwind only scans the renderer's own\n// source, never an authored page string. So a Tailwind `className` in page\n// source silently produces NO CSS (the exact ADR-0065 failure: styling that\n// \"works only by coincidence\" when the class happens to be one objectui already\n// ships). This rule flags authored `className` attributes in source-tier pages\n// before render, with the actionable fix.\n//\n// It is the styling counterpart to the react-prop gate: a pure\n// `(stack) => Finding[]` rule (ADR-0019), run from `os validate`/`compile` and\n// reusable by AI authoring so the agent self-corrects.\n\nexport type SourceStyleSeverity = 'error' | 'warning';\n\nexport interface SourceStyleFinding {\n severity: SourceStyleSeverity;\n rule: string;\n where: string;\n path: string;\n message: string;\n hint: string;\n}\n\nexport const PAGE_SOURCE_CLASSNAME = 'page-source-className-tailwind';\n\ntype AnyRec = Record<string, unknown>;\nconst asArray = (v: unknown): AnyRec[] => (Array.isArray(v) ? (v as AnyRec[]) : []);\n\n// `className=` as a JSX attribute: name, optional ws, `=`, then `\"`/`'`/`{`.\nconst CLASSNAME_ATTR = /\\bclassName\\s*=\\s*[\"'{]/g;\n\nexport function validatePageSourceStyling(stack: AnyRec): SourceStyleFinding[] {\n const findings: SourceStyleFinding[] = [];\n const pages = asArray(stack.pages);\n for (let p = 0; p < pages.length; p++) {\n const page = pages[p];\n if (!page) continue;\n const kind = page.kind;\n if (kind !== 'html' && kind !== 'react' && kind !== 'jsx') continue;\n const source = page.source;\n if (typeof source !== 'string' || source.trim() === '') continue;\n const name = String(page.name ?? `#${p}`);\n\n CLASSNAME_ATTR.lastIndex = 0;\n let count = 0;\n while (CLASSNAME_ATTR.exec(source) !== null) count++;\n if (count === 0) continue;\n\n findings.push({\n severity: 'warning',\n rule: PAGE_SOURCE_CLASSNAME,\n where: `page \"${name}\"`,\n path: `pages[${p}].source`,\n message: `${count} \\`className\\` attribute${count > 1 ? 's' : ''} in ${String(kind)}-source page — Tailwind utilities in page source silently produce no CSS (the build never scans authored metadata; ADR-0065).`,\n hint:\n kind === 'react'\n ? \"Style with inline style={{}} using hsl(var(--token)) theme colors (e.g. color:'hsl(var(--foreground))', background:'hsl(var(--card))'); render drawer/modal via <ObjectForm formType=\\\"drawer\\\"|\\\"modal\\\"> instead of hand-rolled overlays.\"\n : \"Lay out with the components' structured props (<flex direction gap>, <grid columns>) and add CSS via a JSON style object style={{\\\"color\\\":\\\"hsl(var(--foreground))\\\"}}; do not use Tailwind className.\",\n });\n }\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\nimport { objectTitleCompleteness } from '@objectstack/spec/data';\nimport type { DisplayNameObjectMeta } from '@objectstack/spec/data';\n\n/**\n * Build-time record-title diagnostics (ADR-0079).\n *\n * A record's human title is a structural invariant: every object resolves a\n * primary title from a real STORED field via `nameField` (the canonical\n * pointer; `displayNameField` is the deprecated alias) or a deterministic\n * derivation. Two authoring smells are flagged here so `os build`/`os lint`,\n * the MCP authoring surface, and hand-authoring all get the coverage cloud\n * graph-lint already has (the ADR-0078 \"not cloud-only\" principle):\n *\n * - `title-format-retired` — the object declares a `titleFormat`. That field\n * is a RENDER-ONLY template the server can neither return nor query; ADR-0079\n * retires it in favour of `nameField`. The schema still parses it (existing\n * metadata keeps loading), so this is advisory, not an error.\n * - `title-unresolvable` — `objectTitleCompleteness` reports `status: 'none'`:\n * no `nameField`/`displayNameField` pointer and no title-eligible field to\n * derive one from. Records will have no meaningful title (the runtime falls\n * back to the auto-provisioned primary / `Record #<id>` floor), so this is a\n * warning, not an error — nothing is fully broken.\n *\n * Both are warnings: the auto-provision transform and the id floor mean a\n * green build never ships a fully title-less object. Reuses the shared spec\n * predicate (`@objectstack/spec/data` → display-name) so cloud and framework\n * classify titles identically.\n */\n\nexport const TITLE_FORMAT_RETIRED = 'title-format-retired';\nexport const TITLE_UNRESOLVABLE = 'title-unresolvable';\n\nexport type RecordTitleSeverity = 'error' | 'warning';\n\nexport interface RecordTitleFinding {\n /** Always `warning` today — both rules are advisory (see module note). */\n severity: RecordTitleSeverity;\n /** Diagnostic rule id (registry entry), e.g. `title-format-retired`. */\n rule: string;\n /** Human-readable location, e.g. `object \"invoice\"`. */\n where: string;\n /** Config path, e.g. `objects[3]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/**\n * Validate every object's record-title declaration. Returns the list of\n * findings (empty = clean). Both rules are advisory (`warning`): the caller\n * must never fail the build on them alone — auto-provision + the `Record #<id>`\n * floor guarantee a resolvable title at runtime.\n */\nexport function validateRecordTitle(stack: AnyRec): RecordTitleFinding[] {\n const findings: RecordTitleFinding[] = [];\n\n const objects = asArray(stack.objects);\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n const objName = typeof obj.name === 'string' ? obj.name : `(object ${i})`;\n const where = `object \"${objName}\"`;\n const path = `objects[${i}]`;\n\n // ── (a) titleFormat is retired (ADR-0079) ──\n // Render-only template the server cannot return or query. Still parsed by\n // the schema for back-compat, so advisory.\n if (obj.titleFormat !== undefined && obj.titleFormat !== null && obj.titleFormat !== '') {\n findings.push({\n severity: 'warning',\n rule: TITLE_FORMAT_RETIRED,\n where,\n path,\n message:\n `${objName}: titleFormat is retired (ADR-0079) — migrate to nameField ` +\n `(single field) or a formula field designated nameField`,\n hint:\n `titleFormat is a render-only template the server cannot return or ` +\n `query, and an explicit nameField now takes precedence. For a ` +\n `single-field title set nameField: '<field>'. For a composite title, ` +\n `add a formula field (returnType: 'text') and designate it via ` +\n `nameField.`,\n });\n }\n\n // ── (b) no resolvable title (status: 'none') ──\n // Reuse the shared spec predicate so cloud graph-lint and framework lint\n // classify titles identically. `none` = no pointer AND nothing derivable.\n const completeness = objectTitleCompleteness(obj as DisplayNameObjectMeta);\n if (completeness.status === 'none') {\n findings.push({\n severity: 'warning',\n rule: TITLE_UNRESOLVABLE,\n where,\n path,\n message:\n `${objName}: no resolvable record title — records will have no ` +\n `meaningful name (no nameField and no title-eligible field to derive one)`,\n hint:\n `Set nameField to a text/email field (or a formula field with ` +\n `returnType: 'text'), or add a text field named \"name\"/\"title\". The ` +\n `runtime auto-provisions a primary and falls back to \"Record #<id>\", ` +\n `but an explicit title is far more useful.`,\n });\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * Build-time semantic-role diagnostics (ADR-0085).\n *\n * The object-level semantic roles (`stageField`, `highlightFields` /\n * deprecated `compactLayout`, `fieldGroups` + `Field.group`) are pointers\n * into the object's own field map. A dangling pointer is Zod-valid but\n * silently inert at render time — the exact \"parsed, unmarked, silently\n * inert\" shape ADR-0078 prohibits — so the completeness lint flags it here,\n * uniformly for `os build`/`os validate`, MCP authoring and hand authors.\n *\n * All three rules are warnings, not errors: every consumer degrades\n * gracefully (an unknown `Field.group` renders in the ungrouped bucket, an\n * unknown highlight name is skipped, an unknown `stageField` falls back to\n * heuristics), so nothing is fully broken — but the author almost certainly\n * typo'd a name and should be told at author time, not discover it by\n * staring at an unchanged page.\n */\n\nexport const FIELD_GROUP_UNDECLARED = 'field-group-undeclared';\nexport const FIELD_GROUP_EMPTY = 'field-group-empty';\nexport const FIELD_GROUP_SHADOWED = 'field-group-shadowed';\nexport const SEMANTIC_ROLE_FIELD_UNKNOWN = 'semantic-role-field-unknown';\n\nexport type SemanticRoleSeverity = 'error' | 'warning';\n\nexport interface SemanticRoleFinding {\n /** Always `warning` today — all three rules are advisory (see module note). */\n severity: SemanticRoleSeverity;\n /** Diagnostic rule id, e.g. `field-group-undeclared`. */\n rule: string;\n /** Human-readable location, e.g. `object \"invoice\"`. */\n where: string;\n /** Config path, e.g. `objects[3]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/**\n * Validate every object's semantic-role pointers. Returns the list of\n * findings (empty = clean). Advisory only — the caller must never fail the\n * build on these alone.\n */\nexport function validateSemanticRoles(stack: AnyRec): SemanticRoleFinding[] {\n const findings: SemanticRoleFinding[] = [];\n\n const objects = asArray(stack.objects);\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n if (!obj || typeof obj !== 'object') continue; // tolerate junk entries\n const objName = typeof obj.name === 'string' ? obj.name : `(object ${i})`;\n const where = `object \"${objName}\"`;\n const path = `objects[${i}]`;\n\n const fields = (obj.fields && typeof obj.fields === 'object' && !Array.isArray(obj.fields))\n ? (obj.fields as Record<string, AnyRec | undefined>)\n : {};\n const fieldNames = new Set(Object.keys(fields));\n\n // ── (a) Field.group → declared fieldGroups[].key ──\n const declaredGroups = new Set(\n (Array.isArray(obj.fieldGroups) ? obj.fieldGroups : [])\n .filter((g): g is AnyRec => !!g && typeof g === 'object')\n .map((g) => g.key)\n .filter((k): k is string => typeof k === 'string' && k.length > 0),\n );\n const referencedGroups = new Set<string>();\n for (const [fname, f] of Object.entries(fields)) {\n const g = f?.group;\n if (typeof g !== 'string' || g.length === 0) continue;\n referencedGroups.add(g);\n if (!declaredGroups.has(g)) {\n findings.push({\n severity: 'warning',\n rule: FIELD_GROUP_UNDECLARED,\n where,\n path: `${path}.fields.${fname}.group`,\n message:\n `${objName}.${fname}: group \"${g}\" is not declared in fieldGroups — ` +\n `the field renders in the ungrouped bucket, not under \"${g}\"`,\n hint:\n `Declare { key: '${g}', label: '…' } in ${objName}.fieldGroups, or fix ` +\n `the field's group reference. Group keys are snake_case and must match exactly.`,\n });\n }\n }\n\n // ── (b) declared group no field references ──\n for (const key of declaredGroups) {\n if (!referencedGroups.has(key)) {\n findings.push({\n severity: 'warning',\n rule: FIELD_GROUP_EMPTY,\n where,\n path: `${path}.fieldGroups`,\n message:\n `${objName}: fieldGroups declares \"${key}\" but no field references it — ` +\n `the group never renders`,\n hint:\n `Assign at least one field via group: '${key}', or remove the unused ` +\n `group declaration.`,\n });\n }\n }\n\n // ── (c) semantic-role pointers name real fields ──\n const stage = obj.stageField;\n if (typeof stage === 'string' && stage.length > 0 && !fieldNames.has(stage)) {\n findings.push({\n severity: 'warning',\n rule: SEMANTIC_ROLE_FIELD_UNKNOWN,\n where,\n path: `${path}.stageField`,\n message:\n `${objName}: stageField \"${stage}\" is not a field on this object — ` +\n `consumers fall back to heuristic stage detection`,\n hint:\n `Point stageField at an existing select/status field, or set ` +\n `stageField: false to declare the object has no linear lifecycle.`,\n });\n }\n\n const highlights = Array.isArray(obj.highlightFields)\n ? obj.highlightFields\n : Array.isArray(obj.compactLayout) // deprecated alias (pre-normalization input)\n ? obj.compactLayout\n : [];\n for (const entry of highlights) {\n if (typeof entry !== 'string' || entry.length === 0 || fieldNames.has(entry)) continue;\n findings.push({\n severity: 'warning',\n rule: SEMANTIC_ROLE_FIELD_UNKNOWN,\n where,\n path: `${path}.highlightFields`,\n message:\n `${objName}: highlightFields entry \"${entry}\" is not a field on this ` +\n `object — it is silently skipped by every consumer`,\n hint:\n `Fix the field name (highlightFields drives default columns, cards, ` +\n `previews and the detail highlight strip, in order).`,\n });\n }\n\n // ── (d) declared group fully shadowed by the detail highlight strip ──\n // Detail pages render the first 4 highlightFields as the top strip and\n // HIDE those fields from the details body; the record's title field is\n // the page H1 and never renders in the body either. A group whose every\n // visible member is covered by strip ∪ title therefore renders on FORMS\n // but silently never on detail pages — legal, but almost never what the\n // author pictured when they declared the group.\n const declaredStrings = highlights.filter(\n (h): h is string => typeof h === 'string' && h.length > 0,\n );\n if (declaredStrings.length > 0 && declaredGroups.size > 0) {\n // Mirror the renderer's title resolution: declared role first\n // (nameField / primaryField / deprecated displayNameField), else the\n // first conventional display-field name present on the object.\n const declaredTitle = [obj.nameField, obj.primaryField, obj.displayNameField]\n .find((v): v is string => typeof v === 'string' && v.length > 0 && fieldNames.has(v));\n const titleField = declaredTitle\n ?? ['name', 'full_name', 'title', 'subject', 'display_name'].find((c) => fieldNames.has(c));\n const stripSet = new Set(\n declaredStrings.filter((h) => h !== titleField).slice(0, 4),\n );\n const hiddenFromBody = new Set(stripSet);\n if (titleField) hiddenFromBody.add(titleField);\n\n for (const key of declaredGroups) {\n const members = Object.entries(fields)\n .filter(([, f]) => f?.group === key && f?.hidden !== true)\n .map(([fname]) => fname);\n if (members.length === 0) continue; // rule (b) already covers empty groups\n if (!members.every((m) => hiddenFromBody.has(m))) continue;\n findings.push({\n severity: 'warning',\n rule: FIELD_GROUP_SHADOWED,\n where,\n path: `${path}.fieldGroups`,\n message:\n `${objName}: every field in group \"${key}\" (${members.join(', ')}) is ` +\n `hoisted into the detail highlight strip (or is the record title) — ` +\n `the group renders on forms but never on detail pages`,\n hint:\n `Keep at least one non-highlighted field in \"${key}\", or remove the ` +\n `group if the strip already covers it. (Detail pages show the first ` +\n `4 highlightFields as the top strip and hide them from the body.)`,\n });\n }\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * Build-time form-layout diagnostics (#2578).\n *\n * Authored form views carry field references and column-layout hints that are\n * Zod-valid but can be silently wrong at render time — the \"parsed, unmarked,\n * silently inert\" shape ADR-0078 prohibits. This lint catches the two that\n * matter for multi-column, AI-authored forms, uniformly for `os build` /\n * `os validate`, MCP authoring and hand authors (ADR-0019).\n *\n * Both rules are warnings, not errors — nothing is fully broken (an unknown\n * field name is skipped; an over-wide colSpan is clamped) — but each is almost\n * certainly an authoring mistake worth surfacing at author time:\n *\n * - `form-field-unknown` — a section references a field that is not on the\n * form's bound object, so the field silently does not render.\n * - `absolute-colspan-discouraged` — a field uses the absolute `colSpan`. Under\n * a per-surface DERIVED column count (mobile 1 / modal 2 / page 3-4) a fixed\n * span only lines up at the one width the author imagined; the renderer\n * clamps it. The robust primitive is the relative `span: 'full'`.\n *\n * Scope: top-level form `views` (a `sections` array). Forms embedded inside\n * page component trees are a follow-up — the walker deliberately stays shallow\n * so it never guesses at an arbitrary component's object binding.\n */\n\nexport const FORM_FIELD_UNKNOWN = 'form-field-unknown';\nexport const FORM_COLSPAN_ABSOLUTE = 'absolute-colspan-discouraged';\n\nexport type FormLayoutSeverity = 'error' | 'warning';\n\nexport interface FormLayoutFinding {\n /** Always `warning` today — both rules are advisory (see module note). */\n severity: FormLayoutSeverity;\n /** Diagnostic rule id, e.g. `form-field-unknown`. */\n rule: string;\n /** Human-readable location, e.g. `view \"contract_form\"`. */\n where: string;\n /** Config path, e.g. `views[2].sections[0].fields[3]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** A section field entry is either a bare field name or `{ field, colSpan, … }`. */\nfunction fieldNameOf(entry: unknown): string | null {\n if (typeof entry === 'string') return entry.length > 0 ? entry : null;\n if (entry && typeof entry === 'object' && !Array.isArray(entry)) {\n const f = (entry as AnyRec).field;\n return typeof f === 'string' && f.length > 0 ? f : null;\n }\n return null;\n}\n\n/** The object a form view binds to: `data.object` (canonical) or `objectName`. */\nfunction boundObject(view: AnyRec): string | undefined {\n const data = view.data;\n if (data && typeof data === 'object' && typeof (data as AnyRec).object === 'string') {\n return (data as AnyRec).object as string;\n }\n return typeof view.objectName === 'string' ? (view.objectName as string) : undefined;\n}\n\n/**\n * Validate authored form-view layout. Returns findings (empty = clean).\n * Advisory only — the caller must never fail the build on these alone.\n */\nexport function validateFormLayout(stack: AnyRec): FormLayoutFinding[] {\n const findings: FormLayoutFinding[] = [];\n\n // object name → its field-name set, for reference checking.\n const objectFields = new Map<string, Set<string>>();\n for (const obj of asArray(stack.objects)) {\n const name = typeof obj.name === 'string' ? obj.name : undefined;\n if (!name) continue;\n const fields = (obj.fields && typeof obj.fields === 'object' && !Array.isArray(obj.fields))\n ? Object.keys(obj.fields as AnyRec)\n : [];\n objectFields.set(name, new Set(fields));\n }\n\n const views = asArray(stack.views);\n for (let i = 0; i < views.length; i++) {\n const view = views[i];\n if (!view || typeof view !== 'object') continue;\n const sections = Array.isArray(view.sections) ? view.sections : null;\n if (!sections) continue; // only form views carry a sections array\n\n const viewName = typeof view.name === 'string' ? view.name : `(view ${i})`;\n const objName = boundObject(view);\n // Only reference-check when the bound object resolves; otherwise we can't.\n const known = objName ? objectFields.get(objName) : undefined;\n const where = `view \"${viewName}\"`;\n const base = `views[${i}]`;\n\n for (let s = 0; s < sections.length; s++) {\n const sec = sections[s];\n const secFields = sec && typeof sec === 'object' && Array.isArray((sec as AnyRec).fields)\n ? ((sec as AnyRec).fields as unknown[])\n : [];\n for (let f = 0; f < secFields.length; f++) {\n const entry = secFields[f];\n const fname = fieldNameOf(entry);\n const fpath = `${base}.sections[${s}].fields[${f}]`;\n\n // ── (a) section field references a real field on the bound object ──\n if (fname && known && !known.has(fname)) {\n findings.push({\n severity: 'warning',\n rule: FORM_FIELD_UNKNOWN,\n where,\n path: fpath,\n message:\n `${viewName}: field \"${fname}\" is not a field on object \"${objName}\" — ` +\n `it is silently skipped and never renders on the form`,\n hint:\n `Fix the field name, or add \"${fname}\" to ${objName}. Section field ` +\n `references must match the object's field names exactly.`,\n });\n }\n\n // ── (b) absolute colSpan → steer to the surface-independent span ──\n const colSpan = entry && typeof entry === 'object' && !Array.isArray(entry)\n ? (entry as AnyRec).colSpan\n : undefined;\n if (colSpan != null) {\n findings.push({\n severity: 'warning',\n rule: FORM_COLSPAN_ABSOLUTE,\n where,\n path: `${fpath}.colSpan`,\n message:\n `${viewName}: field \"${fname ?? '?'}\" sets absolute colSpan ${String(colSpan)} — ` +\n `the form's column count is derived per surface (mobile 1 / modal 2 / page 3-4), ` +\n `so a fixed span only aligns at one width`,\n hint:\n `Prefer span: 'full' (whole row at any column count), or omit for auto ` +\n `width. The renderer clamps colSpan to the current column count.`,\n });\n }\n }\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * Build-time conditional-visibility diagnostics (ADR-0089 D3b).\n *\n * ADR-0089 unifies the conditional-visibility predicate under the single\n * canonical key **`visibleWhen`** across data fields, view form sections/fields,\n * and page components. The deprecated spellings — `visibleOn` (view form) and\n * `visibility` (page component) — stay accepted and are folded into `visibleWhen`\n * at the schema boundary (a zod `.transform()`). Because that fold happens during\n * `parse()`, the aliases are gone from the *parsed* stack — so this rule runs on\n * the **pre-parse** (normalized) stack, exactly like `validate-list-view-mode`,\n * to see what the author actually wrote.\n *\n * Two advisory rules (both `warning` — nothing is broken, the alias still works\n * and a mis-rooted predicate just never matches):\n *\n * - `visibility-alias-deprecated` — a `visibleOn` / `visibility` key in authored\n * source. Autofix intent: rename the key to `visibleWhen` (same value).\n * - `visibility-root-mislayered` — a visibility predicate whose binding root does\n * not match its layer (ADR-0089 D3, §Context). The check is **bidirectional**:\n * - **runtime** view/page surfaces (`*.view.ts` / `*.page.ts`) bind\n * `record` + `current_user` (pages also expose `page.<var>`), so a `data.`-rooted\n * predicate here is a wrong-layer paste that silently never matches; and\n * - **metadata-editing** forms (`*.form.ts` — the row under edit) bind `data`, so\n * a `record.`-rooted predicate there is the same bug in the other direction.\n * The layer is supplied by the caller (`opts.layer`, default `'runtime'`): the\n * app-lint path (`os validate` / `compile`) always lints runtime surfaces, while a\n * file-aware caller linting a `*.form.ts` passes `layer: 'metadata'`.\n *\n * Scope: `views` (form `sections` / legacy `groups`, and their `fields`) and\n * `pages` (`regions[].components[]`). Data-field `visibleWhen` is already covered\n * by `validate-expressions` and is not re-checked here.\n */\n\nexport const VISIBILITY_ALIAS_DEPRECATED = 'visibility-alias-deprecated';\nexport const VISIBILITY_ROOT_MISLAYERED = 'visibility-root-mislayered';\n\nexport type VisibilitySeverity = 'error' | 'warning';\n\n/**\n * Which binding environment the linted surface belongs to (ADR-0089 §Context):\n * - `runtime` — `*.view.ts` / `*.page.ts`; binds `record` + `current_user` (+ `page`).\n * - `metadata` — `*.form.ts` metadata-editing forms; binds `data` (the row under edit).\n */\nexport type VisibilityLayer = 'runtime' | 'metadata';\n\n/** Options for {@link validateVisibilityPredicates}. */\nexport interface VisibilityOptions {\n /** Binding layer of the surface being linted. Defaults to `'runtime'`. */\n layer?: VisibilityLayer;\n}\n\nexport interface VisibilityFinding {\n /** Always `warning` today — both rules are advisory (see module note). */\n severity: VisibilitySeverity;\n /** Diagnostic rule id, e.g. `visibility-alias-deprecated`. */\n rule: string;\n /** Human-readable location, e.g. `view \"contact_form\"`. */\n where: string;\n /** Config path, e.g. `views[2].sections[0].fields[3]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** The canonical key and its two deprecated aliases (ADR-0089). */\nconst CANONICAL = 'visibleWhen';\nconst ALIASES = ['visibleOn', 'visibility'] as const;\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** Extract the CEL source from a predicate value (string, or `{ source }` envelope). */\nfunction predicateSource(v: unknown): string | undefined {\n if (typeof v === 'string') return v;\n if (v && typeof v === 'object' && typeof (v as AnyRec).source === 'string') {\n return (v as AnyRec).source as string;\n }\n return undefined;\n}\n\n/** Does the predicate reference `<root>.<x>` as a leading binding root? */\nfunction usesRoot(source: string, root: string): boolean {\n // `<root>` as a leading identifier followed by a property access. The leading\n // `(^|[^.\\w$])` guard excludes a nested access like `foo.data` (a field named\n // `data`) or `my_record.x` (an identifier that merely ends in `record`).\n return new RegExp(`(^|[^.\\\\w$])${root}\\\\.\\\\w`).test(source);\n}\n\n/**\n * Per-layer mis-rooted-predicate description. The `runtime` layer forbids the\n * metadata-editing-form root (`data.`); the `metadata` layer forbids the runtime\n * record-surface root (`record.`) — ADR-0089 D3 spells out both directions.\n */\nconst MISLAYER_BY_LAYER: Record<\n VisibilityLayer,\n { forbiddenRoot: string; message: string; hint: string }\n> = {\n runtime: {\n forbiddenRoot: 'data',\n message:\n 'visibility predicate is rooted at `data.` — that is the ' +\n 'metadata-editing-form root (a `*.form.ts` row under edit), not a runtime ' +\n 'surface. A runtime view/page predicate that binds `data.` never matches ' +\n 'and the element renders unconditionally (ADR-0089).',\n hint:\n 'Runtime record surfaces bind `record` + `current_user` (pages also ' +\n \"expose `page.<var>`). Use e.g. `record.status == 'open'` instead of \" +\n \"`data.status == 'open'`.\",\n },\n metadata: {\n forbiddenRoot: 'record',\n message:\n 'visibility predicate is rooted at `record.` — that is the runtime ' +\n 'record-surface root (a `*.view.ts` / `*.page.ts` live record), not a ' +\n 'metadata-editing form. A `*.form.ts` predicate that binds `record.` never ' +\n 'matches and the element renders unconditionally (ADR-0089).',\n hint:\n 'Metadata-editing forms bind `data` (the row under edit). Use e.g. ' +\n \"`data.type == 'grid'` instead of `record.type == 'grid'`.\",\n },\n};\n\n/**\n * Inspect one element carrying a visibility predicate. Emits the alias-deprecated\n * finding (when an alias key is present) and the mis-layered-root finding (when\n * the effective predicate's binding root does not match `layer`).\n */\nfunction checkElement(\n el: AnyRec,\n where: string,\n path: string,\n layer: VisibilityLayer,\n findings: VisibilityFinding[],\n): void {\n // (1) deprecated alias key present → steer to `visibleWhen`.\n for (const alias of ALIASES) {\n if (el[alias] !== undefined) {\n findings.push({\n severity: 'warning',\n rule: VISIBILITY_ALIAS_DEPRECATED,\n where,\n path: `${path}.${alias}`,\n message:\n `\\`${alias}\\` is the deprecated spelling of the conditional-visibility ` +\n `predicate (ADR-0089). It still works — it is normalized to \\`visibleWhen\\` ` +\n `at parse — but the canonical key is \\`visibleWhen\\`.`,\n hint: `Rename the key \\`${alias}\\` → \\`visibleWhen\\` (same CEL value).`,\n });\n }\n }\n\n // (2) mis-layered binding root — check the effective predicate (canonical wins)\n // against the root expected for this layer.\n const raw = el[CANONICAL] ?? el.visibleOn ?? el.visibility;\n const source = predicateSource(raw);\n const rule = MISLAYER_BY_LAYER[layer];\n if (source && usesRoot(source, rule.forbiddenRoot)) {\n findings.push({\n severity: 'warning',\n rule: VISIBILITY_ROOT_MISLAYERED,\n where,\n path,\n message: rule.message,\n hint: rule.hint,\n });\n }\n}\n\n/** A section field entry is either a bare field name or `{ field, visibleWhen, … }`. */\nfunction isFieldObject(entry: unknown): entry is AnyRec {\n return !!entry && typeof entry === 'object' && !Array.isArray(entry);\n}\n\n/**\n * Validate conditional-visibility keys across authored views and pages.\n *\n * Runs on the **pre-parse** (normalized) stack so it can see the deprecated\n * `visibleOn` / `visibility` aliases before the schema folds them into\n * `visibleWhen`. Returns findings (empty = clean); all advisory (`warning`) —\n * the caller must never fail the build on these alone.\n *\n * The binding-root check is layer-directional (ADR-0089 D3): pass\n * `opts.layer = 'metadata'` when linting a `*.form.ts` metadata-editing form (so a\n * `record.`-rooted predicate is flagged), or leave it at the `'runtime'` default for\n * `*.view.ts` / `*.page.ts` surfaces (so a `data.`-rooted predicate is flagged). The\n * alias-deprecated check is layer-agnostic.\n */\nexport function validateVisibilityPredicates(\n stack: AnyRec,\n opts: VisibilityOptions = {},\n): VisibilityFinding[] {\n const layer: VisibilityLayer = opts.layer ?? 'runtime';\n const findings: VisibilityFinding[] = [];\n\n // ── Views: form sections / legacy groups, and their fields ──────────\n const views = asArray(stack.views);\n for (let i = 0; i < views.length; i++) {\n const view = views[i];\n if (!view || typeof view !== 'object') continue;\n const viewName = typeof view.name === 'string' ? view.name : `(view ${i})`;\n const where = `view \"${viewName}\"`;\n\n // `sections` (canonical) and `groups` (legacy alias → sections) both hold\n // FormSection objects with an optional visibility predicate + `fields`.\n for (const bucket of ['sections', 'groups'] as const) {\n const sections = Array.isArray(view[bucket]) ? (view[bucket] as unknown[]) : [];\n for (let s = 0; s < sections.length; s++) {\n const sec = sections[s];\n if (!sec || typeof sec !== 'object') continue;\n const secPath = `views[${i}].${bucket}[${s}]`;\n checkElement(sec as AnyRec, where, secPath, layer, findings);\n\n const secFields = Array.isArray((sec as AnyRec).fields) ? ((sec as AnyRec).fields as unknown[]) : [];\n for (let f = 0; f < secFields.length; f++) {\n const entry = secFields[f];\n if (isFieldObject(entry)) {\n checkElement(entry, where, `${secPath}.fields[${f}]`, layer, findings);\n }\n }\n }\n }\n }\n\n // ── Pages: regions[].components[] ───────────────────────────────────\n const pages = asArray(stack.pages);\n for (let i = 0; i < pages.length; i++) {\n const page = pages[i];\n if (!page || typeof page !== 'object') continue;\n const pageName = typeof page.name === 'string' ? page.name : `(page ${i})`;\n const where = `page \"${pageName}\"`;\n const regions = Array.isArray(page.regions) ? (page.regions as unknown[]) : [];\n for (let r = 0; r < regions.length; r++) {\n const region = regions[r];\n const components = region && typeof region === 'object' && Array.isArray((region as AnyRec).components)\n ? ((region as AnyRec).components as unknown[])\n : [];\n for (let c = 0; c < components.length; c++) {\n const comp = components[c];\n if (comp && typeof comp === 'object') {\n checkElement(comp as AnyRec, where, `pages[${i}].regions[${r}].components[${c}]`, layer, findings);\n }\n }\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0066 ⑨] Authoring-time validation for capability references.\n *\n * `requiredPermissions` (on objects, fields, apps, and actions) and\n * `systemPermissions` (on permission sets) are free capability strings. A typo\n * — `mange_users` for `manage_users` — is Zod-valid and fails CLOSED at runtime\n * (the caller is denied), which is the safe direction but UNDISCOVERABLE: nothing\n * tells the author the referenced capability exists nowhere. This rule closes\n * that gap by resolving every `requiredPermissions` reference against the set of\n * capabilities known at author time and warning on the unresolved ones —\n * \"reject at the producer\" (Prime Directive / ADR-0049 honesty).\n *\n * The author-time \"known\" set is:\n * 1. the built-in platform capabilities (`PLATFORM_CAPABILITY_NAMES`),\n * 2. every capability the stack DECLARES via `defineCapability`\n * (`stack.capabilities`) — the explicit, package-provenanced declaration\n * (ADR-0066 D1), materialized at boot by `bootstrapDeclaredCapabilities`,\n * 3. every capability a permission set in this stack GRANTS via\n * `systemPermissions` (granting a capability also declares it — mirrors\n * the runtime `bootstrapSystemCapabilities` derived-defaults rule), and\n * 4. any `sys_capability` row shipped as seed data.\n *\n * WARNING, not error: a single package's lint cannot see capabilities declared\n * by OTHER installed packages, and the reference fails closed at runtime anyway,\n * so a dangling reference is \"almost certainly a typo\" — surface it, don't break\n * the build. Assignment (`systemPermissions`) is NOT flagged: it is the\n * declaration side, and a package legitimately introduces new capabilities there.\n */\n\nimport { PLATFORM_CAPABILITY_NAMES } from '@objectstack/spec/security';\n\nexport const CAPABILITY_REFERENCE_UNKNOWN = 'capability-reference-unknown';\n\nexport type CapabilityRefSeverity = 'error' | 'warning';\n\nexport interface CapabilityRefFinding {\n /** Always `warning` — the reference fails closed at runtime (see module note). */\n severity: CapabilityRefSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `object \"sys_license\"`. */\n where: string;\n /** Config path, e.g. `objects[3].requiredPermissions`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** The capability strings in a `string[]` value. */\nfunction asCapArray(v: unknown): string[] {\n return Array.isArray(v) ? v.filter((s): s is string => typeof s === 'string' && s.length > 0) : [];\n}\n\n/**\n * Flatten an object-level `requiredPermissions` — either a `string[]` (all\n * operations) or a per-operation `{ read, create, update, delete }` map (ADR-0066\n * ⑤) — into `[{ cap, key }]`, where `key` is the map key (or `undefined` for the\n * array form) so a finding can point at the exact operation slice.\n */\nfunction flattenObjectRequired(v: unknown): Array<{ cap: string; key?: string }> {\n if (Array.isArray(v)) return asCapArray(v).map((cap) => ({ cap }));\n if (v && typeof v === 'object') {\n const out: Array<{ cap: string; key?: string }> = [];\n for (const [key, val] of Object.entries(v as AnyRec)) {\n for (const cap of asCapArray(val)) out.push({ cap, key });\n }\n return out;\n }\n return [];\n}\n\n/**\n * Validate every capability reference in a stack. Returns findings (empty =\n * clean). Advisory only — callers must not fail the build on these alone.\n */\nexport function validateCapabilityReferences(stack: AnyRec): CapabilityRefFinding[] {\n const findings: CapabilityRefFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n // ── Build the author-time \"known capability\" set ──\n const known = new Set<string>(PLATFORM_CAPABILITY_NAMES);\n // [ADR-0066 D1] Capabilities the stack explicitly DECLARES via defineCapability.\n for (const cap of asArray(stack.capabilities)) {\n if (typeof cap.name === 'string' && cap.name.length > 0) known.add(cap.name);\n }\n for (const ps of asArray(stack.permissions)) {\n for (const cap of asCapArray(ps.systemPermissions)) known.add(cap);\n }\n for (const seed of asArray(stack.data)) {\n if (seed.object !== 'sys_capability') continue;\n for (const rec of Array.isArray(seed.records) ? seed.records : []) {\n const name = (rec as AnyRec | null)?.name;\n if (typeof name === 'string' && name.length > 0) known.add(name);\n }\n }\n\n const hint =\n 'Fix the capability name, define it with defineCapability (stack.capabilities), ' +\n 'declare it on a permission set’s systemPermissions, ship a sys_capability seed row, ' +\n 'or ignore this if the capability is provided by another installed package ' +\n '(references fail closed at runtime).';\n\n const flag = (cap: string, where: string, path: string) => {\n if (known.has(cap)) return;\n findings.push({\n severity: 'warning',\n rule: CAPABILITY_REFERENCE_UNKNOWN,\n where,\n path,\n message:\n `requiredPermissions references capability \"${cap}\" which is registered ` +\n `nowhere — no built-in capability, no permission set in this package grants ` +\n `it via systemPermissions, and no sys_capability seed declares it`,\n hint,\n });\n };\n\n // ── Objects (D3) + their fields (D3) + embedded actions (D4) ──\n const objects = asArray(stack.objects);\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n if (!obj || typeof obj !== 'object') continue;\n const objName = typeof obj.name === 'string' ? obj.name : `(object ${i})`;\n const objPath = `objects[${i}]`;\n\n for (const { cap, key } of flattenObjectRequired(obj.requiredPermissions)) {\n flag(cap, `object \"${objName}\"`, `${objPath}.requiredPermissions${key ? `.${key}` : ''}`);\n }\n\n const fields = asArray(obj.fields);\n for (const f of fields) {\n const fname = typeof f.name === 'string' ? f.name : '(field)';\n for (const cap of asCapArray(f.requiredPermissions)) {\n flag(cap, `field \"${objName}.${fname}\"`, `${objPath}.fields.${fname}.requiredPermissions`);\n }\n }\n\n for (const [ai, action] of asArray(obj.actions).entries()) {\n const aName = typeof action.name === 'string' ? action.name : `(action ${ai})`;\n for (const cap of asCapArray(action.requiredPermissions)) {\n flag(cap, `action \"${objName}.${aName}\"`, `${objPath}.actions[${ai}].requiredPermissions`);\n }\n }\n }\n\n // ── Top-level actions (D4) ──\n for (const [i, action] of asArray(stack.actions).entries()) {\n const aName = typeof action.name === 'string' ? action.name : `(action ${i})`;\n for (const cap of asCapArray(action.requiredPermissions)) {\n flag(cap, `action \"${aName}\"`, `actions[${i}].requiredPermissions`);\n }\n }\n\n // ── Apps: requiredPermissions can appear at the app, area/tab, and nav-item\n // (recursively through groups) levels. Walk each app subtree. ──\n const apps = asArray(stack.apps);\n for (let i = 0; i < apps.length; i++) {\n const app = apps[i];\n if (!app || typeof app !== 'object') continue;\n const appName = typeof app.name === 'string' ? app.name : `(app ${i})`;\n const walk = (node: unknown, path: string) => {\n if (!node || typeof node !== 'object') return;\n if (Array.isArray(node)) {\n node.forEach((child, ci) => walk(child, `${path}[${ci}]`));\n return;\n }\n const rec = node as AnyRec;\n for (const cap of asCapArray(rec.requiredPermissions)) {\n flag(cap, `app \"${appName}\"`, `${path}.requiredPermissions`);\n }\n // Recurse only into the sub-structures that carry requiredPermissions.\n if (rec.navigation) walk(rec.navigation, `${path}.navigation`);\n if (rec.areas) walk(rec.areas, `${path}.areas`);\n if (rec.tabs) walk(rec.tabs, `${path}.tabs`);\n if (rec.children) walk(rec.children, `${path}.children`);\n if (rec.items) walk(rec.items, `${path}.items`);\n };\n walk(app, `apps[${i}]`);\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * Approval-node approver authoring lint (ADR-0090 D3 fallout).\n *\n * `org_membership_level` (and `role`, its deprecated spelling) resolves against\n * better-auth's org-membership tier (`sys_member.role`: owner / admin / member)\n * — it is NOT a position. After ADR-0090 D3 renamed `sys_role` → `sys_position`,\n * downstream apps that authored `{ type: 'role', value: 'sales_manager' }`\n * silently route the approval to nobody: the expansion finds no member row,\n * falls back to the `role:sales_manager` literal, and the request waits on an\n * approver that can never act. These rules move that failure from a stuck\n * request at runtime to a located fix-it at author time.\n *\n * Rules:\n *\n * | Rule | Severity | Origin |\n * |--------------------------------------------|----------|----------------------------|\n * | approval-approver-not-membership-tier | warning | ADR-0090 D3 (hotcrm class) |\n * | approval-approver-type-deprecated | warning | ADR-0090 D3 (#3133) |\n * | approval-approver-type-unknown | warning | contract-first (PD #12) |\n * | approval-escalation-reassign-no-target | warning | silent notify degradation |\n * | approval-approvers-may-resolve-empty | info | empty-position dead-end (#3424) |\n * | approval-expression-invalid | error/info | #3447 P2 closed-root expressions |\n * | approval-expression-no-empty-policy | info | #3447 P2 empty-slate policy |\n * | approval-decision-outputs-reserved | error | #3447 P2 resume envelope |\n * | approval-approver-cross-org-unsupported | error | ADR-0105 D9 targeting |\n *\n * The first two are mutually exclusive by construction — a bad *value* wins,\n * because its fix (`position`) differs from the deprecation's fix\n * (`org_membership_level`), and prescribing the latter for a position name\n * would be wrong advice.\n *\n * Warnings (not errors): a custom better-auth membership tier is legal, and\n * the runtime keeps its literal fallback — but both shapes are near-certainly\n * authoring mistakes, so say it out loud.\n *\n * Pure `(stack) => Finding[]`; accepts the NORMALIZED stack input.\n */\n\nimport {\n ApproverType,\n APPROVAL_NODE_TYPE,\n DEPRECATED_APPROVER_TYPES,\n APPROVER_VALUE_BINDINGS,\n approverTypeIsOrgScoped,\n canonicalApproverType,\n normalizeDecisionOutputs,\n} from '@objectstack/spec/automation';\nimport { BUILTIN_MEMBERSHIP_ROLES } from '@objectstack/spec';\nimport { collectCelRootIdentifiers } from '@objectstack/formula';\n\nexport const APPROVAL_APPROVER_NOT_MEMBERSHIP_TIER = 'approval-approver-not-membership-tier';\nexport const APPROVAL_APPROVER_TYPE_DEPRECATED = 'approval-approver-type-deprecated';\nexport const APPROVAL_APPROVER_TYPE_UNKNOWN = 'approval-approver-type-unknown';\nexport const APPROVAL_APPROVER_TYPE_UNSUPPORTED = 'approval-approver-type-unsupported';\nexport const APPROVAL_ESCALATION_REASSIGN_NO_TARGET = 'approval-escalation-reassign-no-target';\nexport const APPROVAL_APPROVERS_MAY_RESOLVE_EMPTY = 'approval-approvers-may-resolve-empty';\nexport const APPROVAL_EXPRESSION_INVALID = 'approval-expression-invalid';\nexport const APPROVAL_EXPRESSION_NO_EMPTY_POLICY = 'approval-expression-no-empty-policy';\nexport const APPROVAL_DECISION_OUTPUTS_RESERVED = 'approval-decision-outputs-reserved';\nexport const APPROVAL_APPROVER_CROSS_ORG_UNSUPPORTED = 'approval-approver-cross-org-unsupported';\n\n/**\n * The CLOSED root set an `expression` approver may reference (#3447 P2) —\n * `current` (live record at node entry), `trigger` (submit-time snapshot),\n * `vars` (flow variables). Mirrors APPROVER_EXPRESSION_ROOTS in\n * plugin-approvals; both sides extract roots via the same\n * {@link collectCelRootIdentifiers}, so what lints clean is what runs.\n */\nconst EXPRESSION_ROOTS = new Set(['current', 'trigger', 'vars']);\n\n/** Resume-envelope keys a decision output may never use (#3447 P2). */\nconst RESERVED_OUTPUT_KEYS = new Set(['decision', 'requestId']);\n\n/**\n * Approver types that route to a GROUP whose membership is runtime data and can\n * be empty (an unstaffed position, an empty team/department). When EVERY\n * approver on a node is one of these, the node can resolve to an empty slate at\n * runtime — the framework#3424 dead-end. Individually-routed types\n * (`user`/`field`/`manager`), the guaranteed-staffed `org_membership_level`\n * tiers, and the opaque `queue` are deliberately excluded: any of them present\n * signals the author has a non-group route, so the node isn't purely\n * group-gated.\n */\nconst GROUP_ROUTED_TYPES = new Set(['position', 'team', 'department']);\n\nexport type ApprovalApproverSeverity = 'error' | 'warning' | 'info';\n\nexport interface ApprovalApproverFinding {\n severity: ApprovalApproverSeverity;\n /** Diagnostic rule id (`approval-*`). */\n rule: string;\n /** Human-readable location, e.g. `flow \"expense_approval\" · node \"step1\"`. */\n where: string;\n /** Config path, e.g. `flows[0].nodes[2].config.approvers[0]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/**\n * The org-membership tiers `sys_member.role` actually stores — DERIVED, not\n * transcribed (ADR-0108 / #3723).\n *\n * The vocabulary is closed and framework-owned, so the one source in\n * `@objectstack/spec` is also the only correct list here. A hand-kept copy is\n * how this list came to carry `guest`, which the `sys_member.role` select has\n * never offered: an approver naming it resolved to nobody, and the lint that\n * exists to catch exactly that stayed silent.\n *\n * Anything outside this set authored as `{ type: 'org_membership_level' }` (or\n * its deprecated `role` spelling) is almost certainly a position name.\n */\nconst MEMBERSHIP_TIERS: ReadonlySet<string> = new Set<string>(BUILTIN_MEMBERSHIP_ROLES);\n\n/** The same list, rendered for diagnostics — so no message can contradict it. */\nconst MEMBERSHIP_TIER_LIST = BUILTIN_MEMBERSHIP_ROLES.join('/');\n\n/** Off-spec dialect spellings we can name a canonical fix for. */\nconst TYPE_FIX: Record<string, string> = {\n business_unit: 'department',\n bu: 'department',\n};\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/**\n * Validate the approvers of every Approval node in the stack's flows.\n * Returns findings (empty = clean).\n */\nexport function validateApprovalApprovers(stack: AnyRec): ApprovalApproverFinding[] {\n const findings: ApprovalApproverFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const flows = asArray(stack.flows);\n const validTypes = new Set<string>(ApproverType.options);\n\n for (let fi = 0; fi < flows.length; fi++) {\n const flow = flows[fi];\n if (!flow || typeof flow !== 'object') continue;\n const flowName = typeof flow.name === 'string' ? flow.name : `(flow ${fi})`;\n const nodes = Array.isArray(flow.nodes) ? (flow.nodes as AnyRec[]) : [];\n\n for (let ni = 0; ni < nodes.length; ni++) {\n const node = nodes[ni];\n if (!node || node.type !== APPROVAL_NODE_TYPE) continue;\n const nodeId = typeof node.id === 'string' ? node.id : `(node ${ni})`;\n const cfg = (node.config ?? {}) as AnyRec;\n const approvers = Array.isArray(cfg.approvers) ? (cfg.approvers as AnyRec[]) : [];\n const where = `flow \"${flowName}\" · node \"${nodeId}\"`;\n\n for (let ai = 0; ai < approvers.length; ai++) {\n const a = approvers[ai];\n if (!a || typeof a !== 'object') continue;\n const type = typeof a.type === 'string' ? a.type : '';\n const value = typeof a.value === 'string' ? a.value : '';\n const path = `flows[${fi}].nodes[${ni}].config.approvers[${ai}]`;\n\n if (type && !validTypes.has(type)) {\n const fix = TYPE_FIX[type];\n findings.push({\n severity: 'warning',\n rule: APPROVAL_APPROVER_TYPE_UNKNOWN,\n where,\n path: `${path}.type`,\n message:\n `approver type '${type}' is not an ApproverType (${ApproverType.options.join(' | ')}).`,\n hint: fix\n ? `Use the spec value: { type: '${fix}', value: '${value}' }.`\n : `Pick one of the spec values; unmapped types degrade to an inert '${type}:${value}' literal at runtime.`,\n });\n continue;\n }\n\n const canonical = canonicalApproverType(type);\n\n // Expression approvers (#3447 P2): the runtime REJECTS an expression\n // that doesn't parse or references a root outside `current`/`trigger`/\n // `vars` (the CEL env would resolve an unknown root as dyn → null → a\n // silently-empty slate, so the pre-check fails the node loudly). Catch\n // both at author time — `error`, because the node cannot run.\n if (canonical === 'expression') {\n const source = value.trim();\n if (!source) {\n findings.push({\n severity: 'error',\n rule: APPROVAL_EXPRESSION_INVALID,\n where,\n path: `${path}.value`,\n message: `expression approver has an empty expression — the node fails at entry.`,\n hint:\n `Write a CEL expression over current.* (the record's live state at node entry), ` +\n `trigger.* (the submit-time snapshot) or vars.* (flow variables), ` +\n `e.g. current.approvers_dynamic or vars.approval_lead.picked_departments.`,\n });\n } else {\n const parsed = collectCelRootIdentifiers(source);\n if (!parsed.ok) {\n findings.push({\n severity: 'error',\n rule: APPROVAL_EXPRESSION_INVALID,\n where,\n path: `${path}.value`,\n message: `expression approver does not parse as CEL: ${parsed.error}.`,\n hint:\n `Approver expressions are bare CEL (no {…} template braces), e.g. ` +\n `current.approvers_dynamic or vars.get_reviewers.record.owner_id.`,\n });\n } else {\n const illegal = parsed.roots.filter((r) => !EXPRESSION_ROOTS.has(r));\n if (illegal.length) {\n const wantsRecord = illegal.includes('record') || illegal.includes('previous');\n findings.push({\n severity: 'error',\n rule: APPROVAL_EXPRESSION_INVALID,\n where,\n path: `${path}.value`,\n message:\n `expression approver references \\`${illegal.join('`, `')}\\` — only current.*, ` +\n `trigger.* and vars.* are available, and the node fails at entry on any other root.`,\n hint: wantsRecord\n ? `\\`record\\`/\\`previous\\` are not bound here (on this platform \\`record\\` always means ` +\n `\"the record at event time\", which is ambiguous at an approval node). Write ` +\n `current.<field> for the live value at node entry, trigger.<field> for the ` +\n `submit-time snapshot (vars.previous carries the pre-update row).`\n : `Did you mean current.<field> (live record), trigger.<field> (submit snapshot), ` +\n `or vars.<name> (flow variable)?`,\n });\n }\n }\n }\n } else if (a.resolveAs != null) {\n // resolveAs only means something on an expression approver; on any\n // other type it silently does nothing — surface the dead config.\n findings.push({\n severity: 'info',\n rule: APPROVAL_EXPRESSION_INVALID,\n where,\n path: `${path}.resolveAs`,\n message: `resolveAs has no effect on a '${type}' approver — it only applies to type 'expression'.`,\n hint: `Remove it, or switch this approver to { type: 'expression', value: '<CEL>', resolveAs: '${String(a.resolveAs)}' }.`,\n });\n }\n\n // Exactly one of the two below fires. Order matters: a bad VALUE is\n // the more serious (and differently-fixed) defect, so it wins. Telling\n // an author to rewrite { type: 'role', value: 'sales_manager' } as\n // `org_membership_level` would be actively wrong advice — the fix is\n // `position`, and the deprecation is beside the point.\n if (canonical === 'org_membership_level' && value && !MEMBERSHIP_TIERS.has(value.toLowerCase())) {\n findings.push({\n severity: 'warning',\n rule: APPROVAL_APPROVER_NOT_MEMBERSHIP_TIER,\n where,\n path: `${path}.value`,\n message:\n `approver { type: '${type}', value: '${value}' } resolves against the better-auth ` +\n `org-membership tier (sys_member.role: ${MEMBERSHIP_TIER_LIST}) — '${value}' is not ` +\n `a membership tier, so this approver matches nobody and the request stalls.`,\n hint:\n `If '${value}' is an org position, author { type: 'position', value: '${value}' } ` +\n `(resolved via sys_user_position, ADR-0090 D3). Keep type 'org_membership_level' ` +\n `only for membership tiers (${MEMBERSHIP_TIER_LIST}) — the vocabulary is closed ` +\n `(ADR-0108), so a business role is always a position.`,\n });\n } else if (type in DEPRECATED_APPROVER_TYPES) {\n const fix = canonicalApproverType(type);\n findings.push({\n severity: 'warning',\n rule: APPROVAL_APPROVER_TYPE_DEPRECATED,\n where,\n path: `${path}.type`,\n message:\n `approver type '${type}' is the deprecated spelling of '${fix}' (ADR-0090 D3) and ` +\n `is removed in the next major.`,\n hint: `Author { type: '${fix}', value: '${value}' }. It resolves identically today.`,\n });\n } else if (\n (APPROVER_VALUE_BINDINGS as Record<string, { source: string }>)[canonical]?.source === 'unsupported'\n ) {\n // Declared-but-unenforced (#3508): the runtime has no resolution for\n // this type — the slot degrades to an inert `type:value` literal and\n // the request routes to nobody. Say it at authoring time instead of\n // letting the request stall silently (Prime Directive #10).\n findings.push({\n severity: 'warning',\n rule: APPROVAL_APPROVER_TYPE_UNSUPPORTED,\n where,\n path: `${path}.type`,\n message:\n `approver type '${type}' is declared but not implemented by the runtime (#3508) — ` +\n `the slot resolves to nobody and the request stalls.`,\n hint:\n `Route to people the engine can expand: { type: 'team' | 'department' | 'position', ... }. ` +\n `Queue approvers need a real ownership-queue implementation before they take effect.`,\n });\n }\n\n // [ADR-0105 D9] Cross-organization targeting on a type that has no\n // organization-scoped directory. `user` / `field` / `manager` name a\n // person outright and `team` membership carries no organization, so the\n // declaration cannot narrow anything — it is a misunderstanding of what\n // the field does, and the runtime refuses it. Error, not warning: this\n // is a certain authoring mistake with a certain fix, and letting it\n // reach the runtime turns author time into an incident.\n const declaredOrg = (a as AnyRec).organization;\n if (typeof declaredOrg === 'string' && declaredOrg.trim() !== ''\n && ApproverType.options.includes(canonical as never)\n && !approverTypeIsOrgScoped(canonical)) {\n findings.push({\n severity: 'error',\n rule: APPROVAL_APPROVER_CROSS_ORG_UNSUPPORTED,\n where,\n path: `${path}.organization`,\n message:\n `approver type '${type}' does not resolve through an organization directory, so ` +\n `'organization: ${declaredOrg}' has no effect (ADR-0105 D9) — the runtime refuses it.`,\n hint:\n `Drop 'organization' here. Cross-organization targeting applies to ` +\n `'position', 'org_membership_level', 'department' and 'expression' approvers.`,\n });\n }\n }\n\n // Empty-slate dead-end (#3424): when EVERY approver on the node routes to\n // a group whose membership can be empty (an unstaffed position, an empty\n // team/department), the request can resolve to an empty `pending_approvers`\n // at runtime — no concrete user can act, and with `lockRecord` the record\n // stays locked with no recovery except a platform/tenant admin override.\n // Advisory (`info`): staffing is runtime data a linter can't see, so this\n // flags the risky SHAPE and prescribes a guaranteed-staffed fallback.\n const routable = approvers.filter(\n (a) => a && typeof a === 'object' && typeof (a as AnyRec).type === 'string',\n );\n if (\n routable.length > 0 &&\n routable.every((a) => GROUP_ROUTED_TYPES.has(canonicalApproverType(String((a as AnyRec).type))))\n ) {\n const locks = (cfg as AnyRec).lockRecord !== false; // default true\n findings.push({\n severity: 'info',\n rule: APPROVAL_APPROVERS_MAY_RESOLVE_EMPTY,\n where,\n path: `flows[${fi}].nodes[${ni}].config.approvers`,\n message:\n `every approver on this node routes to a group (position/team/department) whose ` +\n `members are runtime data — if none is staffed, the request resolves to an empty ` +\n `slate and waits forever` +\n (locks ? `, and (lockRecord) the record stays locked with no in-product recovery.` : `.`),\n hint:\n `Make sure at least one target is always staffed, or add a guaranteed-staffed ` +\n `fallback approver, e.g. { type: 'org_membership_level', value: 'owner' }. A request ` +\n `that still lands empty is recoverable only by a platform/tenant admin override (#3424).`,\n });\n }\n\n // #3447 P2: a node with an `expression` approver resolves people from\n // runtime data — an empty result is far likelier than for static types\n // (a mid-flow field nobody wrote yet, an upstream output that came back\n // empty). Nudge the author to SAY what an empty slate should do rather\n // than inherit the default silently.\n const hasExpression = approvers.some(\n (a) => a && typeof a === 'object' && canonicalApproverType(String((a as AnyRec).type ?? '')) === 'expression',\n );\n if (hasExpression && (cfg as AnyRec).onEmptyApprovers == null) {\n findings.push({\n severity: 'info',\n rule: APPROVAL_EXPRESSION_NO_EMPTY_POLICY,\n where,\n path: `flows[${fi}].nodes[${ni}].config`,\n message:\n `this node resolves approvers from an expression but declares no onEmptyApprovers — ` +\n `an empty result falls back to the default ('admin_rescue': request opens, only a ` +\n `privileged admin can act).`,\n hint:\n `Declare the empty-slate policy explicitly: onEmptyApprovers: 'admin_rescue' (hold for ` +\n `admin takeover), 'fail' (fail the node — config bug), or 'auto_approve' (wave through, ` +\n `output.autoApproved = true).`,\n });\n }\n\n // #3447 P2: `decision`/`requestId` ride the resume envelope; a declared\n // decision output with either name is rejected at runtime on every\n // decide — the node can never accept the output it declares.\n // Bare keys and typed { key, … } declarations whitelist identically —\n // the spec normalizer is the one reader of the union shape.\n const declaredOutputs = normalizeDecisionOutputs((cfg as AnyRec).decisionOutputs).map((d) => d.key);\n const reserved = declaredOutputs.filter((k) => RESERVED_OUTPUT_KEYS.has(k));\n if (reserved.length) {\n findings.push({\n severity: 'error',\n rule: APPROVAL_DECISION_OUTPUTS_RESERVED,\n where,\n path: `flows[${fi}].nodes[${ni}].config.decisionOutputs`,\n message:\n `decisionOutputs declares reserved key(s) \\`${reserved.join('`, `')}\\` — the resume ` +\n `envelope owns them, so every decide carrying them is rejected.`,\n hint: `Rename the output key(s); any name other than 'decision'/'requestId' works.`,\n });\n }\n\n // escalation.action 'reassign' with no escalateTo silently degrades to a\n // plain SLA-breach notification at runtime — the hand-off the author\n // asked for never happens.\n const escalation = (cfg.escalation ?? null) as AnyRec | null;\n if (escalation && typeof escalation === 'object' && escalation.action === 'reassign') {\n const target = typeof escalation.escalateTo === 'string' ? escalation.escalateTo.trim() : '';\n if (!target) {\n findings.push({\n severity: 'warning',\n rule: APPROVAL_ESCALATION_REASSIGN_NO_TARGET,\n where,\n path: `flows[${fi}].nodes[${ni}].config.escalation.escalateTo`,\n message:\n `escalation.action is 'reassign' but escalateTo is empty — at runtime the ` +\n `escalation degrades to a notify and the request stays with the original approvers.`,\n hint:\n `Set escalateTo to a position machine name (expanded via sys_user_position, ` +\n `ADR-0090 D3) or a specific user id, or change action to 'notify'.`,\n });\n }\n }\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail for replay-unsafe seed datasets (framework#3434).\n//\n// A pure `(stack) => Finding[]` rule (ADR-0019), run from `os validate` and\n// reusable by AI authoring. Seeds are REPLAYED — they re-load on every\n// dev-server boot and every package re-publish, not applied once — so a\n// dataset's mode has to be idempotent. `mode: 'insert'` is the one mode that\n// is not: the loader's `insert` path writes every record unconditionally, with\n// no existing-row check, so the table grows by the dataset's size on every\n// restart (the showcase `showcase_project_membership` fixture went 3 → 6 → 9).\n//\n// This is the authoring-time nudge that would have caught #3434 before boot:\n// flag `insert`, and point at the idempotent modes (`ignore` / `upsert`) plus\n// the `externalId` — single field, or a COMPOSITE list of fields for a join /\n// junction table that has no single natural key (`['team', 'project']`), the\n// support for which #3434 added.\n//\n// Advisory (warning): an `insert` seed is not a schema error — it loads and\n// \"works\" on a fresh DB; the defect only shows on the second boot. So it earns\n// a located fix-it, not a hard `os compile` gate.\n\nexport type SeedReplaySafetySeverity = 'error' | 'warning';\n\nexport interface SeedReplaySafetyFinding {\n severity: SeedReplaySafetySeverity;\n rule: string;\n /** Human-readable location, e.g. `seed \"showcase_project_membership\"`. */\n where: string;\n /** Config path, e.g. `data[12].mode`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule id (registry entry).\nexport const SEED_INSERT_MODE_DUPLICATES_ON_REPLAY = 'seed-insert-mode-duplicates-on-replay';\n\ntype AnyRec = Record<string, unknown>;\n\n/**\n * Flag every seed dataset declared with `mode: 'insert'` — the one non-idempotent\n * mode, which duplicates its rows on every replay boot (framework#3434). Returns\n * the findings (empty = clean). The caller decides how to surface them / whether\n * to fail the build; the CLI folds them in as advisory warnings.\n *\n * Reads `stack.data` (the `SeedSchema[]` fixtures). Safe on any shape — a stack\n * with no `data` array yields no findings.\n */\nexport function validateSeedReplaySafety(stack: AnyRec): SeedReplaySafetyFinding[] {\n const out: SeedReplaySafetyFinding[] = [];\n const seeds = Array.isArray(stack.data) ? (stack.data as AnyRec[]) : [];\n\n seeds.forEach((seed, i) => {\n if (!seed || typeof seed !== 'object') return;\n if (seed.mode !== 'insert') return;\n\n const object = typeof seed.object === 'string' ? seed.object : undefined;\n const where = object ? `seed \"${object}\"` : `data[${i}]`;\n\n out.push({\n severity: 'warning',\n rule: SEED_INSERT_MODE_DUPLICATES_ON_REPLAY,\n where,\n path: `data[${i}].mode`,\n message:\n \"`mode: 'insert'` re-inserts every record on each replay boot (dev-server restart, \" +\n 'package re-publish) with no existing-row check, so the dataset duplicates the table ' +\n 'on every restart — seeds are replayed, not applied once.',\n hint:\n \"Use `mode: 'ignore'` (skip rows that already exist) or `'upsert'` (create-or-update), \" +\n \"and declare an `externalId` to match on: a single natural-key field (e.g. `externalId: 'code'`), \" +\n 'or a COMPOSITE list of fields for a join / junction table with no single natural key ' +\n \"(e.g. `externalId: ['team', 'project']`).\",\n });\n });\n\n return out;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n//\n// Build-time guardrail for seed values that fall outside an object's declared\n// state machine (framework#3433 follow-up).\n//\n// #3433 made seed writes EXEMPT from the `state_machine` validation rule — a\n// curated seed is an established fact, so it may be born mid-lifecycle\n// (a `completed` project, a `closed_won` opportunity) without the FSM entry\n// guard rejecting it. That exemption is deliberate, but it is also a SILENT\n// back door: the state machine's \"is this value even a state I know about?\"\n// check no longer runs for seed rows. A field-level `select` still rejects a\n// value outside its `options` at write time, so a plain typo is caught there —\n// but a `state_machine` on a free-text field, or a value that is a valid option\n// yet not a declared FSM state, now sails straight through.\n//\n// This author-time rule re-adds that safety net WITHOUT re-imposing the FSM: a\n// seeded value need not be an initial state (that is the whole point of the\n// exemption), but it must be a state the machine DECLARES — the union of\n// `initialStates`, the transition-map keys, and the transition targets.\n// Anything else is almost certainly a typo or an FSM that forgot to declare the\n// state; either way the author should see it before boot.\n//\n// Advisory (warning): a curated value the FSM does not know about is suspicious\n// but not necessarily wrong. Located fix-it, not a hard `os compile` gate —\n// symmetric with the replay-safety rule (framework#3434).\n\nexport type SeedStateMachineSeverity = 'warning';\n\nexport interface SeedStateMachineFinding {\n severity: SeedStateMachineSeverity;\n rule: string;\n /** Human-readable location, e.g. `seed \"showcase_project\" (\"Legacy Sunset\")`. */\n where: string;\n /** Config path, e.g. `data[4].records[3].status`. */\n path: string;\n message: string;\n hint: string;\n}\n\n// Rule id (registry entry).\nexport const SEED_VALUE_OUTSIDE_STATE_MACHINE = 'seed-value-outside-state-machine';\n\ntype AnyRec = Record<string, unknown>;\n\ninterface FsmRule {\n field: string;\n /** Every state the machine declares: initialStates ∪ transition keys ∪ targets. */\n states: Set<string>;\n}\n\n/**\n * Collect the `state_machine` rules (field + full declared-state set) for every\n * object, keyed by object name. An object with no such rule contributes nothing.\n * The declared-state set is derived from the rule alone so the check does not\n * depend on the field's `options` shape (and so it covers free-text state\n * fields the enum validator never sees).\n */\nfunction fsmRulesByObject(objects: AnyRec[]): Map<string, FsmRule[]> {\n const map = new Map<string, FsmRule[]>();\n for (const obj of objects) {\n if (!obj || typeof obj !== 'object') continue;\n const name = typeof obj.name === 'string' ? obj.name : undefined;\n if (!name) continue;\n const validations = Array.isArray(obj.validations) ? (obj.validations as AnyRec[]) : [];\n const rules: FsmRule[] = [];\n for (const v of validations) {\n if (!v || typeof v !== 'object' || v.type !== 'state_machine') continue;\n const field = typeof v.field === 'string' ? v.field : undefined;\n if (!field) continue;\n const transitions =\n v.transitions && typeof v.transitions === 'object' ? (v.transitions as Record<string, unknown>) : {};\n const states = new Set<string>();\n for (const s of Array.isArray(v.initialStates) ? v.initialStates : []) states.add(String(s));\n for (const from of Object.keys(transitions)) {\n states.add(String(from));\n const targets = transitions[from];\n for (const to of Array.isArray(targets) ? targets : []) states.add(String(to));\n }\n // A state_machine with neither transitions nor initialStates declares no\n // states — nothing to check against, so skip it (never flag every value).\n if (states.size > 0) rules.push({ field, states });\n }\n if (rules.length > 0) map.set(name, rules);\n }\n return map;\n}\n\n/** Best-effort label for a seed record — its externalId value(s), else its index. */\nfunction recordLabel(record: AnyRec, externalId: unknown, index: number): string {\n const keys = Array.isArray(externalId)\n ? (externalId as unknown[]).map(String)\n : typeof externalId === 'string'\n ? [externalId]\n : ['name'];\n const parts = keys.map((k) => record[k]).filter((v) => v != null && v !== '');\n return parts.length > 0 ? parts.map(String).join(' · ') : `#${index}`;\n}\n\n/**\n * Flag every seed record whose `state_machine`-governed field carries a value\n * the machine does not declare (framework#3433 follow-up). Returns the findings\n * (empty = clean). The caller decides how to surface them; the CLI folds them in\n * as advisory warnings.\n *\n * Reads `stack.objects` (for the state-machine rules) and `stack.data` (the\n * `SeedSchema[]` fixtures). Safe on any shape — a stack with no objects or no\n * `data` array yields no findings. A value that is not a plain string (an\n * unresolved `cel` Expression envelope, a number) is skipped: it cannot be\n * statically compared to the declared-state set.\n */\nexport function validateSeedStateMachine(stack: AnyRec): SeedStateMachineFinding[] {\n const out: SeedStateMachineFinding[] = [];\n const objects = Array.isArray(stack.objects) ? (stack.objects as AnyRec[]) : [];\n const seeds = Array.isArray(stack.data) ? (stack.data as AnyRec[]) : [];\n if (objects.length === 0 || seeds.length === 0) return out;\n\n const rulesByObject = fsmRulesByObject(objects);\n if (rulesByObject.size === 0) return out;\n\n seeds.forEach((seed, i) => {\n if (!seed || typeof seed !== 'object') return;\n const objectName = typeof seed.object === 'string' ? seed.object : undefined;\n if (!objectName) return;\n const rules = rulesByObject.get(objectName);\n if (!rules) return;\n const records = Array.isArray(seed.records) ? (seed.records as AnyRec[]) : [];\n\n records.forEach((record, j) => {\n if (!record || typeof record !== 'object') return;\n for (const rule of rules) {\n const value = record[rule.field];\n // Absent / cleared → nothing to check. A non-string (Expression\n // envelope, number) can't be compared statically → skip.\n if (value == null || value === '') continue;\n if (typeof value !== 'string') continue;\n if (rule.states.has(value)) continue;\n\n out.push({\n severity: 'warning',\n rule: SEED_VALUE_OUTSIDE_STATE_MACHINE,\n where: `seed \"${objectName}\" (${recordLabel(record, seed.externalId, j)})`,\n path: `data[${i}].records[${j}].${rule.field}`,\n message:\n `seeds '${rule.field}=${value}', which the '${objectName}' state machine does not declare ` +\n `(known states: ${[...rule.states].sort().join(', ')}). Seed writes are exempt from the ` +\n 'state_machine rule (#3433), so this is NOT rejected at write time — a typo lands silently.',\n hint:\n `If '${value}' is a real state, add it to the state machine (as an initial state or a ` +\n `transition endpoint). If it is a typo, correct it to a declared state. The exemption lets ` +\n 'a seed be born mid-lifecycle; it is not a licence to write an unknown state.',\n });\n }\n });\n });\n\n return out;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0090 D7] Security-domain publish linter.\n *\n * Every rule here is traceable to an observed failure class (the taxonomy\n * grows by incident, per the ADR):\n *\n * | Rule | Origin |\n * |-----------------------------------------|---------------------------------|\n * | security-owd-unset (error) | objectui#2348 leave_request 事故 |\n * | security-owd-alias (error) | ADR-0090 D4 canonical enum |\n * | security-external-wider (error) | ADR-0090 D11 external ≤ internal|\n * | security-wildcard-vama (error) | ADR-0066 superuser wildcard |\n * | security-anchor-high-privilege(error) | ADR-0090 D5/D9 anchors |\n * | security-role-word (error) | ADR-0090 D3 vocabulary freeze |\n * | security-book-audience-unknown-set(warn)| ADR-0046 §6.7 { permissionSet } |\n * | security-private-no-readscope (info) | admin-intent mismatch class |\n * | security-master-detail-ungranted(warn) | framework#2700 os-tianshun-mtc#43|\n * | security-grant-expired-at-authoring(err)| ADR-0091 D2 resolution filtering|\n * | security-delegation-missing-reason(err) | ADR-0091 D3 dual audit |\n *\n * Per ADR-0049 discipline these are NOT advisory security: every `error` rule\n * mirrors a runtime enforcement point (D1 fail-closed OWD default, D4 zod\n * enum + fail-closed evaluator, D5/D9 anchor binding gate, D3 rename wave) —\n * the lint moves the failure from runtime-deny to author-time fix-it. The lone\n * `warning` (master-detail-ungranted) likewise mirrors a runtime gate — the\n * object-level CRUD check (ADR-0055) — but stays advisory: it flags a *likely*\n * misconfiguration whose per-permission-set nuance it cannot fully adjudicate.\n *\n * Pure `(stack) => Finding[]`; accepts the NORMALIZED stack input (works both\n * pre- and post-zod-parse, so `os lint` catches what the zod gate would\n * reject in `os compile` — with a better message).\n */\n\nimport { describeAnchorForbiddenBits } from '@objectstack/spec/security';\n\nexport const SECURITY_OWD_UNSET = 'security-owd-unset';\nexport const SECURITY_OWD_ALIAS = 'security-owd-alias';\nexport const SECURITY_EXTERNAL_WIDER = 'security-external-wider-than-internal';\nexport const SECURITY_WILDCARD_VAMA = 'security-wildcard-vama';\nexport const SECURITY_ANCHOR_HIGH_PRIVILEGE = 'security-anchor-high-privilege';\nexport const SECURITY_ROLE_WORD = 'security-role-word';\nexport const SECURITY_BOOK_AUDIENCE_UNKNOWN_SET = 'security-book-audience-unknown-set';\nexport const SECURITY_PRIVATE_NO_READSCOPE = 'security-private-no-readscope';\nexport const SECURITY_MASTER_DETAIL_UNGRANTED = 'security-master-detail-ungranted';\nexport const SECURITY_FLS_UNQUALIFIED_KEY = 'security-fls-unqualified-key';\nexport const SECURITY_GRANT_EXPIRED_AT_AUTHORING = 'security-grant-expired-at-authoring';\nexport const SECURITY_DELEGATION_MISSING_REASON = 'security-delegation-missing-reason';\n\nexport type SecuritySeverity = 'error' | 'warning' | 'info';\n\nexport interface SecurityFinding {\n severity: SecuritySeverity;\n /** Diagnostic rule id (`security-*`). */\n rule: string;\n /** Human-readable location, e.g. `object \"leave_request\"`. */\n where: string;\n /** Config path, e.g. `objects[3].sharingModel`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\nconst CANONICAL_OWD = ['private', 'public_read', 'public_read_write', 'controlled_by_parent'] as const;\n/** [ADR-0090 D4] Legacy alias → canonical fix-it mapping. */\nconst OWD_ALIAS_FIX: Record<string, string> = {\n read: 'public_read',\n read_write: 'public_read_write',\n full: 'public_read_write',\n public: 'public_read_write',\n};\n/** D11 ordering for external ≤ internal (controlled_by_parent excluded). */\nconst OWD_WIDTH: Record<string, number> = {\n private: 0,\n public_read: 1,\n public_read_write: 2,\n};\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction owdOf(obj: AnyRec): unknown {\n return obj.sharingModel ?? (obj.security as AnyRec | undefined)?.sharingModel;\n}\n\nfunction isSystemObject(obj: AnyRec): boolean {\n return obj.isSystem === true || String(obj.name ?? '').startsWith('sys_');\n}\n\n/** snake_case identifier contains the reserved token `role`/`roles`. */\nfunction identifierHasRoleToken(name: unknown): boolean {\n if (typeof name !== 'string') return false;\n return name\n .toLowerCase()\n .split(/[^a-z0-9]+/)\n .some((tok) => tok === 'role' || tok === 'roles');\n}\n\n/** Free-text label contains the whole word `role(s)` (case-insensitive). */\nfunction labelHasRoleWord(label: unknown): boolean {\n if (typeof label !== 'string') return false;\n return /\\brole(s)?\\b/i.test(label);\n}\n\n/** The `reference`/`reference_to` target a relationship field points at. */\nfunction refOf(def: AnyRec): string | undefined {\n const r = (def.reference ?? def.reference_to) as unknown;\n return typeof r === 'string' && r ? r : undefined;\n}\n\n/**\n * The first `master_detail` field on an object, if any — its presence is what\n * makes the object a DETAIL (the child side of a master-detail; ADR-0055).\n * Works for both the array and name-keyed-map field forms (`asArray` folds the\n * map key into `name`).\n */\nfunction firstMasterDetailField(obj: AnyRec): { name: string; parent?: string } | undefined {\n for (const f of asArray(obj.fields)) {\n if (f.type === 'master_detail') {\n return { name: String(f.name ?? '?'), parent: refOf(f) };\n }\n }\n return undefined;\n}\n\n/**\n * Does a per-object permission entry open the object-level CRUD gate at all?\n * Any of the four CRUD bits, or a super-user bypass (View/Modify All Data),\n * counts — this mirrors the runtime `checkObjectPermission` gate (ADR-0066 D2):\n * that gate returns true if ANY set contributes one of these for the object.\n */\nfunction grantsObjectAccess(p: AnyRec): boolean {\n return (\n p.allowRead === true ||\n p.allowCreate === true ||\n p.allowEdit === true ||\n p.allowDelete === true ||\n p.viewAllRecords === true ||\n p.modifyAllRecords === true\n );\n}\n\n/**\n * Validate the security posture of a stack. Returns findings (empty = clean).\n * `error` findings gate the build in `os compile`; `info` is advisory.\n *\n * `opts.nowMs` injects the clock for the ADR-0091 authoring-time expiry rule\n * (tests); production callers omit it.\n */\nexport function validateSecurityPosture(stack: AnyRec, opts?: { nowMs?: number }): SecurityFinding[] {\n const findings: SecurityFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const objects = asArray(stack.objects);\n const permissionSets = asArray(stack.permissions);\n\n // ── D1/D4/D11: per-object OWD posture ────────────────────────────────\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n if (!obj || typeof obj !== 'object') continue;\n const objName = typeof obj.name === 'string' ? obj.name : `(object ${i})`;\n const objPath = `objects[${i}]`;\n const owd = owdOf(obj);\n const external = obj.externalSharingModel;\n\n if (!isSystemObject(obj)) {\n if (owd == null) {\n findings.push({\n severity: 'error',\n rule: SECURITY_OWD_UNSET,\n where: `object \"${objName}\"`,\n path: `${objPath}.sharingModel`,\n message:\n `custom object \"${objName}\" declares no sharingModel (OWD). The runtime fails ` +\n `CLOSED to 'private' (ADR-0090 D1), but the baseline must be an authored decision, ` +\n `not an accident — this is the exact shape of the leave_request incident (objectui#2348).`,\n hint:\n `Declare sharingModel explicitly: 'private' (owner + shares; recommended default), ` +\n `'public_read', 'public_read_write', or 'controlled_by_parent' (master-detail children).`,\n });\n } else if (typeof owd === 'string' && OWD_ALIAS_FIX[owd]) {\n findings.push({\n severity: 'error',\n rule: SECURITY_OWD_ALIAS,\n where: `object \"${objName}\"`,\n path: `${objPath}.sharingModel`,\n message:\n `sharingModel '${owd}' is a retired alias (ADR-0090 D4). The runtime fails CLOSED ` +\n `to 'private' on unknown values, so this object is NOT ${owd === 'read' ? 'readable' : 'writable'} org-wide.`,\n hint: `Replace with the canonical value: sharingModel: '${OWD_ALIAS_FIX[owd]}'.`,\n });\n } else if (typeof owd === 'string' && !(CANONICAL_OWD as readonly string[]).includes(owd)) {\n findings.push({\n severity: 'error',\n rule: SECURITY_OWD_ALIAS,\n where: `object \"${objName}\"`,\n path: `${objPath}.sharingModel`,\n message:\n `sharingModel '${owd}' is not a canonical OWD value; the runtime fails CLOSED to 'private'.`,\n hint: `Use one of: ${CANONICAL_OWD.join(', ')}.`,\n });\n }\n }\n\n // D11: external dial present on any object (system included) must obey\n // external ≤ internal. controlled_by_parent inherits the master's pair.\n if (typeof external === 'string') {\n if (OWD_ALIAS_FIX[external]) {\n findings.push({\n severity: 'error',\n rule: SECURITY_OWD_ALIAS,\n where: `object \"${objName}\"`,\n path: `${objPath}.externalSharingModel`,\n message: `externalSharingModel '${external}' is a retired alias (ADR-0090 D4).`,\n hint: `Replace with the canonical value: externalSharingModel: '${OWD_ALIAS_FIX[external]}'.`,\n });\n } else if (\n typeof owd === 'string' &&\n external in OWD_WIDTH &&\n owd in OWD_WIDTH &&\n OWD_WIDTH[external] > OWD_WIDTH[owd]\n ) {\n findings.push({\n severity: 'error',\n rule: SECURITY_EXTERNAL_WIDER,\n where: `object \"${objName}\"`,\n path: `${objPath}.externalSharingModel`,\n message:\n `externalSharingModel '${external}' is WIDER than the internal sharingModel '${owd}' — ` +\n `the external baseline must never exceed the internal one (ADR-0090 D11).`,\n hint: `Narrow externalSharingModel to '${owd}' or below (ordering: private < public_read < public_read_write).`,\n });\n }\n }\n }\n\n // ── ADR-0066 / D5/D9: permission-set posture ─────────────────────────\n for (let i = 0; i < permissionSets.length; i++) {\n const ps = permissionSets[i];\n if (!ps || typeof ps !== 'object') continue;\n const psName = typeof ps.name === 'string' ? ps.name : `(permission set ${i})`;\n const psPath = `permissions[${i}]`;\n const objectsMap = (ps.objects && typeof ps.objects === 'object' ? ps.objects : {}) as AnyRec;\n\n // [#19 / permission zoo audit] FLS keys MUST be `<object>.<field>`\n // qualified. The runtime evaluator matches keys by object prefix\n // (`getFieldPermissions`: `key.startsWith(objectName + '.')`), so a bare\n // `budget` key matches NOTHING — the declared masking silently never\n // enforces (the worst declared-≠-enforced class, ADR-0049). The showcase\n // itself shipped this bug for months.\n const flsMap = (ps.fields && typeof ps.fields === 'object' ? ps.fields : {}) as AnyRec;\n for (const flsKey of Object.keys(flsMap)) {\n if (flsKey.includes('.')) continue;\n findings.push({\n severity: 'error',\n rule: SECURITY_FLS_UNQUALIFIED_KEY,\n where: `permission set \"${psName}\"`,\n path: `${psPath}.fields[\"${flsKey}\"]`,\n message:\n `field-permission key '${flsKey}' is not object-qualified — the runtime matches FLS keys ` +\n `by '<object>.<field>' prefix, so a bare key is silently IGNORED and the declared masking never enforces.`,\n hint: `Qualify the key with its object, e.g. 'crm_opportunity.${flsKey}': { readable: true, editable: false }.`,\n });\n }\n\n const wildcard = objectsMap['*'] as AnyRec | undefined;\n if (wildcard && (wildcard.viewAllRecords === true || wildcard.modifyAllRecords === true)) {\n findings.push({\n severity: 'error',\n rule: SECURITY_WILDCARD_VAMA,\n where: `permission set \"${psName}\"`,\n path: `${psPath}.objects.*`,\n message:\n `'*' wildcard carrying View All / Modify All Data — a package-authored superuser. ` +\n `Only the platform's own admin set may combine the wildcard with VAMA (ADR-0066).`,\n hint:\n `Enumerate the objects this set really needs, or drop viewAllRecords/modifyAllRecords ` +\n `from the wildcard entry. App-level admins belong in an ordinary set the customer binds ` +\n `to a position of their choosing (ADR-0090 D9).`,\n });\n }\n\n // D5: an isDefault set is a SUGGESTED binding to the `everyone` anchor —\n // hold it to the anchor tier at author time (the runtime gate enforces the\n // same predicate at bind time; this moves the failure to the author).\n if (ps.isDefault === true) {\n const offending = describeAnchorForbiddenBits(ps, 'everyone');\n if (offending) {\n findings.push({\n severity: 'error',\n rule: SECURITY_ANCHOR_HIGH_PRIVILEGE,\n where: `permission set \"${psName}\"`,\n path: `${psPath}.isDefault`,\n message:\n `isDefault:true suggests binding this set to the 'everyone' audience anchor, but it ` +\n `carries ${offending} — the runtime will refuse the binding (ADR-0090 D5/D9).`,\n hint:\n `Split the powerful bits into a separate set granted through ordinary positions, and ` +\n `keep the everyone-suggested set low-privilege.`,\n });\n }\n }\n }\n\n // ── D3: the word \"role\" is reserved-forbidden ────────────────────────\n // Scope: security-relevant identifiers/labels (objects, fields, actions,\n // permission sets, positions, apps). Pages/views/components are NOT\n // scanned — `role` there is HTML/ARIA semantics, not permission vocabulary.\n // The sole platform exception (better-auth `sys_member.role`) is a system\n // object, which app stacks never author.\n const flagRole = (kind: string, name: unknown, label: unknown, where: string, path: string) => {\n if (identifierHasRoleToken(name)) {\n findings.push({\n severity: 'error',\n rule: SECURITY_ROLE_WORD,\n where,\n path,\n message:\n `${kind} name \"${String(name)}\" uses the reserved word \"role\" — the platform vocabulary ` +\n `is permission_set (capability), position (distribution), business_unit (hierarchy) (ADR-0090 D3).`,\n hint: `Rename using 'position' for distribution groups or a domain word (e.g. 'function', 'duty').`,\n });\n } else if (labelHasRoleWord(label)) {\n findings.push({\n severity: 'error',\n rule: SECURITY_ROLE_WORD,\n where,\n path: `${path.replace(/\\.name$/, '')}.label`,\n message: `${kind} label \"${String(label)}\" uses the reserved word \"role\" (ADR-0090 D3).`,\n hint: `Relabel with 'Position' (distribution) or a domain word — admins must meet ONE vocabulary.`,\n });\n }\n };\n\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n if (!obj || typeof obj !== 'object' || isSystemObject(obj)) continue;\n const objName = typeof obj.name === 'string' ? obj.name : `(object ${i})`;\n flagRole('object', obj.name, obj.label, `object \"${objName}\"`, `objects[${i}].name`);\n for (const f of asArray(obj.fields)) {\n flagRole('field', f.name, f.label, `field \"${objName}.${String(f.name ?? '?')}\"`, `objects[${i}].fields.${String(f.name ?? '?')}.name`);\n }\n for (const [ai, action] of asArray(obj.actions).entries()) {\n flagRole('action', action.name, action.label, `action \"${objName}.${String(action.name ?? '?')}\"`, `objects[${i}].actions[${ai}].name`);\n }\n }\n for (let i = 0; i < permissionSets.length; i++) {\n const ps = permissionSets[i];\n if (!ps || typeof ps !== 'object') continue;\n flagRole('permission set', ps.name, ps.label, `permission set \"${String(ps.name ?? i)}\"`, `permissions[${i}].name`);\n }\n for (const [i, pos] of asArray(stack.positions).entries()) {\n flagRole('position', pos.name, pos.label, `position \"${String(pos.name ?? i)}\"`, `positions[${i}].name`);\n }\n for (const [i, app] of asArray(stack.apps).entries()) {\n flagRole('app', app.name, app.label, `app \"${String(app.name ?? i)}\"`, `apps[${i}].name`);\n }\n for (const [i, book] of asArray(stack.books).entries()) {\n // Books entered the security-relevant set when `book.audience` became a\n // permission-model reference (ADR-0046 §6.7 / ADR-0090): their names and\n // labels are access-adjacent UI copy.\n flagRole('book', book.name, book.label, `book \"${String(book.name ?? i)}\"`, `books[${i}].name`);\n }\n\n // ── Book audience → permission-set reference must resolve ────────────\n // A `{ permissionSet }` book audience names a set the reader must hold\n // (ADR-0046 §6.7). The runtime fails CLOSED on an unknown name (nobody\n // holds it → nobody reads the book), so a typo is not a leak — but it IS\n // the \"why can nobody see the Admin Guide\" support class, and packages\n // should gate their books on their own sets (ADR-0090 D9 / ADR-0086\n // provenance). Advisory: an environment-authored book may legitimately\n // reference an installed package's set that is not in THIS stack.\n const stackSetNames = new Set(\n permissionSets\n .map((ps) => (typeof ps.name === 'string' ? ps.name : undefined))\n .filter((n): n is string => !!n),\n );\n for (const [i, book] of asArray(stack.books).entries()) {\n const audience = (book as AnyRec).audience;\n if (!audience || typeof audience !== 'object') continue;\n const setName = (audience as AnyRec).permissionSet;\n if (typeof setName !== 'string' || setName.length === 0) continue;\n if (!stackSetNames.has(setName)) {\n findings.push({\n severity: 'warning',\n rule: SECURITY_BOOK_AUDIENCE_UNKNOWN_SET,\n where: `book \"${String(book.name ?? i)}\"`,\n path: `books[${i}].audience.permissionSet`,\n message:\n `book audience references permission set \"${setName}\", which this stack does not declare. ` +\n `The runtime fails closed — no holder means NO reader can open the book.`,\n hint:\n `Gate the book on one of this package's own permission sets (ADR-0090 D9, e.g. its admin set), ` +\n `or fix the typo. Ignore if the set is intentionally provided by another installed package.`,\n });\n }\n }\n\n // ── Admin-intent mismatch: private object, plain read, no depth ──────\n // An object whose baseline is private (explicit or D1-defaulted) where a set\n // grants allowRead with neither readScope nor viewAllRecords: every reader\n // sees ONLY their own records. Legitimate (personal to-dos) often enough\n // that this stays `info` — but it is the #1 \"why can't 李四 see the data\"\n // support class, so say it out loud at author time.\n const privateObjects = new Set(\n objects\n .filter((o) => o && typeof o === 'object' && !isSystemObject(o))\n .filter((o) => {\n const owd = owdOf(o);\n return owd == null || owd === 'private';\n })\n .map((o) => String(o.name ?? '')),\n );\n if (privateObjects.size > 0) {\n for (let i = 0; i < permissionSets.length; i++) {\n const ps = permissionSets[i];\n if (!ps || typeof ps !== 'object') continue;\n const psName = typeof ps.name === 'string' ? ps.name : `(permission set ${i})`;\n const objectsMap = (ps.objects && typeof ps.objects === 'object' ? ps.objects : {}) as AnyRec;\n for (const [objName, rawPerm] of Object.entries(objectsMap)) {\n if (!privateObjects.has(objName)) continue;\n const p = (rawPerm ?? {}) as AnyRec;\n if (p.allowRead === true && p.readScope == null && p.viewAllRecords !== true) {\n findings.push({\n severity: 'info',\n rule: SECURITY_PRIVATE_NO_READSCOPE,\n where: `permission set \"${psName}\"`,\n path: `permissions[${i}].objects.${objName}.readScope`,\n message:\n `\"${objName}\" is private (OWD) and this set grants allowRead without a readScope — ` +\n `holders see ONLY records they own (plus explicit shares).`,\n hint:\n `If that is intended (personal data), ignore this. Otherwise add readScope: ` +\n `'own_and_reports' | 'unit' | 'unit_and_below' | 'org', or widen the object's sharingModel.`,\n });\n }\n }\n }\n }\n\n // ── ADR-0055: master-detail DETAIL object with no object-level CRUD ───\n // A master-detail CHILD derives its RECORD-level scope from the master\n // (`controlled_by_parent`) — but that is gate ②. Object-level CRUD is a\n // SEPARATE gate ① (`checkObjectPermission`) that is NEVER derived: a set that\n // lists the parent but forgets the child denies role-bound non-admin users a\n // 403 *before* the parent-derived access is ever consulted, surfacing as the\n // silent \"can't fill in / can't submit the subtable\" trap (framework#2700,\n // downstream os-tianshun-mtc#43). Statically detectable: a detail (has a\n // master_detail field) that NO authored permission set grants.\n //\n // Advisory `warning` — it does not gate the build. Two deliberate silences\n // keep the false-positive rate near zero: (a) if the package authors no\n // permission sets there is nothing to compare against, and (b) a package-\n // declared `'*'` wildcard grant is treated as covering every object (a broad\n // grant is an explicit choice — suppress rather than cry wolf). The residual\n // per-set gap (one role grants it, another forgets it) is intentionally out\n // of scope (issue #2700); the platform's own default admin set lives outside\n // the linted stack, so it never masks a package that forgot the child here.\n if (permissionSets.length > 0) {\n const wildcardGrantsAll = permissionSets.some((ps) =>\n grantsObjectAccess(((ps.objects as AnyRec | undefined)?.['*'] ?? {}) as AnyRec),\n );\n if (!wildcardGrantsAll) {\n const grantedObjects = new Set<string>();\n for (const ps of permissionSets) {\n const objectsMap = (ps.objects && typeof ps.objects === 'object' ? ps.objects : {}) as AnyRec;\n for (const [objName, rawPerm] of Object.entries(objectsMap)) {\n if (objName === '*') continue;\n if (grantsObjectAccess((rawPerm ?? {}) as AnyRec)) grantedObjects.add(objName);\n }\n }\n for (let i = 0; i < objects.length; i++) {\n const obj = objects[i];\n if (!obj || typeof obj !== 'object' || isSystemObject(obj)) continue;\n const objName = typeof obj.name === 'string' ? obj.name : '';\n if (!objName || grantedObjects.has(objName)) continue;\n const md = firstMasterDetailField(obj);\n if (!md) continue;\n const parentText = md.parent ? ` → \"${md.parent}\"` : '';\n findings.push({\n severity: 'warning',\n rule: SECURITY_MASTER_DETAIL_UNGRANTED,\n where: `object \"${objName}\"`,\n path: `objects[${i}].fields.${md.name}`,\n message:\n `detail object \"${objName}\" (master_detail \"${md.name}\"${parentText}) has no object-level ` +\n `CRUD grant in any permission set. A master-detail child derives its RECORD-level access ` +\n `from the master (ADR-0055 controlled_by_parent), but object-level CRUD is a SEPARATE gate ` +\n `that is never derived — role-bound non-admin users are denied (403) before the ` +\n `parent-derived access is ever consulted (the silent \"can't submit the subtable\" trap).`,\n hint:\n `Grant \"${objName}\" in at least one permission set that already grants its master` +\n `${md.parent ? ` \"${md.parent}\"` : ''} — e.g. permissions[i].objects.${objName} = ` +\n `{ allowRead: true, allowCreate: true, allowEdit: true }. If no role should ever touch ` +\n `it (a pure system/internal table), name it sys_* or set isSystem: true.`,\n });\n }\n }\n }\n\n // ── ADR-0091: authored grant rows (seed data) — lifecycle sanity ──────\n // Grant assignments authored as seed data on the two user-grant tables.\n // Both rules mirror runtime enforcement (D2 resolution-time filtering; the\n // D3 delegation gate), per the ADR-0049 \"no advisory security\" discipline:\n // the lint moves the failure from silent-dead-grant to author-time fix-it.\n const GRANT_SEED_OBJECTS = new Set(['sys_user_position', 'sys_user_permission_set']);\n const nowMs = opts?.nowMs ?? Date.now();\n for (const [i, seed] of asArray(stack.data).entries()) {\n const seedObject = typeof seed.object === 'string' ? seed.object : '';\n if (!GRANT_SEED_OBJECTS.has(seedObject)) continue;\n const records = Array.isArray(seed.records) ? (seed.records as AnyRec[]) : [];\n for (let j = 0; j < records.length; j++) {\n const rec = (records[j] ?? {}) as AnyRec;\n const where = `seed \"${seedObject}\" record #${j}`;\n\n // D2: a valid_until already in the past (or unparseable) at authoring\n // time is a grant that will NEVER resolve — dead on arrival, fail-closed.\n const until = rec.valid_until;\n if (until != null && until !== '') {\n const ms =\n typeof until === 'number'\n ? (until < 1e12 ? until * 1000 : until)\n : until instanceof Date\n ? until.getTime()\n : typeof until === 'string'\n ? Date.parse(until)\n : Number.NaN;\n if (Number.isNaN(ms) || ms <= nowMs) {\n findings.push({\n severity: 'error',\n rule: SECURITY_GRANT_EXPIRED_AT_AUTHORING,\n where,\n path: `data[${i}].records[${j}].valid_until`,\n message: Number.isNaN(ms)\n ? `valid_until ${JSON.stringify(until)} is not a parseable timestamp — the resolver fails ` +\n `closed (ADR-0091 D2), so this grant will NEVER be active.`\n : `valid_until ${JSON.stringify(until)} is already in the past — this grant is expired at ` +\n `authoring time and will never resolve (ADR-0091 D2 filters it fail-closed).`,\n hint:\n `Set valid_until to a future instant (ISO-8601 UTC), or drop the column for an unbounded ` +\n `grant. If the row is a historical record, it belongs in audit history, not seed data.`,\n });\n }\n }\n\n // D3: delegation rows (delegated_from set) MUST carry a reason — the\n // dual-audit half the runtime gate also rejects.\n const delegatedFrom = rec.delegated_from;\n if (delegatedFrom != null && delegatedFrom !== '') {\n const reason = rec.reason;\n if (typeof reason !== 'string' || reason.trim().length === 0) {\n findings.push({\n severity: 'error',\n rule: SECURITY_DELEGATION_MISSING_REASON,\n where,\n path: `data[${i}].records[${j}].reason`,\n message:\n `delegation row (delegated_from = ${JSON.stringify(delegatedFrom)}) has no reason. ` +\n `ADR-0091 D3 requires a mandatory reason on every delegation for the dual audit trail ` +\n `(granted_by = writer, delegated_from = authority source, reason = why).`,\n hint: `Add reason: 'vacation stand-in for 张三, 2026-08-01..15' (free text, required).`,\n });\n }\n }\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0105 D6] The two organization-axis red lines, enforced at authoring time.\n *\n * ADR-0105 gives organizations a reporting/grouping dimension\n * (`sys_organization.parent_organization_id`, sibling ordering). That dimension\n * is load-bearing for consolidated reporting — and dangerous, because it LOOKS\n * like a permission hierarchy. Two lines keep it from becoming one:\n *\n * | Rule | Red line |\n * |-----------------------------------------|-----------------------------------|\n * | org-axis-permission-inheritance (error) | D6 ①: no inheritance along the org tree |\n * | org-axis-cross-org-bu-grant (error) | D6 ②: business-unit trees stay org-internal |\n *\n * **① No permission inheritance along the org axis.** Cross-organization\n * visibility comes from membership union (`accessible_org_ids`, ADR-0105 D2) —\n * the engine's own Layer 0 wall — never from walking a parent reference. An RLS\n * policy or sharing rule that reads `parent_organization_id` builds a SECOND\n * permission hierarchy beside the business-unit tree: exactly the dual-hierarchy\n * mistake ADR-0057 D5 retired and ADR-0090 D3 finalized for positions. It also\n * silently outranks the wall it sits behind, since a Layer-1 policy cannot widen\n * Layer 0 (W1) — so the author gets a rule that appears to grant access and\n * does not. Fail at authoring, not in a support ticket.\n *\n * **② Business-unit trees remain org-internal.** `sys_business_unit` is\n * org-scoped and every BU mechanism (`unit_and_subordinates` sharing,\n * `adminScope` delegation, depth scopes) resolves within ONE organization. A\n * business-unit sharing rule on a PLATFORM-GLOBAL object (`tenancy.enabled:\n * false`) has no organization column to scope against, so the grant spans every\n * organization in the database — a cross-org BU grant by construction, and the\n * \"cross-org BU mega-tree\" the ADR rejected, arrived at by accident.\n *\n * Both are `error`, per ADR-0049 discipline: each mirrors a real enforcement\n * property (the Layer 0 wall's independence; the org-predicated BU resolver),\n * so the lint moves the failure from silent-wrong-answer to author-time fix-it.\n *\n * Pure `(stack) => Finding[]`; accepts the NORMALIZED stack input.\n */\n\nexport const ORG_AXIS_PERMISSION_INHERITANCE = 'org-axis-permission-inheritance';\nexport const ORG_AXIS_CROSS_ORG_BU_GRANT = 'org-axis-cross-org-bu-grant';\n\nexport type OrgAxisSeverity = 'error' | 'warning';\n\nexport interface OrgAxisFinding {\n severity: OrgAxisSeverity;\n /** Diagnostic rule id (`org-axis-*`). */\n rule: string;\n /** Human-readable location, e.g. `permission set \"plant_reader\"`. */\n where: string;\n /** Config path, e.g. `permissions[2].rowLevelSecurity[0].using`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** The org-axis grouping reference. Reporting only — never an authorization input. */\nconst ORG_PARENT_FIELD = 'parent_organization_id';\n\n/** Coerce a collection (array or name-keyed map) to an array of records. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction str(v: unknown): string {\n return typeof v === 'string' ? v : '';\n}\n\n/** True iff the object opted out of tenancy — platform-global, no org column. */\nfunction isTenancyDisabled(object: AnyRec): boolean {\n const tenancy = object.tenancy as AnyRec | undefined;\n if (tenancy && typeof tenancy === 'object' && tenancy.enabled === false) return true;\n const systemFields = object.systemFields as AnyRec | undefined;\n if (systemFields && typeof systemFields === 'object' && systemFields.tenant === false) return true;\n return false;\n}\n\nconst INHERITANCE_HINT =\n `Remove the ${ORG_PARENT_FIELD} reference. Cross-organization visibility comes from MEMBERSHIP: ` +\n `under the \\`group\\` tenancy posture the engine's Layer 0 wall is ` +\n `\\`organization_id IN accessible_org_ids\\`, so a user who should see several organizations is made ` +\n `a member of them (ADR-0105 D2). A Layer-1 policy cannot widen Layer 0 anyway, so this rule would ` +\n `not grant the access it appears to. For a hierarchy INSIDE one organization, use the business-unit ` +\n `tree (\\`unit_and_subordinates\\` sharing, or a depth scope anchored on \\`sys_user_position\\`).`;\n\n/**\n * Lint an ObjectStack config for the ADR-0105 D6 organization-axis red lines.\n */\nexport function validateOrgAxisRedLines(stack: unknown): OrgAxisFinding[] {\n const findings: OrgAxisFinding[] = [];\n const cfg = (stack ?? {}) as AnyRec;\n\n // ── ① No permission inheritance along the org axis ────────────────────────\n //\n // RLS policies may live on a permission set (`rowLevelSecurity`) or be\n // authored per object; both reach the same compiler, so both are checked.\n const permissionSets = asArray(cfg.permissions ?? cfg.permissionSets);\n permissionSets.forEach((ps, psIndex) => {\n asArray(ps.rowLevelSecurity).forEach((policy, pIndex) => {\n for (const clause of ['using', 'check'] as const) {\n if (!str(policy[clause]).includes(ORG_PARENT_FIELD)) continue;\n findings.push({\n severity: 'error',\n rule: ORG_AXIS_PERMISSION_INHERITANCE,\n where: `permission set \"${str(ps.name) || psIndex}\" policy \"${str(policy.name) || pIndex}\"`,\n path: `permissions[${psIndex}].rowLevelSecurity[${pIndex}].${clause}`,\n message:\n `RLS ${clause} reads \\`${ORG_PARENT_FIELD}\\`, which builds a permission hierarchy along the ` +\n `organization axis. ADR-0105 D6 forbids it: the org tree is a REPORTING dimension only.`,\n hint: INHERITANCE_HINT,\n });\n }\n });\n });\n\n const objects = asArray(cfg.objects);\n objects.forEach((object, oIndex) => {\n const objectName = str(object.name) || String(oIndex);\n\n asArray(object.rowLevelSecurity ?? object.rls).forEach((policy, pIndex) => {\n for (const clause of ['using', 'check'] as const) {\n if (!str(policy[clause]).includes(ORG_PARENT_FIELD)) continue;\n findings.push({\n severity: 'error',\n rule: ORG_AXIS_PERMISSION_INHERITANCE,\n where: `object \"${objectName}\" policy \"${str(policy.name) || pIndex}\"`,\n path: `objects[${oIndex}].rowLevelSecurity[${pIndex}].${clause}`,\n message:\n `RLS ${clause} reads \\`${ORG_PARENT_FIELD}\\`, which builds a permission hierarchy along the ` +\n `organization axis. ADR-0105 D6 forbids it: the org tree is a REPORTING dimension only.`,\n hint: INHERITANCE_HINT,\n });\n }\n });\n });\n\n // Sharing rules — criteria and recipient may both reach for the org parent.\n asArray(cfg.sharingRules ?? cfg.sharing).forEach((rule, rIndex) => {\n const criteria = JSON.stringify(rule.criteria ?? rule.filter ?? '');\n const sharedTo = JSON.stringify(rule.sharedTo ?? rule.recipient ?? '');\n if (criteria.includes(ORG_PARENT_FIELD) || sharedTo.includes(ORG_PARENT_FIELD)) {\n findings.push({\n severity: 'error',\n rule: ORG_AXIS_PERMISSION_INHERITANCE,\n where: `sharing rule \"${str(rule.name) || rIndex}\"`,\n path: `sharingRules[${rIndex}]`,\n message:\n `Sharing rule reads \\`${ORG_PARENT_FIELD}\\`, granting access by walking the organization ` +\n `tree. ADR-0105 D6 forbids permission inheritance along the org axis.`,\n hint: INHERITANCE_HINT,\n });\n }\n });\n\n // ── ② Business-unit trees remain org-internal ─────────────────────────────\n //\n // A `business_unit` recipient on a platform-global object has no organization\n // column to scope against, so the grant reaches every organization's rows.\n const tenancyDisabledObjects = new Set(\n objects.filter((o) => isTenancyDisabled(o)).map((o) => str(o.name)).filter(Boolean),\n );\n asArray(cfg.sharingRules ?? cfg.sharing).forEach((rule, rIndex) => {\n const target = str(rule.object ?? rule.objectName);\n if (!target || !tenancyDisabledObjects.has(target)) return;\n const sharedTo = (rule.sharedTo ?? rule.recipient) as AnyRec | undefined;\n const recipientType = str(sharedTo?.type);\n if (recipientType !== 'business_unit') return;\n findings.push({\n severity: 'error',\n rule: ORG_AXIS_CROSS_ORG_BU_GRANT,\n where: `sharing rule \"${str(rule.name) || rIndex}\" on object \"${target}\"`,\n path: `sharingRules[${rIndex}].sharedTo`,\n message:\n `A business-unit sharing rule targets \"${target}\", which opted out of tenancy ` +\n `(\\`tenancy.enabled: false\\`). Platform-global objects carry no organization column, so this ` +\n `grant spans EVERY organization — a cross-organization business-unit grant, which ADR-0105 D6 ` +\n `forbids (BU trees are org-internal).`,\n hint:\n `Either scope the object to organizations (drop \\`tenancy.enabled: false\\` so Layer 0 walls it), ` +\n `or share it to a position / permission-set audience instead of a business unit. A ` +\n `platform-global catalog that everyone should read wants an OWD of \\`public_read\\`, not a BU grant.`,\n });\n });\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0049 — references] Reference-integrity for dashboard header & widget\n * action targets (issue #3367).\n *\n * ADR-0049 established the \"enforce-or-remove\" gate for spec *properties*: a\n * declared property the runtime does not honour is a false promise and must be\n * enforced, marked experimental, or removed. This rule applies the SAME honesty\n * principle to *references*. A dashboard header action (or a widget's header\n * action button) names a target — a `script`/`modal` action, or a `url` route —\n * that must actually resolve. A dangling target ships a button that renders and,\n * on click, silently does nothing: a false affordance, exactly the failure\n * ADR-0049 exists to prevent, just for a reference rather than a property.\n *\n * Nothing in the protocol schema can express this: `actionUrl` is a free string,\n * so `{ actionType: 'script', actionUrl: 'export_dashboard_pdf' }` parses and\n * ships even when no such action is defined anywhere in the stack.\n *\n * Surfaces checked:\n * - dashboard `header.actions[]` — each `{ actionType, actionUrl }`\n * - dashboard `widgets[].actionUrl` (+ `actionType`) — the per-widget button\n *\n * Resolution mirrors the objectui runtime dispatch (`DashboardRenderer` +\n * `DashboardView`) so the lint flags exactly what would fail to resolve at\n * runtime:\n *\n * actionType 'script' → `actionUrl` must name a DEFINED action (`stack.actions`\n * or any `object.actions`, by `name`). A script target that names no\n * defined action fails open at runtime (\"action not found\"). → ERROR.\n *\n * actionType 'modal' → `actionUrl` resolves if it names a defined action, OR\n * matches the runtime `<verb>_<object>` convention the modalHandler\n * implements (create_/new_/add_/edit_/update_ + a defined object), OR is a\n * bare defined object name (the handler falls back to that object's create\n * form). Otherwise → ERROR.\n *\n * actionType 'url' → a relative in-app path. WARN when a recognizable\n * `<collection>/<name>` segment (objects/reports/dashboards/pages/views)\n * names an entity that does not exist in this stack. External URLs\n * (`http(s)://`, `//`), interpolated targets (`${…}`), and opaque routes\n * (no recognized collection segment) are skipped — they cannot be resolved\n * statically and may be host/app/plugin routes. → WARNING.\n *\n * actionType 'flow' | 'api' — not checked: flow targets resolve against the\n * automation engine / other packages, and api targets are opaque endpoints.\n * Out of scope for #3367.\n *\n * Severity split follows the issue's acceptance criteria: an undefined\n * `script`/`modal` target FAILS validation (a genuine dead reference that fails\n * open at runtime as a dead button); an unresolved `url` route is advisory\n * (route resolution is app-context-dependent, and a path may be served by\n * another installed package or a host/console route). External, interpolated,\n * convention, and opaque targets are exempted to keep false positives near zero\n * — the same conservative posture as the sibling `lint-view-refs` and\n * `validate-capability-references` rules.\n */\n\nexport const DASHBOARD_ACTION_TARGET_UNDEFINED = 'dashboard-action-target-undefined';\nexport const DASHBOARD_ACTION_ROUTE_UNRESOLVED = 'dashboard-action-route-unresolved';\n\nexport type DashboardActionRefSeverity = 'error' | 'warning';\n\nexport interface DashboardActionRefFinding {\n /** `error` for a dangling script/modal action; `warning` for an unresolved url route. */\n severity: DashboardActionRefSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `dashboard \"sales_overview\" · header action \"Export PDF\"`. */\n where: string;\n /** Config path, e.g. `dashboards[2].header.actions[0].actionUrl`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array of records, injecting\n * `name` from the map key — mirrors the helper in the sibling authoring lints so\n * the rule works on both the parsed (array) and normalized (map) stack shapes. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\n/** The runtime modal `<verb>_<object>` convention (objectui `DashboardView`\n * modalHandler): `create_/new_/add_/edit_/update_` + an object name opens that\n * object's create/edit form. */\nconst MODAL_VERB_RE = /^(?:create|new|add|edit|update)_(.+)$/;\n\n/** URL path segments that name a metadata collection, mapped to the stack key\n * whose members can appear after them in an in-app route\n * (`/…/objects/crm_lead`, `/reports/forecast`, `/dashboards/exec`, …). Both the\n * singular and plural spellings are accepted. */\nconst URL_COLLECTION_TO_STACK_KEY: Record<string, 'objects' | 'reports' | 'dashboards' | 'pages' | 'views'> = {\n object: 'objects',\n objects: 'objects',\n report: 'reports',\n reports: 'reports',\n dashboard: 'dashboards',\n dashboards: 'dashboards',\n page: 'pages',\n pages: 'pages',\n view: 'views',\n views: 'views',\n};\n\n/** Derive the name a top-level `views` container registers under (mirrors the\n * runtime loader's `resolveMetadataItemName('views', …)` fallbacks). */\nfunction viewContainerName(item: AnyRec): string | undefined {\n return (\n strName(item.name) ??\n strName(item.id) ??\n strName(item.object) ??\n strName((item.list as AnyRec | undefined)?.data && ((item.list as AnyRec).data as AnyRec).object) ??\n strName((item.form as AnyRec | undefined)?.data && ((item.form as AnyRec).data as AnyRec).object)\n );\n}\n\ninterface KnownTargets {\n /** Every action name defined in the stack (global + object-embedded). */\n actions: Set<string>;\n /** Object names (also valid as bare modal targets and `objects/<name>` routes). */\n objects: Set<string>;\n reports: Set<string>;\n dashboards: Set<string>;\n pages: Set<string>;\n /** View names routable as `views/<name>` — container names plus object names. */\n views: Set<string>;\n}\n\n/** Build the author-time \"known target\" sets from a stack. */\nfunction collectKnownTargets(stack: AnyRec): KnownTargets {\n const actions = new Set<string>();\n const objects = new Set<string>();\n const reports = new Set<string>();\n const dashboards = new Set<string>();\n const pages = new Set<string>();\n const views = new Set<string>();\n\n const collectNames = (v: unknown, into: Set<string>, name: (rec: AnyRec) => string | undefined) => {\n for (const item of asArray(v)) {\n if (!item || typeof item !== 'object') continue;\n const n = name(item);\n if (n) into.add(n);\n }\n };\n\n collectNames(stack.actions, actions, (a) => strName(a.name));\n for (const obj of asArray(stack.objects)) {\n if (!obj || typeof obj !== 'object') continue;\n const n = strName(obj.name);\n if (n) objects.add(n);\n collectNames(obj.actions, actions, (a) => strName(a.name));\n }\n collectNames(stack.reports, reports, (r) => strName(r.name));\n collectNames(stack.dashboards, dashboards, (d) => strName(d.name));\n collectNames(stack.pages, pages, (p) => strName(p.name));\n collectNames(stack.views, views, viewContainerName);\n // An object's default view is routable by the object's own name too.\n for (const o of objects) views.add(o);\n\n return { actions, objects, reports, dashboards, pages, views };\n}\n\n/** Does a `script`/`modal` `actionUrl` resolve? */\nfunction resolveActionTarget(\n actionType: 'script' | 'modal',\n target: string,\n known: KnownTargets,\n): boolean {\n if (known.actions.has(target)) return true;\n if (actionType === 'modal') {\n // Runtime modalHandler convention: `<verb>_<object>` or a bare object name\n // opens that object's create/edit form.\n if (known.objects.has(target)) return true;\n const m = MODAL_VERB_RE.exec(target);\n if (m && known.objects.has(m[1])) return true;\n }\n return false;\n}\n\n/**\n * Resolve a relative `url` in-app route. Returns:\n * - `null` when the target is not statically resolvable (external, interpolated,\n * or carries no recognized `<collection>/<name>` segment) — SKIP, no finding.\n * - `{ collection, name }` for a recognized `<collection>/<name>` pair that does\n * NOT exist in the stack — WARN.\n * - `undefined` when a recognized pair DID resolve — OK, no finding.\n */\nfunction resolveUrlRoute(\n target: string,\n known: KnownTargets,\n): { collection: string; name: string } | null | undefined {\n // External / protocol-relative — leaves the app; not an in-app route.\n if (/^[a-z][a-z0-9+.-]*:\\/\\//i.test(target) || target.startsWith('//')) return null;\n // Interpolated — resolved by the renderer at click time, not statically known.\n if (target.includes('${')) return null;\n // Only relative in-app paths are considered.\n if (!target.startsWith('/')) return null;\n\n // Strip query + hash, then split into non-empty segments.\n const pathPart = target.split(/[?#]/, 1)[0];\n const segments = pathPart.split('/').filter(Boolean);\n\n for (let i = 0; i < segments.length - 1; i++) {\n const stackKey = URL_COLLECTION_TO_STACK_KEY[segments[i]];\n if (!stackKey) continue;\n const name = segments[i + 1];\n if (known[stackKey].has(name)) return undefined; // resolved\n return { collection: segments[i], name }; // recognized shape, unknown name\n }\n return null; // no recognized collection segment — opaque route, skip\n}\n\ninterface HeaderAction {\n actionType?: string;\n actionUrl?: string;\n label?: string;\n}\n\n/**\n * Validate every dashboard header / widget action reference in a stack. Returns\n * findings (empty = clean). `script`/`modal` dead targets are errors; `url`\n * unresolved routes are warnings.\n */\nexport function validateDashboardActionRefs(stack: AnyRec): DashboardActionRefFinding[] {\n const findings: DashboardActionRefFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const dashboards = asArray(stack.dashboards);\n if (dashboards.length === 0) return findings;\n\n const known = collectKnownTargets(stack);\n\n const checkOne = (\n action: HeaderAction,\n where: string,\n path: string,\n ) => {\n const target = strName(action.actionUrl);\n if (!target) return; // nothing referenced (widget with no action button)\n if (target.includes('${')) return; // dynamic target — not statically resolvable\n\n // Renderer default: a missing actionType is treated as a 'url' navigation\n // (DashboardRenderer builds header ActionDefs with `type: actionType || 'url'`).\n const actionType = strName(action.actionType) ?? 'url';\n\n if (actionType === 'script' || actionType === 'modal') {\n if (resolveActionTarget(actionType, target, known)) return;\n const kindWord = actionType === 'script' ? 'script' : 'modal';\n findings.push({\n severity: 'error',\n rule: DASHBOARD_ACTION_TARGET_UNDEFINED,\n where,\n path,\n message:\n `${kindWord} action target \"${target}\" resolves to no defined action` +\n (actionType === 'modal' ? ' or object' : '') +\n `. The button renders but does nothing when clicked — a dangling reference ` +\n `the runtime cannot dispatch (ADR-0049: a declared reference must resolve).`,\n hint:\n actionType === 'modal'\n ? `Define an action named \"${target}\" (stack.actions or the object's actions), ` +\n `use the \"<verb>_<object>\" convention against a real object ` +\n `(e.g. \"create_<object>\"), point actionUrl at an existing object, or remove the button.`\n : `Define a script action named \"${target}\" (stack.actions or the object's actions) ` +\n `with an inline body or a registered handler, or remove the button.`,\n });\n return;\n }\n\n if (actionType === 'url') {\n const route = resolveUrlRoute(target, known);\n if (!route) return; // skip (external/interpolated/opaque) or resolved\n findings.push({\n severity: 'warning',\n rule: DASHBOARD_ACTION_ROUTE_UNRESOLVED,\n where,\n path,\n message:\n `url action target \"${target}\" points at ${route.collection}/${route.name}, ` +\n `but no ${route.collection.replace(/s$/, '')} named \"${route.name}\" is registered ` +\n `in this stack — the button likely navigates to a dead route.`,\n hint:\n `Check the path for a typo, define the referenced ${route.collection.replace(/s$/, '')}, ` +\n `or ignore this if the route is served by another installed package or a host/console route.`,\n });\n return;\n }\n // 'flow' | 'api' | custom types are out of scope (see module header).\n };\n\n for (let di = 0; di < dashboards.length; di++) {\n const dash = dashboards[di];\n if (!dash || typeof dash !== 'object') continue;\n const dashName = strName(dash.name) ?? `(dashboard ${di})`;\n const dashPath = `dashboards[${di}]`;\n\n // Header actions.\n const headerActions = asArray((dash.header as AnyRec | undefined)?.actions);\n for (let ai = 0; ai < headerActions.length; ai++) {\n const action = headerActions[ai] as HeaderAction | null;\n if (!action || typeof action !== 'object') continue;\n const label = strName(action.label) ?? strName(action.actionUrl) ?? `#${ai}`;\n checkOne(\n action,\n `dashboard \"${dashName}\" · header action \"${label}\"`,\n `${dashPath}.header.actions[${ai}].actionUrl`,\n );\n }\n\n // Per-widget action buttons.\n const widgets = asArray(dash.widgets);\n for (let wi = 0; wi < widgets.length; wi++) {\n const widget = widgets[wi];\n if (!widget || typeof widget !== 'object') continue;\n if (!strName(widget.actionUrl)) continue;\n const widgetId = strName(widget.id) ?? `#${wi}`;\n checkOne(\n { actionType: widget.actionType as string | undefined, actionUrl: widget.actionUrl as string | undefined },\n `dashboard \"${dashName}\" · widget \"${widgetId}\" action`,\n `${dashPath}.widgets[${wi}].actionUrl`,\n );\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\nimport { classifyFilterToken, CONTEXT_TOKENS } from '@objectstack/spec/data';\n\n/**\n * Build-time filter-placeholder diagnostics (issue #3574).\n *\n * Filter values travel as JSON, so a user-scoped or time-scoped slice cannot\n * call code inline — it writes a placeholder that the client resolves just\n * before querying:\n *\n * { owner_id: '{current_user_id}', created_at: { $gte: '{week_start}' } }\n *\n * Exactly two vocabularies resolve inside a filter value: context tokens\n * (`{current_user_id}`, `{current_org_id}` — see `context-tokens.zod.ts`) and\n * date macros (`{today}`, `{30_days_ago}` — see `date-macros.zod.ts`).\n * Anything else is passed to the data engine **verbatim**, matches no row, and\n * the surface renders an empty result.\n *\n * ## Why this is an error, not a warning\n *\n * The runtime failure mode is silent and indistinguishable from success. A\n * metric widget filtered on an unresolved `{current_user}` renders `0`, which\n * looks exactly like a metric that is legitimately zero — no console error, no\n * server log, nothing for a human reviewer to notice. Issue #3574 found a\n * dashboard that had been broken this way since the day it was written.\n *\n * That failure mode is worse for AI authors than for humans. An AI reads a\n * successful query returning `0` as a correct answer and builds on it — it has\n * no instinct that the number looks wrong. Its correction loop is\n * \"author → validate → fix\", so a diagnostic only reaches it if the diagnostic\n * can fail the build. A runtime warning in a server log is invisible to it.\n * Hence: authoring-time error.\n *\n * The near-miss spellings this catches are not hypothetical. Each is a correct\n * spelling *somewhere else* in the platform, which is precisely why authors\n * reach for them:\n *\n * - `{current_user}` — `current_user.id` is the RLS expression root\n * - `{user_id}` — `{user_id}` is valid `titleFormat` field interpolation\n * - `{current_organization_id}` — `organization_id` is the real column name\n *\n * `CONTEXT_TOKEN_SUGGESTIONS` maps each to what the author meant, so the\n * diagnostic names the fix instead of only reporting the symptom.\n *\n * ## Scope — filter subtrees only\n *\n * The walk descends into `filter` / `filters` / `runtimeFilter` subtrees and\n * classifies string values inside them. It deliberately does NOT check\n * navigation `recordId` / `params`, which resolve an additional vocabulary —\n * `AppContextSelector` ids such as `{active_package}` — that is meaningless in\n * a filter because filters are not evaluated with the sidebar's selector\n * state. Restricting the walk keeps that legitimate usage out of the rule and\n * holds false positives at zero.\n *\n * Only whole-string placeholders are considered (`'{token}'` / `'${token}'`,\n * anchored). A value that merely contains braces is left alone.\n */\n\nexport const FILTER_TOKEN_UNKNOWN = 'filter-token-unknown';\n\nexport type FilterTokenSeverity = 'error' | 'warning';\n\nexport interface FilterTokenFinding {\n /** Always `error` today — an unresolved placeholder silently matches nothing. */\n severity: FilterTokenSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `dashboard \"sales\" · widget \"my_deals\"`. */\n where: string;\n /** Config path, e.g. `dashboards[0].widgets[2].filter.owner_id`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Keys whose subtree is a filter — the only place placeholders resolve. */\nconst FILTER_KEYS = new Set(['filter', 'filters', 'runtimeFilter']);\n\n/**\n * Coerce a collection (array or name-keyed map) to an array of records,\n * injecting `name` from the map key — mirrors the helper in the sibling\n * authoring lints so the rule works on both the parsed (array) and normalized\n * (map) stack shapes.\n */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction label(v: unknown, fallback: string): string {\n return typeof v === 'string' && v.length > 0 ? v : fallback;\n}\n\nconst KNOWN_LIST = CONTEXT_TOKENS.join('}, {');\n\n/**\n * Classify every string inside an already-identified filter subtree.\n *\n * Walks arrays and plain objects uniformly, which is what makes this work\n * across the platform's two filter shapes: the MongoDB-style object a\n * dashboard widget carries (`{ owner_id: '{current_user_id}' }`) and the\n * condition/triple arrays a list view carries\n * (`[{ field, operator, value }]` / `[['owner','=','…']]`). The bug this rule\n * exists for was caused by a resolver that handled only one of those shapes.\n */\nfunction walkFilterValues(\n node: unknown,\n path: string,\n where: string,\n out: FilterTokenFinding[],\n seen: Set<unknown>,\n): void {\n if (node === null || node === undefined) return;\n\n if (typeof node === 'string') {\n const cls = classifyFilterToken(node);\n if (cls?.kind === 'unknown') {\n const suggestion = cls.suggestion;\n out.push({\n severity: 'error',\n rule: FILTER_TOKEN_UNKNOWN,\n where,\n path,\n message:\n `Filter value \"${node}\" is not a resolvable placeholder. It is sent to the ` +\n `data engine as a literal string, matches no record, and the surface renders empty.`,\n hint: suggestion\n ? `Did you mean \"{${suggestion}}\"? Context tokens are {${KNOWN_LIST}}; ` +\n `time-based values use date macros such as {today} or {30_days_ago}.`\n : `Resolvable placeholders are the context tokens {${KNOWN_LIST}} and the ` +\n `date macros (e.g. {today}, {week_start}, {30_days_ago}). To filter on a ` +\n `literal value that happens to look like a placeholder, this is not supported — ` +\n `rename the value.`,\n });\n }\n return;\n }\n\n if (typeof node !== 'object') return;\n // Metadata graphs can be cyclic once normalized; guard the walk.\n if (seen.has(node)) return;\n seen.add(node);\n\n if (Array.isArray(node)) {\n node.forEach((v, i) => walkFilterValues(v, `${path}[${i}]`, where, out, seen));\n return;\n }\n\n for (const [k, v] of Object.entries(node as AnyRec)) {\n walkFilterValues(v, `${path}.${k}`, where, out, seen);\n }\n}\n\n/**\n * Find `filter` / `filters` / `runtimeFilter` subtrees anywhere beneath\n * `node`, then classify the values inside them.\n *\n * Scanning for filter KEYS rather than enumerating known surfaces is\n * deliberate: widget filters, list-view filters, dataset and measure filters,\n * report runtime filters, and SDUI component filters all spell the key the\n * same way, and a new surface that follows the convention is covered the day\n * it ships. Enumerating surfaces is how #3574 happened — the dashboard was\n * simply never added to the list.\n */\nfunction scanForFilters(\n node: unknown,\n path: string,\n where: string,\n out: FilterTokenFinding[],\n seen: Set<unknown>,\n): void {\n if (!node || typeof node !== 'object') return;\n if (seen.has(node)) return;\n seen.add(node);\n\n if (Array.isArray(node)) {\n node.forEach((v, i) => scanForFilters(v, `${path}[${i}]`, where, out, seen));\n return;\n }\n\n for (const [k, v] of Object.entries(node as AnyRec)) {\n const childPath = `${path}.${k}`;\n if (FILTER_KEYS.has(k)) {\n walkFilterValues(v, childPath, where, out, new Set());\n continue;\n }\n scanForFilters(v, childPath, where, out, seen);\n }\n}\n\n/**\n * Validate filter placeholders across a schema-parsed stack.\n *\n * Pure `(stack) => Finding[]`; no I/O. Covers dashboards (widget + global\n * filters), objects (list views), top-level view containers, reports,\n * datasets, and pages.\n */\nexport function validateFilterTokens(stack: Record<string, unknown> | undefined | null): FilterTokenFinding[] {\n if (!stack || typeof stack !== 'object') return [];\n const out: FilterTokenFinding[] = [];\n\n const surfaces: Array<[key: string, kind: string]> = [\n ['dashboards', 'dashboard'],\n ['objects', 'object'],\n ['views', 'view'],\n ['reports', 'report'],\n ['datasets', 'dataset'],\n ['pages', 'page'],\n ['apps', 'app'],\n ];\n\n for (const [key, kind] of surfaces) {\n const items = asArray((stack as AnyRec)[key]);\n items.forEach((item, i) => {\n const name = label(item.name ?? item.id, `#${i}`);\n // Dashboards are the surface #3574 was filed against; name the widget in\n // `where` so the author can jump straight to it.\n if (kind === 'dashboard') {\n const widgets = Array.isArray(item.widgets) ? (item.widgets as AnyRec[]) : [];\n widgets.forEach((w, wi) => {\n const wName = label(w.id ?? w.title, `#${wi}`);\n scanForFilters(\n w,\n `${key}[${i}].widgets[${wi}]`,\n `dashboard \"${name}\" · widget \"${wName}\"`,\n out,\n new Set(),\n );\n });\n // …and everything else on the dashboard (globalFilters, header, etc.)\n // minus the widgets already covered above.\n const { widgets: _skip, ...rest } = item;\n scanForFilters(rest, `${key}[${i}]`, `dashboard \"${name}\"`, out, new Set());\n return;\n }\n scanForFilters(item, `${key}[${i}]`, `${kind} \"${name}\"`, out, new Set());\n });\n }\n\n return out;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0072 — reference resolvability] Object-name reference integrity for the\n * surfaces no other rule owns (issue #3583).\n *\n * A HotCRM audit (~18k lines of shipped metadata) found ~20 instances of ONE\n * bug class: metadata naming an object that does not exist. Every instance\n * passed `objectstack validate` and `objectstack lint` cleanly and failed\n * SILENTLY at runtime — `object: 'user'` where the platform object is\n * `sys_user`, navigation targeting `sys_approval_process` (which\n * `@objectstack/plugin-approvals` never registers; ADR-0019 removed it).\n *\n * `defineStack`'s `validateCrossReferences` already hard-fails on the object\n * references it knows about (hooks, view data, seeds, mappings, permission\n * grants, nav `objectName`, action targets). This rule covers the REST — the\n * reference sites that are plain `z.string()` in the schema and therefore ship\n * whatever the author typed:\n *\n * - action params — `reference` (inline lookup/master_detail target) and\n * `objectOverride` (the object owning a field-backed param). Both are the\n * record picker's search target; a dead one degrades the dialog to a raw\n * id text input.\n * - dashboard `globalFilters[].optionsFrom.object` — the object a filter\n * dropdown fetches its options from. Dead → an always-empty dropdown.\n * - navigation `requiresObject` / `requiresService` capability gates. This is\n * the escape hatch `stack.zod.ts` honours to SKIP nav validation, so a typo\n * here is doubly silent: the entry is hidden forever (the runtime never\n * finds the object in its SchemaRegistry) AND the skip suppresses the\n * cross-reference error that would have caught the nav target.\n * - the nav `objectName` of an item that carries `requiresObject` — exempted\n * from the `defineStack` throw for good reason (it may come from another\n * package), but still worth an advisory when NO known package provides it.\n *\n * ── Severity ladder (the point of the rule) ──────────────────────────────\n *\n * Prior rules answered \"might this object come from another package?\" with a\n * PREFIX GUESS (`name.startsWith('sys_')` → skip). That guess cannot tell\n * `sys_user` (real) from `sys_approval_process` (fictional), so every fictional\n * platform-prefixed reference shipped. This rule resolves against the curated\n * `PLATFORM_PROVIDED_OBJECT_NAMES` registry instead:\n *\n * 1. resolves in the stack's own objects → OK\n * 2. unresolved, NOT platform-prefixed → ERROR\n * (`user`, `total_revenue` — no cross-package story exists for an\n * unprefixed name, since a stack's objects are namespace-prefixed;\n * this is the pure typo class and the bulk of the HotCRM findings)\n * 3. unresolved, prefixed, IN the registry → OK\n * 4. unresolved, prefixed, NOT in the registry → WARNING\n * (`sys_approval_process` — no package we know of registers it, but a\n * third-party package still might, so advisory is the honest ceiling)\n *\n * Interpolated targets (`${…}`, `{…}`) are skipped — they resolve at render\n * time, the same conservative exemption `validate-dashboard-action-refs` uses\n * to keep false positives near zero (ADR-0072 D1: one dead finding and authors\n * stop trusting the linter).\n */\n\nimport {\n hasPlatformObjectPrefix,\n isPlatformProvidedObjectName,\n PLATFORM_PROVIDED_OBJECT_NAMES,\n} from '@objectstack/spec/system';\n\n/** Materialized once for the repeated edit-distance scans in `suggest`. */\nconst PLATFORM_NAMES: readonly string[] = [...PLATFORM_PROVIDED_OBJECT_NAMES];\n\nexport const OBJECT_REFERENCE_UNKNOWN = 'object-reference-unknown';\nexport const OBJECT_REFERENCE_UNREGISTERED_PLATFORM = 'object-reference-unregistered-platform';\n\nexport type ObjectRefSeverity = 'error' | 'warning';\n\nexport interface ObjectRefFinding {\n /** `error` for an unresolvable own-stack name; `warning` for an unknown platform name. */\n severity: ObjectRefSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `action \"mass_update\" · param \"owner\"`. */\n where: string;\n /** Config path, e.g. `actions[2].params[0].reference`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\n/** Coerce a collection (array or name-keyed map) to an array of records,\n * injecting `name` from the map key — mirrors the sibling authoring lints so\n * the rule works on both the parsed (array) and normalized (map) stack shapes. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\n/**\n * A target the author cannot have meant literally — `${…}` or `{…}` resolved at\n * render time.\n *\n * Scanned rather than matched with `/\\{[^}]+\\}/`: that pattern backtracks\n * quadratically on a long run of `{` with no closing brace (CodeQL\n * polynomial-ReDoS), and the question here is simply \"is there a `{` with a\n * later `}` and something in between\", which one pass answers.\n */\nfunction isInterpolated(target: string): boolean {\n if (target.includes('${')) return true;\n const open = target.indexOf('{');\n // `+ 2` keeps the original \"at least one character between the braces\"\n // semantics, so a literal `{}` is not treated as a placeholder.\n return open !== -1 && target.indexOf('}', open + 2) !== -1;\n}\n\n/** Levenshtein-bounded \"did you mean?\" over the known names. */\nfunction suggest(target: string, known: Iterable<string>): string {\n let best: string | undefined;\n let bestScore = Infinity;\n for (const candidate of known) {\n const d = distance(target, candidate);\n if (d < bestScore) {\n bestScore = d;\n best = candidate;\n }\n }\n // Only offer a suggestion that is plausibly the same identifier mistyped.\n const limit = Math.max(2, Math.floor(target.length / 3));\n return best && bestScore <= limit ? ` Did you mean \"${best}\"?` : '';\n}\n\nfunction distance(a: string, b: string): number {\n const m = a.length;\n const n = b.length;\n if (m === 0) return n;\n if (n === 0) return m;\n let prev = Array.from({ length: n + 1 }, (_, j) => j);\n for (let i = 1; i <= m; i++) {\n const curr = [i, ...new Array<number>(n).fill(0)];\n for (let j = 1; j <= n; j++) {\n const cost = a[i - 1] === b[j - 1] ? 0 : 1;\n curr[j] = Math.min(curr[j - 1] + 1, prev[j] + 1, prev[j - 1] + cost);\n }\n prev = curr;\n }\n return prev[n];\n}\n\n/**\n * Validate every object-name reference on the surfaces listed in the module\n * header. Returns findings (empty = clean).\n */\nexport function validateObjectReferences(stack: AnyRec): ObjectRefFinding[] {\n const findings: ObjectRefFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const objects = asArray(stack.objects);\n const ownObjects = new Set<string>();\n for (const obj of objects) {\n const n = strName(obj.name);\n if (n) ownObjects.add(n);\n }\n\n /**\n * Resolve one reference through the ladder and record a finding if it fails.\n * `subject` describes the reference for the message (\"record-picker target\").\n */\n const check = (\n target: string | undefined,\n where: string,\n path: string,\n subject: string,\n fix: string,\n ) => {\n const name = strName(target);\n if (!name) return;\n if (isInterpolated(name)) return; // resolved at render time\n if (ownObjects.has(name)) return; // ① own object\n if (isPlatformProvidedObjectName(name)) return; // ③ known platform object\n\n if (hasPlatformObjectPrefix(name)) {\n // ④ Platform-shaped, but no package we know of registers it.\n findings.push({\n severity: 'warning',\n rule: OBJECT_REFERENCE_UNREGISTERED_PLATFORM,\n where,\n path,\n message:\n `${subject} \"${name}\" carries a platform namespace prefix, but no platform ` +\n `package, official plugin, or cloud runtime object registers that name — ` +\n `and this stack does not define it either. If nothing provides it at runtime ` +\n `the reference resolves to nothing and fails silently.` +\n suggest(name, PLATFORM_NAMES),\n hint:\n `Check the spelling against the object the providing package actually registers ` +\n `(e.g. \"sys_approval_request\", not \"sys_approval_process\" — the process object ` +\n `was removed when approval became a flow node, ADR-0019). If a third-party ` +\n `package genuinely provides it, this warning is expected. ${fix}`,\n });\n return;\n }\n\n // ② Unprefixed and unresolved — a stack's own objects are namespace-\n // prefixed and present here, so there is no legitimate elsewhere.\n findings.push({\n severity: 'error',\n rule: OBJECT_REFERENCE_UNKNOWN,\n where,\n path,\n message:\n `${subject} \"${name}\" resolves to no object defined in this stack. ` +\n `The reference is inert at runtime — nothing reports the miss.` +\n suggest(name, ownObjects),\n hint:\n `Point it at one of this stack's objects, or at a platform object by its full ` +\n `name (the platform user object is \"sys_user\", not \"user\"). ${fix}` +\n (ownObjects.size > 0 ? ` Defined objects: ${[...ownObjects].sort().join(', ')}.` : ''),\n });\n };\n\n // ── Actions (global + object-embedded) → param object targets ──\n const checkActionParams = (action: AnyRec, actionPath: string, actionLabel: string) => {\n const params = asArray(action.params);\n for (let pi = 0; pi < params.length; pi++) {\n const param = params[pi];\n if (!param || typeof param !== 'object') continue;\n const paramLabel = strName(param.name) ?? strName(param.field) ?? `#${pi}`;\n const where = `${actionLabel} · param \"${paramLabel}\"`;\n check(\n strName(param.reference),\n where,\n `${actionPath}.params[${pi}].reference`,\n 'record-picker target',\n 'Without a resolvable target the picker degrades to a raw record-id text input.',\n );\n check(\n strName(param.objectOverride),\n where,\n `${actionPath}.params[${pi}].objectOverride`,\n 'field-backed param object',\n 'The param inherits type/options from a field on this object, so an unknown object leaves it untyped.',\n );\n }\n };\n\n const globalActions = asArray(stack.actions);\n for (let ai = 0; ai < globalActions.length; ai++) {\n const action = globalActions[ai];\n if (!action || typeof action !== 'object') continue;\n checkActionParams(action, `actions[${ai}]`, `action \"${strName(action.name) ?? `#${ai}`}\"`);\n }\n\n for (let oi = 0; oi < objects.length; oi++) {\n const obj = objects[oi];\n if (!obj || typeof obj !== 'object') continue;\n const objName = strName(obj.name) ?? `#${oi}`;\n const objActions = asArray(obj.actions);\n for (let ai = 0; ai < objActions.length; ai++) {\n const action = objActions[ai];\n if (!action || typeof action !== 'object') continue;\n checkActionParams(\n action,\n `objects[${oi}].actions[${ai}]`,\n `object \"${objName}\" · action \"${strName(action.name) ?? `#${ai}`}\"`,\n );\n }\n }\n\n // ── Dashboard global filters → optionsFrom.object ──\n const dashboards = asArray(stack.dashboards);\n for (let di = 0; di < dashboards.length; di++) {\n const dash = dashboards[di];\n if (!dash || typeof dash !== 'object') continue;\n const dashName = strName(dash.name) ?? `#${di}`;\n const filters = asArray(dash.globalFilters);\n for (let fi = 0; fi < filters.length; fi++) {\n const filter = filters[fi];\n if (!filter || typeof filter !== 'object') continue;\n const optionsFrom = filter.optionsFrom as AnyRec | undefined;\n if (!optionsFrom || typeof optionsFrom !== 'object') continue;\n check(\n strName(optionsFrom.object),\n `dashboard \"${dashName}\" · filter \"${strName(filter.name) ?? `#${fi}`}\"`,\n `dashboards[${di}].globalFilters[${fi}].optionsFrom.object`,\n 'filter options source',\n 'The dropdown fetches its options from this object; an unknown one renders an always-empty filter.',\n );\n }\n }\n\n // ── App navigation → requiresObject gates (and gated objectName) ──\n const apps = asArray(stack.apps);\n for (let ai = 0; ai < apps.length; ai++) {\n const app = apps[ai];\n if (!app || typeof app !== 'object') continue;\n const appName = strName(app.name) ?? `#${ai}`;\n\n const walkNav = (items: unknown, basePath: string) => {\n const navItems = asArray(items);\n for (let ni = 0; ni < navItems.length; ni++) {\n const nav = navItems[ni];\n if (!nav || typeof nav !== 'object') continue;\n const navId = strName(nav.id) ?? `#${ni}`;\n const where = `app \"${appName}\" · nav \"${navId}\"`;\n const navPath = `${basePath}[${ni}]`;\n\n check(\n strName(nav.requiresObject),\n where,\n `${navPath}.requiresObject`,\n 'capability gate object',\n 'The entry is hidden unless this object is registered, so a typo hides it permanently — ' +\n 'and it suppresses the nav cross-reference check that would have caught the target.',\n );\n\n // A nav target exempted from the `defineStack` throw by `requiresObject`\n // still deserves an advisory when nothing known provides it.\n if (nav.requiresObject && strName(nav.objectName)) {\n check(\n strName(nav.objectName),\n where,\n `${navPath}.objectName`,\n 'navigation target',\n 'Declaring `requiresObject` exempts this target from the build-time check, so it is only verified here.',\n );\n }\n\n if (Array.isArray(nav.children)) walkNav(nav.children, `${navPath}.children`);\n }\n };\n\n walkNav(app.navigation, `apps[${ai}].navigation`);\n const areas = asArray(app.areas);\n for (let ri = 0; ri < areas.length; ri++) {\n walkNav(areas[ri]?.navigation, `apps[${ai}].areas[${ri}].navigation`);\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * Shared page-component traversal for the lint rules that inspect\n * `PageComponent.properties` (issue #3583).\n *\n * Getting this walk right is subtle enough that duplicating it has already\n * produced one dead rule, so it lives here once:\n *\n * - Components hang off `page.regions[].components[]` and `page.slots.<slot>`\n * — there is NO top-level `page.components`. A walker that reads\n * `page.components` silently visits nothing on a schema-parsed stack.\n * - `slots.<slot>` is `PageComponent | PageComponent[]` — a single component\n * is legal and must be normalized.\n * - `PageComponentSchema` is `.strict()`, so a component carries no `children`\n * key of its own. Sub-trees live INSIDE the untyped `properties` bag:\n * `page:tabs` → `properties.items[].children`, `page:accordion` →\n * `properties.items[].children`, `page:card` → `properties.body` /\n * `properties.footer`. All are `z.array(z.unknown())`, so the recursion is\n * untyped and has to be done by hand.\n * - `kind: 'html' | 'react' | 'jsx'` pages are authored as `source`, which is\n * authoritative; their `regions` hold at most a DERIVED cache that the\n * source wins over. Linting that cache reports findings about metadata the\n * author never wrote, so those pages are skipped here and covered by\n * `validate-jsx-pages` / `validate-react-page-props` instead.\n */\n\nexport type AnyRec = Record<string, unknown>;\n\n/** A visited component plus everything needed to locate and bind it. */\nexport interface WalkedComponent {\n /** The component record itself. */\n component: AnyRec;\n /** Config path, e.g. `pages[0].regions[1].components[2]`. */\n path: string;\n /**\n * The object this component binds against, by precedence:\n * `dataSource.object` → `properties.object` → the page's `object`.\n * `undefined` when nothing in the chain names one.\n */\n objectName?: string;\n}\n\nfunction isRec(v: unknown): v is AnyRec {\n return !!v && typeof v === 'object' && !Array.isArray(v);\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\n/** Page kinds whose component tree is a derived cache, not authored metadata. */\nconst SOURCE_AUTHORED_KINDS = new Set(['html', 'react', 'jsx']);\n\n/** Is this page authored as `source` (so its `regions` must not be linted)? */\nexport function isSourceAuthoredPage(page: AnyRec): boolean {\n const kind = strName(page.kind);\n return kind !== undefined && SOURCE_AUTHORED_KINDS.has(kind);\n}\n\n/**\n * Walk every component on a page, depth-first, yielding each with its config\n * path and resolved object binding. Source-authored pages yield nothing.\n *\n * `pagePath` is the caller's path prefix for the page (e.g. `pages[3]`).\n */\nexport function walkPageComponents(page: AnyRec, pagePath: string): WalkedComponent[] {\n const out: WalkedComponent[] = [];\n if (!isRec(page) || isSourceAuthoredPage(page)) return out;\n\n const pageObject = strName(page.object);\n\n const visit = (node: unknown, path: string, inheritedObject?: string) => {\n if (!isRec(node)) return;\n\n // Per-element `dataSource` overrides the page object so one page can bind\n // several objects; an inline `properties.object` does the same for the\n // element-family components that declare one.\n const props = isRec(node.properties) ? node.properties : undefined;\n const dataSource = isRec(node.dataSource) ? node.dataSource : undefined;\n const objectName =\n strName(dataSource?.object) ?? strName(props?.object) ?? inheritedObject;\n\n out.push({ component: node, path, objectName });\n\n if (!props) return;\n\n // `page:tabs` / `page:accordion` — items[].children[]\n if (Array.isArray(props.items)) {\n for (let i = 0; i < props.items.length; i++) {\n const item = props.items[i];\n if (!isRec(item) || !Array.isArray(item.children)) continue;\n for (let c = 0; c < item.children.length; c++) {\n visit(item.children[c], `${path}.properties.items[${i}].children[${c}]`, objectName);\n }\n }\n }\n // Generic layout nesting — `properties.children[]`. Not in any props\n // schema, but it is how real pages compose layout containers (`type:\n // 'flex'` grids in the showcase command-center wrap every chart this way).\n // Omitting it hides whole sub-trees from every rule built on this walk.\n if (Array.isArray(props.children)) {\n for (let i = 0; i < props.children.length; i++) {\n visit(props.children[i], `${path}.properties.children[${i}]`, objectName);\n }\n }\n // `page:card` — body[] / footer[]\n for (const key of ['body', 'footer'] as const) {\n const slotList = props[key];\n if (!Array.isArray(slotList)) continue;\n for (let i = 0; i < slotList.length; i++) {\n visit(slotList[i], `${path}.properties.${key}[${i}]`, objectName);\n }\n }\n };\n\n const regions = Array.isArray(page.regions) ? page.regions : [];\n for (let r = 0; r < regions.length; r++) {\n const region = regions[r];\n if (!isRec(region) || !Array.isArray(region.components)) continue;\n for (let c = 0; c < region.components.length; c++) {\n visit(region.components[c], `${pagePath}.regions[${r}].components[${c}]`, pageObject);\n }\n }\n\n const slots = isRec(page.slots) ? page.slots : undefined;\n if (slots) {\n for (const [slot, value] of Object.entries(slots)) {\n // A slot holds a single component or an array of them.\n const list = Array.isArray(value) ? value : [value];\n const indexed = Array.isArray(value);\n for (let i = 0; i < list.length; i++) {\n visit(list[i], `${pagePath}.slots.${slot}${indexed ? `[${i}]` : ''}`, pageObject);\n }\n }\n }\n\n return out;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0049 — references] Action-NAME reference integrity for the surfaces that\n * bind an action by name (issue #3583).\n *\n * `locations` is an action's primary binding, but several surfaces reference\n * actions **by name** instead (see `content/docs/ui/actions.mdx` — \"Surfaces can\n * also reference actions by name\"). Every one of those fields is a plain\n * `z.array(z.string())` / `z.string()`, so a name that matches no defined action\n * parses and ships:\n *\n * - list views — `rowActions[]` / `bulkActions[]` (both the default `list`\n * container and each `listViews.<key>` entry)\n * - page components — `record:quick_actions` → `properties.actionNames[]`\n * - app navigation — `{ type: 'action', actionDef: { actionName } }`\n *\n * The HotCRM audit shipped `bulkActions: ['mass_update', 'mass_delete',\n * 'assign_owner']` with none of the three defined anywhere: the toolbar renders\n * the buttons, selecting rows enables them, and clicking does nothing.\n *\n * This is the same failure `validate-dashboard-action-refs` catches for\n * dashboard header/widget buttons (`DASHBOARD_ACTION_TARGET_UNDEFINED`), so it\n * carries the same severity: **error**. It is a genuine dead reference, and —\n * unlike an object name — there is no cross-package escape hatch to soften it\n * with. The runtime ships NO built-in action names (there is no\n * `BUILTIN_ACTIONS` registry; `list_toolbar`/`list_item` are *locations*, not\n * actions), so a name resolving nowhere is dead, full stop.\n *\n * Scope note: this rule asks only \"is this action defined ANYWHERE in the\n * stack?\". It deliberately does NOT check that a view's action belongs to the\n * view's own object, nor that the action declares the matching `location` —\n * both are real but distinct classes, and folding them in here would trade the\n * zero-false-positive posture (ADR-0072 D1) for coverage this issue did not ask\n * for. An action defined by another installed package is the one legitimate\n * miss; it is called out in the hint rather than guessed at.\n */\n\nimport { walkPageComponents } from './page-walk.js';\n\nexport const ACTION_NAME_UNDEFINED = 'action-name-undefined';\n\nexport type ActionNameRefSeverity = 'error' | 'warning';\n\nexport interface ActionNameRefFinding {\n /** Always `error` — a name-bound action that resolves nowhere is a dead button. */\n severity: ActionNameRefSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `view \"crm_lead\" · list \"all\" · bulkActions`. */\n where: string;\n /** Config path, e.g. `views[0].list.bulkActions[1]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\nfunction strList(v: unknown): string[] {\n return Array.isArray(v) ? v.filter((x): x is string => typeof x === 'string' && x.length > 0) : [];\n}\n\nfunction distance(a: string, b: string): number {\n const m = a.length;\n const n = b.length;\n if (m === 0) return n;\n if (n === 0) return m;\n let prev = Array.from({ length: n + 1 }, (_, j) => j);\n for (let i = 1; i <= m; i++) {\n const curr = [i, ...new Array<number>(n).fill(0)];\n for (let j = 1; j <= n; j++) {\n const cost = a[i - 1] === b[j - 1] ? 0 : 1;\n curr[j] = Math.min(curr[j - 1] + 1, prev[j] + 1, prev[j - 1] + cost);\n }\n prev = curr;\n }\n return prev[n];\n}\n\nfunction suggest(target: string, known: Iterable<string>): string {\n let best: string | undefined;\n let bestScore = Infinity;\n for (const candidate of known) {\n const d = distance(target, candidate);\n if (d < bestScore) {\n bestScore = d;\n best = candidate;\n }\n }\n const limit = Math.max(2, Math.floor(target.length / 3));\n return best && bestScore <= limit ? ` Did you mean \"${best}\"?` : '';\n}\n\n/** Every action name defined in the stack (global + object-embedded). */\nfunction collectActionNames(stack: AnyRec): Set<string> {\n const names = new Set<string>();\n for (const action of asArray(stack.actions)) {\n const n = strName(action?.name);\n if (n) names.add(n);\n }\n for (const obj of asArray(stack.objects)) {\n if (!obj || typeof obj !== 'object') continue;\n for (const action of asArray(obj.actions)) {\n const n = strName(action?.name);\n if (n) names.add(n);\n }\n }\n return names;\n}\n\n/**\n * Validate every name-bound action reference in a stack. Returns findings\n * (empty = clean).\n */\nexport function validateActionNameRefs(stack: AnyRec): ActionNameRefFinding[] {\n const findings: ActionNameRefFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const known = collectActionNames(stack);\n\n const check = (name: string, where: string, path: string, surface: string) => {\n if (known.has(name)) return;\n findings.push({\n severity: 'error',\n rule: ACTION_NAME_UNDEFINED,\n where,\n path,\n message:\n `${surface} names action \"${name}\", which is defined by no action in this stack ` +\n `(neither \\`stack.actions\\` nor any object's \\`actions\\`). The button renders and ` +\n `does nothing when clicked — a dead affordance the runtime cannot dispatch.` +\n suggest(name, known),\n hint:\n `Define an action named \"${name}\" (in \\`stack.actions\\` or the object's \\`actions\\`) ` +\n `with the location this surface needs, remove the reference, or ignore this if the ` +\n `action is contributed by another installed package.` +\n (known.size > 0 ? ` Defined actions: ${[...known].sort().join(', ')}.` : ''),\n });\n };\n\n // ── List views: rowActions / bulkActions on `list` + each `listViews.<key>` ──\n const views = asArray(stack.views);\n for (let vi = 0; vi < views.length; vi++) {\n const view = views[vi];\n if (!view || typeof view !== 'object') continue;\n const viewName = strName(view.name) ?? strName(view.object) ?? `#${vi}`;\n\n const checkListContainer = (container: unknown, label: string, path: string) => {\n if (!container || typeof container !== 'object') return;\n const list = container as AnyRec;\n for (const key of ['rowActions', 'bulkActions'] as const) {\n const names = strList(list[key]);\n for (let ai = 0; ai < names.length; ai++) {\n check(\n names[ai],\n `view \"${viewName}\" · ${label} · ${key}`,\n `${path}.${key}[${ai}]`,\n key === 'bulkActions' ? 'Bulk-action menu' : 'Row-action menu',\n );\n }\n }\n };\n\n checkListContainer(view.list, 'list', `views[${vi}].list`);\n const listViews = view.listViews;\n if (listViews && typeof listViews === 'object' && !Array.isArray(listViews)) {\n for (const [key, lv] of Object.entries(listViews as AnyRec)) {\n checkListContainer(lv, `listViews.${key}`, `views[${vi}].listViews.${key}`);\n }\n }\n }\n\n // ── Page components: record:quick_actions → properties.actionNames ──\n const pages = asArray(stack.pages);\n for (let pi = 0; pi < pages.length; pi++) {\n const page = pages[pi];\n if (!page || typeof page !== 'object') continue;\n const pageName = strName(page.name) ?? `#${pi}`;\n\n // Traversal is shared (`page-walk.ts`): the component tree is NOT where a\n // first reading suggests. Components hang off `regions[].components[]` and\n // `slots`, never a top-level `page.components`, and sub-trees nest inside\n // the untyped `properties` bag rather than under a `children` key.\n for (const { component, path } of walkPageComponents(page, `pages[${pi}]`)) {\n const props = component.properties as AnyRec | undefined;\n if (!props || typeof props !== 'object') continue;\n const names = strList(props.actionNames);\n for (let ai = 0; ai < names.length; ai++) {\n check(\n names[ai],\n `page \"${pageName}\" · component \"${strName(component.type) ?? '?'}\"`,\n `${path}.properties.actionNames[${ai}]`,\n 'Quick-actions bar',\n );\n }\n }\n }\n\n // ── App navigation: { type: 'action', actionDef: { actionName } } ──\n const apps = asArray(stack.apps);\n for (let ai = 0; ai < apps.length; ai++) {\n const app = apps[ai];\n if (!app || typeof app !== 'object') continue;\n const appName = strName(app.name) ?? `#${ai}`;\n\n const walkNav = (items: unknown, basePath: string) => {\n const navItems = asArray(items);\n for (let ni = 0; ni < navItems.length; ni++) {\n const nav = navItems[ni];\n if (!nav || typeof nav !== 'object') continue;\n const navPath = `${basePath}[${ni}]`;\n const actionDef = nav.actionDef as AnyRec | undefined;\n const actionName = strName(actionDef?.actionName);\n if (nav.type === 'action' && actionName) {\n check(\n actionName,\n `app \"${appName}\" · nav \"${strName(nav.id) ?? `#${ni}`}\"`,\n `${navPath}.actionDef.actionName`,\n 'Navigation action item',\n );\n }\n if (Array.isArray(nav.children)) walkNav(nav.children, `${navPath}.children`);\n }\n };\n\n walkNav(app.navigation, `apps[${ai}].navigation`);\n const areas = asArray(app.areas);\n for (let ri = 0; ri < areas.length; ri++) {\n walkNav(areas[ri]?.navigation, `apps[${ai}].areas[${ri}].navigation`);\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0078 — completeness] Field-reference integrity for page components\n * (issue #3583, assessment R3).\n *\n * `PageComponent.properties` is `z.record(z.string(), z.unknown())` — an\n * untyped bag. The typed prop schemas exist (`ComponentPropsMap` in\n * `@objectstack/spec/ui`) but nothing validates `properties` against them, so\n * every field name a component references ships exactly as typed. The HotCRM\n * audit found KPI cards and page headers bound to fields the object does not\n * have; each renders blank or falls back, and nothing reports the miss.\n *\n * Field-existence lint already exists for forms (`FORM_FIELD_UNKNOWN`),\n * semantic roles, and flow templates. This is the same check for pages, at the\n * same advisory severity: every consumer degrades gracefully (a missing field\n * is skipped, not crashed on), so a warning is the honest level.\n *\n * ── Which object a component binds ──────────────────────────────────────\n *\n * `dataSource.object` → `properties.object` → the page's `object`. A per-element\n * `dataSource` exists precisely so one page can bind several objects, and the\n * `element:*` family declares its own `object`; both must win over the page's.\n *\n * ── Why a hand-written descriptor table ─────────────────────────────────\n *\n * `ComponentPropsMap` cannot drive this rule: a Zod schema does not say which\n * of its `z.string()` props is a FIELD NAME (`RecordPathProps.statusField` and\n * `AIChatWindowProps.agentId` are both plain strings), and the type universe is\n * open anyway — `PageComponent.type` is `z.union([PageComponentType,\n * z.string()])`, so unregistered types like `record:line_items` parse and are\n * authored in the wild. The table below names the field-bearing props\n * explicitly; an unknown component type is SKIPPED silently, never flagged.\n *\n * The table also covers shapes the props schemas do not yet describe but real\n * pages authored anyway (they pass only because `properties` is unvalidated):\n * `record:details` `sections[].fields[]` and `hideFields[]`, and the record\n * picker's `labelField`. Linting the schema's shape alone would find nothing on\n * the actual corpus.\n */\n\nexport const PAGE_FIELD_UNKNOWN = 'page-field-unknown';\n\nexport type PageFieldSeverity = 'error' | 'warning';\n\nexport interface PageFieldFinding {\n /** Always `warning` — page renderers skip an unknown field rather than fail. */\n severity: PageFieldSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `page \"task_detail\" · record:highlights`. */\n where: string;\n /** Config path, e.g. `pages[0].regions[1].components[0].properties.fields[2]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\nimport { walkPageComponents, type AnyRec } from './page-walk.js';\n\n/**\n * Registry-injected fields present on (almost) every object but NOT declared in\n * `object.fields`. Copied verbatim from `validate-widget-bindings` so the two\n * rules agree on what counts as a field. Deliberately generous: over-inclusion\n * costs at worst a missed warning on a `systemFields: false` object; under-\n * inclusion costs a false one, and a false finding is what makes authors stop\n * trusting the linter (ADR-0072 D1). Real pages DO reference these — e.g.\n * `sys_user.page.ts` lists `created_at` in a related-list's columns.\n */\nconst SYSTEM_FIELDS = new Set<string>([\n 'id',\n 'created_at', 'created_by', 'updated_at', 'updated_by',\n 'owner_id', 'organization_id', 'tenant_id', 'user_id',\n 'deleted_at',\n]);\n\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\nfunction isRec(v: unknown): v is AnyRec {\n return !!v && typeof v === 'object' && !Array.isArray(v);\n}\n\n/** A field reference found in a props bag, with the path that located it. */\ninterface FieldRef {\n name: string;\n path: string;\n}\n\n/**\n * Pull field names out of a value that may be a bare string, a `{field}` or\n * `{name}` record, or an array of either — the three shapes the component props\n * use interchangeably (`record:highlights` keys its object form `name`, while\n * columns/sort/filter key theirs `field`).\n */\nfunction fieldRefsFrom(value: unknown, basePath: string): FieldRef[] {\n const out: FieldRef[] = [];\n const one = (v: unknown, path: string) => {\n const bare = strName(v);\n if (bare) {\n out.push({ name: bare, path });\n return;\n }\n if (!isRec(v)) return;\n const named = strName(v.field) ?? strName(v.name);\n if (named) out.push({ name: named, path: `${path}.${strName(v.field) ? 'field' : 'name'}` });\n };\n if (Array.isArray(value)) {\n for (let i = 0; i < value.length; i++) one(value[i], `${basePath}[${i}]`);\n } else {\n one(value, basePath);\n }\n return out;\n}\n\n/**\n * Per-component-type descriptor: which `properties` paths hold field names, and\n * whether they resolve against this component's own object or another one.\n *\n * `props` entries are read from `component.properties`. Entries under\n * `nestedSections` walk `properties.<key>[].fields[]` — the section shape real\n * pages author for `record:details`.\n */\ninterface ComponentFieldSpec {\n /** Props holding field names bound to the component's resolved object. */\n props?: readonly string[];\n /** Props holding `{...}[]` section objects whose `fields[]` are field names. */\n nestedSections?: readonly string[];\n}\n\nconst COMPONENT_FIELD_SPECS: Readonly<Record<string, ComponentFieldSpec>> = {\n 'record:highlights': { props: ['fields'] },\n // `sections`/`hideFields` are not in RecordDetailsProps, but every real page\n // authors them (they survive because `properties` is unvalidated).\n 'record:details': { props: ['fields', 'hideFields'], nestedSections: ['sections'] },\n 'record:path': { props: ['statusField'] },\n 'element:number': { props: ['field'] },\n 'element:filter': { props: ['fields'] },\n 'element:form': { props: ['fields'] },\n // The schema says `displayField`; real pages author `labelField`. Accept both.\n 'element:record_picker': { props: ['displayField', 'labelField', 'searchFields'] },\n};\n\n/**\n * `record:related_list` is special: its `columns`/`sort`/`filter` resolve\n * against the RELATED object (`properties.objectName`), not the page's object,\n * so it cannot ride the generic table.\n */\nconst RELATED_LIST_TYPE = 'record:related_list';\n\nexport function validatePageFieldBindings(stack: AnyRec): PageFieldFinding[] {\n const findings: PageFieldFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n // object name → its declared field names. Built with `asArray` so BOTH\n // `fields` shapes (array of `{name}` and name-keyed map) resolve.\n const objectFields = new Map<string, Set<string>>();\n for (const obj of asArray(stack.objects)) {\n const name = strName(obj.name);\n if (!name) continue;\n const names = new Set<string>();\n for (const f of asArray(obj.fields)) {\n const fn = strName(f.name);\n if (fn) names.add(fn);\n }\n objectFields.set(name, names);\n }\n\n const pages = asArray(stack.pages);\n for (let pi = 0; pi < pages.length; pi++) {\n const page = pages[pi];\n if (!page || typeof page !== 'object') continue;\n const pageName = strName(page.name) ?? `#${pi}`;\n\n /**\n * Check one batch of refs against `objectName`. Bails out entirely when the\n * object is not defined in this stack — it may come from another installed\n * package, and we cannot judge fields on a schema we cannot see (the same\n * skip the flow/widget rules use).\n */\n const checkRefs = (refs: FieldRef[], objectName: string | undefined, where: string) => {\n if (!objectName) return; // nothing to resolve against\n const known = objectFields.get(objectName);\n if (!known) return; // cross-package object — unknowable here\n for (const ref of refs) {\n // A relationship path (`account.name`) is resolved by the query engine,\n // not a base column, so it cannot be judged here.\n if (ref.name.includes('.')) continue;\n if (known.has(ref.name) || SYSTEM_FIELDS.has(ref.name)) continue;\n findings.push({\n severity: 'warning',\n rule: PAGE_FIELD_UNKNOWN,\n where,\n path: ref.path,\n message:\n `field \"${ref.name}\" is not a field on object \"${objectName}\" — ` +\n `the component silently skips it, so it never renders.`,\n hint:\n `Fix the field name, or add \"${ref.name}\" to ${objectName}. ` +\n `References must match the object's field names exactly.` +\n (known.size > 0 ? ` Object fields: ${[...known].sort().join(', ')}.` : ''),\n });\n }\n };\n\n for (const { component, path, objectName } of walkPageComponents(page, `pages[${pi}]`)) {\n const type = strName(component.type);\n const props = isRec(component.properties) ? component.properties : undefined;\n if (!type || !props) continue;\n const where = `page \"${pageName}\" · ${type}`;\n\n if (type === RELATED_LIST_TYPE) {\n // Columns / sort / filter address the RELATED object.\n const relatedObject = strName(props.objectName);\n const relatedRefs: FieldRef[] = [\n ...fieldRefsFrom(props.columns, `${path}.properties.columns`),\n ...fieldRefsFrom(props.sort, `${path}.properties.sort`),\n ...fieldRefsFrom(props.filter, `${path}.properties.filter`),\n ...fieldRefsFrom(props.relationshipField, `${path}.properties.relationshipField`),\n ];\n checkRefs(relatedRefs, relatedObject, where);\n // `relationshipValueField` names a field on the PARENT (page) object.\n checkRefs(\n fieldRefsFrom(props.relationshipValueField, `${path}.properties.relationshipValueField`),\n objectName,\n where,\n );\n // The add-picker resolves against its own object.\n const add = isRec(props.add) ? props.add : undefined;\n const picker = add && isRec(add.picker) ? add.picker : undefined;\n if (picker) {\n checkRefs(\n [\n ...fieldRefsFrom(picker.valueField, `${path}.properties.add.picker.valueField`),\n ...fieldRefsFrom(picker.labelField, `${path}.properties.add.picker.labelField`),\n ],\n strName(picker.object),\n where,\n );\n }\n if (add) {\n checkRefs(\n fieldRefsFrom(add.linkField, `${path}.properties.add.linkField`),\n relatedObject,\n where,\n );\n }\n continue;\n }\n\n const spec = COMPONENT_FIELD_SPECS[type];\n if (!spec) continue; // unregistered / non-field component — skip silently\n\n const refs: FieldRef[] = [];\n for (const key of spec.props ?? []) {\n refs.push(...fieldRefsFrom(props[key], `${path}.properties.${key}`));\n }\n for (const key of spec.nestedSections ?? []) {\n const sections = Array.isArray(props[key]) ? (props[key] as unknown[]) : [];\n for (let si = 0; si < sections.length; si++) {\n const section = sections[si];\n if (!isRec(section)) continue;\n refs.push(\n ...fieldRefsFrom(section.fields, `${path}.properties.${key}[${si}].fields`),\n );\n }\n }\n checkRefs(refs, objectName, where);\n }\n\n // ── interfaceConfig (list pages) ──\n // Bound by `interfaceConfig.source`, falling back to the page's object.\n const cfg = isRec(page.interfaceConfig) ? page.interfaceConfig : undefined;\n if (cfg) {\n const cfgObject = strName(cfg.source) ?? strName(page.object);\n const base = `pages[${pi}].interfaceConfig`;\n const refs: FieldRef[] = [\n ...fieldRefsFrom(cfg.columns, `${base}.columns`),\n ...fieldRefsFrom(cfg.sort, `${base}.sort`),\n ...fieldRefsFrom(cfg.filterBy, `${base}.filterBy`),\n ];\n const userFilters = isRec(cfg.userFilters) ? cfg.userFilters : undefined;\n if (userFilters) {\n refs.push(...fieldRefsFrom(userFilters.fields, `${base}.userFilters.fields`));\n }\n checkRefs(refs, cfgObject, `page \"${pageName}\" · interfaceConfig`);\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0021 — semantic layer] Chart-binding integrity for the surfaces the\n * dashboard rule does not reach (issue #3583, assessment R4).\n *\n * `validate-widget-bindings` already resolves a dashboard widget's\n * `chartConfig` axes against its dataset's declared dimensions and measures\n * (`chart-field-unknown`). It is scoped to `stack.dashboards`, so three other\n * chart surfaces ship unchecked — and the HotCRM audit found exactly the bug\n * that scoping allows: an axis naming a RAW FIELD instead of a dataset measure.\n * Post-ADR-0021 the result rows are keyed by measure NAME (`sum_amount`), not\n * the base column (`amount`), so the axis renders and the series is empty.\n *\n * Surfaces covered here:\n *\n * 1. **Report charts** — `report.chart` and `report.blocks[].chart`.\n * `ReportChartSchema` narrows `xAxis`/`yAxis` from ChartConfig's\n * object/array shapes to bare STRINGS, which is why simply pointing the\n * dashboard rule at reports would find nothing: its `Array.isArray(yAxis)`\n * guard skips a string silently. `series[].name` keeps the array shape.\n * 2. **List-view charts** — `ListChartConfigSchema` (`dataset` +\n * `dimensions` + `values`), reachable through `views[].list`,\n * `views[].listViews.<key>`, and `objects[].listViews.<key>`.\n * 3. **Dataset-bound page chart components** — a `PageComponent` whose\n * `properties` carry a `dataset` (the `object-chart` component). Same\n * binding shape as a list chart, but it arrives through the untyped\n * `properties` bag.\n *\n * Not covered HERE, and deliberately so: the react `<ObjectChart>` block. It is\n * OBJECT-bound (`objectName` + an inline `aggregate`), so its result rows are\n * keyed by the RAW FIELD NAMES rather than by a measure name — the opposite\n * convention, which would make `chart-measure-unknown`'s message a lie. It also\n * arrives as JSX rather than config, so it needs the TypeScript compiler this\n * rule has no business loading. It is checked by `validate-react-page-props`\n * instead, against the naming convention `chartAggregateResultKeys`\n * (`@objectstack/spec/ui`) now pins down (#3701).\n */\n\nexport const CHART_DIMENSION_UNKNOWN = 'chart-dimension-unknown';\nexport const CHART_MEASURE_UNKNOWN = 'chart-measure-unknown';\nexport const CHART_DATASET_UNKNOWN = 'chart-dataset-unknown';\nexport const CHART_AXIS_NOT_SELECTED = 'chart-axis-not-selected';\n\nexport type ChartBindingSeverity = 'error' | 'warning';\n\nexport interface ChartBindingFinding {\n severity: ChartBindingSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `report \"hours_by_status\" · chart`. */\n where: string;\n /** Config path, e.g. `reports[2].chart.yAxis`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\nimport { walkPageComponents, type AnyRec } from './page-walk.js';\n\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\nfunction strList(v: unknown): string[] {\n return Array.isArray(v) ? v.filter((x): x is string => typeof x === 'string' && x.length > 0) : [];\n}\n\nfunction isRec(v: unknown): v is AnyRec {\n return !!v && typeof v === 'object' && !Array.isArray(v);\n}\n\nfunction distance(a: string, b: string): number {\n const m = a.length;\n const n = b.length;\n if (m === 0) return n;\n if (n === 0) return m;\n let prev = Array.from({ length: n + 1 }, (_, j) => j);\n for (let i = 1; i <= m; i++) {\n const curr = [i, ...new Array<number>(n).fill(0)];\n for (let j = 1; j <= n; j++) {\n const cost = a[i - 1] === b[j - 1] ? 0 : 1;\n curr[j] = Math.min(curr[j - 1] + 1, prev[j] + 1, prev[j - 1] + cost);\n }\n prev = curr;\n }\n return prev[n];\n}\n\nfunction suggest(target: string, known: Iterable<string>): string {\n let best: string | undefined;\n let bestScore = Infinity;\n for (const c of known) {\n const d = distance(target, c);\n if (d < bestScore) {\n bestScore = d;\n best = c;\n }\n }\n const limit = Math.max(2, Math.floor(target.length / 3));\n return best && bestScore <= limit ? ` Did you mean \"${best}\"?` : '';\n}\n\nfunction list(names: Iterable<string>): string {\n const all = [...names].sort();\n return all.length ? all.join(', ') : '(none)';\n}\n\n/** A dataset's declared dimension and measure names. */\ninterface DatasetNames {\n dimensions: Set<string>;\n measures: Set<string>;\n}\n\nfunction indexDatasets(stack: AnyRec): Map<string, DatasetNames> {\n const out = new Map<string, DatasetNames>();\n for (const ds of asArray(stack.datasets)) {\n const name = strName(ds.name);\n if (!name) continue;\n const dimensions = new Set<string>();\n for (const d of asArray(ds.dimensions)) {\n const n = strName(d.name);\n if (n) dimensions.add(n);\n }\n const measures = new Set<string>();\n for (const m of asArray(ds.measures)) {\n const n = strName(m.name);\n if (n) measures.add(n);\n }\n out.set(name, { dimensions, measures });\n }\n return out;\n}\n\n/**\n * One dataset-bound chart to check: the binding, the selection, and where it\n * came from. `xAxis`/`yAxis`/`series` are the ChartConfig-style axis refs;\n * `dimensions`/`values` are the list-chart-style selection.\n */\ninterface ChartBinding {\n dataset?: string;\n /** Selected dimension names (list-chart shape). */\n dimensions?: { names: string[]; path: string };\n /** Selected measure names (list-chart / report shape). */\n values?: { names: string[]; path: string };\n /** Single dimension ref (report `xAxis`). */\n xAxis?: { name: string; path: string };\n /** Single measure ref (report `yAxis`). */\n yAxis?: { name: string; path: string };\n /** Series names — measure refs (ChartConfig shape). */\n series?: Array<{ name: string; path: string }>;\n where: string;\n /** Path of the chart container, for the dataset-level finding. */\n path: string;\n}\n\nexport function validateChartBindings(stack: AnyRec): ChartBindingFinding[] {\n const findings: ChartBindingFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const datasets = indexDatasets(stack);\n if (datasets.size === 0 && !stack.reports && !stack.views && !stack.pages) return findings;\n\n const check = (binding: ChartBinding) => {\n const dsName = binding.dataset;\n if (!dsName) return; // nothing bound — the shape rules own that case\n const ds = datasets.get(dsName);\n if (!ds) {\n findings.push({\n severity: 'error',\n rule: CHART_DATASET_UNKNOWN,\n where: binding.where,\n path: `${binding.path}.dataset`,\n message:\n `binds dataset \"${dsName}\", which resolves to no declared dataset — ` +\n `the chart has no data to render.`,\n hint:\n `Declared datasets: ${list(datasets.keys())}.${suggest(dsName, datasets.keys())} ` +\n `Define it with defineDataset() or fix the reference (ADR-0021).`,\n });\n return;\n }\n\n const dimensionRef = (name: string, path: string) => {\n if (ds.dimensions.has(name)) return;\n findings.push({\n severity: 'error',\n rule: CHART_DIMENSION_UNKNOWN,\n where: binding.where,\n path,\n message:\n `\"${name}\" is not a dimension declared by dataset \"${dsName}\". ` +\n `Post-ADR-0021 result rows are keyed by DIMENSION NAME, not the base ` +\n `field, so this axis renders with no categories.`,\n hint:\n `Dataset dimensions: ${list(ds.dimensions)}.${suggest(name, ds.dimensions)} ` +\n `Declare the dimension on the dataset, or bind an existing one.`,\n });\n };\n\n const measureRef = (name: string, path: string, selected?: Set<string>) => {\n if (!ds.measures.has(name)) {\n findings.push({\n severity: 'error',\n rule: CHART_MEASURE_UNKNOWN,\n where: binding.where,\n path,\n message:\n `\"${name}\" is not a measure declared by dataset \"${dsName}\". ` +\n `Post-ADR-0021 result rows are keyed by MEASURE NAME (e.g. \"sum_amount\"), ` +\n `not the base field (e.g. \"amount\"), so this series comes back empty.`,\n hint:\n `Dataset measures: ${list(ds.measures)}.${suggest(name, ds.measures)} ` +\n `Declare the measure on the dataset, or bind an existing one.`,\n });\n return;\n }\n // Declared but not part of this chart's selection: the query never asks\n // for it, so the axis still plots nothing. Advisory — the selection may\n // legitimately be widened at runtime.\n if (selected && selected.size > 0 && !selected.has(name)) {\n findings.push({\n severity: 'warning',\n rule: CHART_AXIS_NOT_SELECTED,\n where: binding.where,\n path,\n message:\n `\"${name}\" is a declared measure of \"${dsName}\" but is not in this chart's ` +\n `selected values (${list(selected)}) — the query does not return it, ` +\n `so the series plots nothing.`,\n hint: `Add \"${name}\" to \\`values\\`, or point the axis at a selected measure.`,\n });\n }\n };\n\n const dimSel = binding.dimensions;\n if (dimSel) {\n for (let i = 0; i < dimSel.names.length; i++) {\n dimensionRef(dimSel.names[i], `${dimSel.path}[${i}]`);\n }\n }\n const valSel = binding.values;\n const selected = new Set(valSel?.names ?? []);\n if (valSel) {\n for (let i = 0; i < valSel.names.length; i++) {\n measureRef(valSel.names[i], `${valSel.path}[${i}]`);\n }\n }\n if (binding.xAxis) dimensionRef(binding.xAxis.name, binding.xAxis.path);\n if (binding.yAxis) measureRef(binding.yAxis.name, binding.yAxis.path, selected);\n for (const s of binding.series ?? []) measureRef(s.name, s.path, selected);\n };\n\n // ── 1. Report charts (report.chart + report.blocks[].chart) ──\n const reports = asArray(stack.reports);\n for (let ri = 0; ri < reports.length; ri++) {\n const report = reports[ri];\n if (!isRec(report)) continue;\n const reportName = strName(report.name) ?? `#${ri}`;\n\n const checkReportChart = (\n chart: unknown,\n dataset: string | undefined,\n values: string[],\n where: string,\n path: string,\n ) => {\n if (!isRec(chart)) return;\n check({\n dataset,\n // `values` is the report's measure SELECTION, not a chart ref; feeding\n // it in lets the yAxis \"declared but not selected\" check work without\n // reporting the selection itself twice.\n values: { names: values, path: `${path}.values` },\n xAxis: strName(chart.xAxis) ? { name: strName(chart.xAxis)!, path: `${path}.chart.xAxis` } : undefined,\n yAxis: strName(chart.yAxis) ? { name: strName(chart.yAxis)!, path: `${path}.chart.yAxis` } : undefined,\n series: asArray(chart.series)\n .map((s, si) => ({ name: strName(s.name), path: `${path}.chart.series[${si}].name` }))\n .filter((s): s is { name: string; path: string } => !!s.name),\n where,\n path: `${path}.chart`,\n });\n };\n\n checkReportChart(\n report.chart,\n strName(report.dataset),\n strList(report.values),\n `report \"${reportName}\" · chart`,\n `reports[${ri}]`,\n );\n\n const blocks = Array.isArray(report.blocks) ? report.blocks : [];\n for (let bi = 0; bi < blocks.length; bi++) {\n const block = blocks[bi];\n if (!isRec(block)) continue;\n checkReportChart(\n block.chart,\n strName(block.dataset),\n strList(block.values),\n `report \"${reportName}\" · block \"${strName(block.name) ?? `#${bi}`}\" chart`,\n `reports[${ri}].blocks[${bi}]`,\n );\n }\n }\n\n // ── 2. List-view charts ──\n const checkListChart = (container: unknown, where: string, path: string) => {\n if (!isRec(container)) return;\n const chart = container.chart;\n if (!isRec(chart)) return;\n check({\n dataset: strName(chart.dataset),\n dimensions: { names: strList(chart.dimensions), path: `${path}.chart.dimensions` },\n values: { names: strList(chart.values), path: `${path}.chart.values` },\n where,\n path: `${path}.chart`,\n });\n };\n\n const views = asArray(stack.views);\n for (let vi = 0; vi < views.length; vi++) {\n const view = views[vi];\n if (!isRec(view)) continue;\n const viewName = strName(view.name) ?? strName(view.objectName) ?? `#${vi}`;\n checkListChart(view.list, `view \"${viewName}\" · list chart`, `views[${vi}].list`);\n if (isRec(view.listViews)) {\n for (const [key, lv] of Object.entries(view.listViews)) {\n checkListChart(lv, `view \"${viewName}\" · listViews.${key} chart`, `views[${vi}].listViews.${key}`);\n }\n }\n }\n\n const objects = asArray(stack.objects);\n for (let oi = 0; oi < objects.length; oi++) {\n const obj = objects[oi];\n if (!isRec(obj) || !isRec(obj.listViews)) continue;\n const objName = strName(obj.name) ?? `#${oi}`;\n for (const [key, lv] of Object.entries(obj.listViews)) {\n checkListChart(\n lv,\n `object \"${objName}\" · listViews.${key} chart`,\n `objects[${oi}].listViews.${key}`,\n );\n }\n }\n\n // ── 3. Dataset-bound page chart components ──\n // A chart component arrives through the untyped `properties` bag. The\n // presence of a `dataset` key is what marks it dataset-bound (and so\n // checkable); an object-bound chart has none and is left alone.\n const pages = asArray(stack.pages);\n for (let pi = 0; pi < pages.length; pi++) {\n const page = pages[pi];\n if (!isRec(page)) continue;\n const pageName = strName(page.name) ?? `#${pi}`;\n for (const { component, path } of walkPageComponents(page, `pages[${pi}]`)) {\n const props = isRec(component.properties) ? component.properties : undefined;\n if (!props || !strName(props.dataset)) continue;\n // A page chart mixes the list-chart selection (`dataset`/`dimensions`/\n // `values`) with ChartConfig-style axes (`yAxis: [{ field }]`), so both\n // shapes are read here.\n const axisRefs = asArray(props.yAxis)\n .map((a, ai) => ({ name: strName(a.field), path: `${path}.properties.yAxis[${ai}].field` }))\n .filter((a): a is { name: string; path: string } => !!a.name);\n const seriesRefs = asArray(props.series)\n .map((s, si) => ({ name: strName(s.name), path: `${path}.properties.series[${si}].name` }))\n .filter((s): s is { name: string; path: string } => !!s.name);\n check({\n dataset: strName(props.dataset),\n dimensions: { names: strList(props.dimensions), path: `${path}.properties.dimensions` },\n values: { names: strList(props.values), path: `${path}.properties.values` },\n series: [...axisRefs, ...seriesRefs],\n where: `page \"${pageName}\" · ${strName(component.type) ?? 'chart'}`,\n path: `${path}.properties`,\n });\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0090 D6] Navigation reachability vs. granted access (issue #3583,\n * assessment R5).\n *\n * An app can put an object in its navigation without any permission set\n * granting read on it. Nothing rejects that: navigation and permissions are\n * separate metadata, each valid on its own. At runtime the entry renders, the\n * user clicks it, and the list view comes back permission-denied — for EVERY\n * user, including the admin, because a permission nobody was granted is a\n * permission nobody has. The HotCRM audit shipped two such objects\n * (`crm_forecast`, `crm_knowledge_article`).\n *\n * This is the first lint consumer of `buildAccessMatrix` (ADR-0090 D6), which\n * already derives one row per (permission set × object) with `read` folded\n * across `allowRead` / `viewAllRecords` / `modifyAllRecords`. The rule is that\n * matrix joined against what navigation exposes.\n *\n * ── Advisory, deliberately ──────────────────────────────────────────────\n *\n * A grant can legitimately live outside this stack: a permission set shipped by\n * another installed package, a platform default, or an org-level assignment\n * made after install. A stack is therefore not *wrong* to ship an ungranted nav\n * entry — it is only *suspicious*, and the ceiling for a static check is a\n * warning (the same posture `validate-capability-references` takes).\n *\n * Two exemptions keep it quiet:\n * - **Platform-provided objects** (`sys_user`, `sys_approval_request`, …) are\n * skipped: the packages that register them ship their own permission sets,\n * which this stack never sees.\n * - **A stack that declares no permission sets at all** is skipped entirely.\n * Flagging every nav entry there says nothing useful — it means permissions\n * are managed elsewhere, not that each entry is broken (the same\n * \"empty collection ⇒ don't judge\" gate `defineStack` applies to nav\n * dashboard/page/report references).\n */\n\nimport { isPlatformProvidedObjectName } from '@objectstack/spec/system';\nimport { buildAccessMatrix } from './build-access-matrix.js';\n\nexport const NAV_OBJECT_UNGRANTED = 'nav-object-ungranted';\n\nexport type NavAccessSeverity = 'error' | 'warning';\n\nexport interface NavAccessFinding {\n /** Always `warning` — a grant may come from a package this stack cannot see. */\n severity: NavAccessSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `app \"crm\" · nav \"nav_forecast\"`. */\n where: string;\n /** Config path, e.g. `apps[0].navigation[3].objectName`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\n/** One navigation entry that exposes an object. */\ninterface NavExposure {\n objectName: string;\n where: string;\n path: string;\n}\n\n/** Collect every object a stack's navigation exposes, across areas and children. */\nfunction collectNavExposures(stack: AnyRec): NavExposure[] {\n const out: NavExposure[] = [];\n const apps = asArray(stack.apps);\n\n for (let ai = 0; ai < apps.length; ai++) {\n const app = apps[ai];\n if (!app || typeof app !== 'object') continue;\n const appName = strName(app.name) ?? `#${ai}`;\n\n const walk = (items: unknown, basePath: string) => {\n const navItems = asArray(items);\n for (let ni = 0; ni < navItems.length; ni++) {\n const nav = navItems[ni];\n if (!nav || typeof nav !== 'object') continue;\n const navPath = `${basePath}[${ni}]`;\n const objectName = strName(nav.objectName);\n if (nav.type === 'object' && objectName) {\n out.push({\n objectName,\n where: `app \"${appName}\" · nav \"${strName(nav.id) ?? `#${ni}`}\"`,\n path: `${navPath}.objectName`,\n });\n }\n if (Array.isArray(nav.children)) walk(nav.children, `${navPath}.children`);\n }\n };\n\n walk(app.navigation, `apps[${ai}].navigation`);\n const areas = asArray(app.areas);\n for (let ri = 0; ri < areas.length; ri++) {\n walk(areas[ri]?.navigation, `apps[${ai}].areas[${ri}].navigation`);\n }\n }\n\n return out;\n}\n\n/**\n * Validate that every object a stack's navigation exposes is readable by at\n * least one permission set the stack declares. Returns findings (empty = clean).\n */\nexport function validateNavAccess(stack: AnyRec): NavAccessFinding[] {\n const findings: NavAccessFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n // No permission sets in this stack ⇒ permissions are managed elsewhere.\n const permissionSets = asArray(stack.permissions);\n if (permissionSets.length === 0) return findings;\n\n const exposures = collectNavExposures(stack);\n if (exposures.length === 0) return findings;\n\n // Objects this stack actually defines — the only ones whose grants must be\n // present here. A nav target that resolves nowhere is a different bug, owned\n // by `validate-object-references` / `defineStack`.\n const ownObjects = new Set<string>();\n for (const obj of asArray(stack.objects)) {\n const n = strName(obj.name);\n if (n) ownObjects.add(n);\n }\n\n // `read` is already folded across allowRead / viewAllRecords / modifyAllRecords.\n const readable = new Set<string>();\n for (const entry of buildAccessMatrix(stack).entries) {\n if (entry.read) readable.add(entry.object);\n }\n // A wildcard grant (`objects: { '*': { allowRead: true } }`) covers every\n // object — the shape the platform's own `admin_full_access` uses. Without\n // this the matrix records the literal key `*` and every object looks\n // ungranted, which would make the rule fire on exactly the stacks that\n // granted the most.\n if (readable.has('*')) return findings;\n\n // De-duplicate: one finding per object, not per nav entry that exposes it.\n const reported = new Set<string>();\n\n for (const exposure of exposures) {\n const { objectName } = exposure;\n if (reported.has(objectName)) continue;\n if (isPlatformProvidedObjectName(objectName)) continue; // granted by its own package\n if (!ownObjects.has(objectName)) continue; // not ours to grant\n if (readable.has(objectName)) continue;\n\n reported.add(objectName);\n findings.push({\n severity: 'warning',\n rule: NAV_OBJECT_UNGRANTED,\n where: exposure.where,\n path: exposure.path,\n message:\n `navigation exposes object \"${objectName}\", but no permission set this stack ` +\n `declares grants read on it — the entry renders, and opening it fails ` +\n `permission-denied for every principal except one holding the platform's ` +\n `built-in wildcard admin set. It works when you browse as an administrator ` +\n `and breaks for the users the app ships permission sets for.`,\n hint:\n `Add \"${objectName}\" to a permission set's \\`objects\\` with \\`allowRead: true\\` ` +\n `(or \\`viewAllRecords\\`), gate the entry with \\`requiredPermissions\\`/\\`visible\\` ` +\n `if it is meant for admins only, or drop it. Ignore this if a permission set ` +\n `from another installed package grants it.`,\n });\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0090 D6] Access-matrix snapshot — authoring-time companion to the\n * runtime explain engine.\n *\n * `buildAccessMatrix(stack)` derives, PURELY from metadata, one row per\n * (permission set × object) the stack declares: the CRUD/VAMA bits, the\n * depth axes, and the object's OWD for context. The matrix is snapshotted to\n * `access-matrix.json` and diffed on every compile: an unchanged matrix\n * auto-passes; a changed one fails the build until the snapshot is updated —\n * so every capability change becomes a REVIEWABLE, semantic diff\n * (\"`crm_admin` gains delete on `crm_lead`\") instead of a buried JSON hunk.\n * This is the publish-gate substrate the AI-authoring safety story needs:\n * AI may draft grants freely; it cannot silently change who can do what.\n */\n\nimport type { AccessMatrix, AccessMatrixEntry } from '@objectstack/spec/security';\n\ntype AnyRec = Record<string, unknown>;\n\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\n/** Build the sorted access matrix for a normalized stack. */\nexport function buildAccessMatrix(stack: AnyRec): AccessMatrix {\n const entries: AccessMatrixEntry[] = [];\n if (!stack || typeof stack !== 'object') return { version: 1, entries };\n\n const owdByObject = new Map<string, string>();\n for (const obj of asArray(stack.objects)) {\n const name = typeof obj.name === 'string' ? obj.name : '';\n if (!name) continue;\n const owd = (obj.sharingModel ?? (obj.security as AnyRec | undefined)?.sharingModel) as string | undefined;\n if (typeof owd === 'string') owdByObject.set(name, owd);\n }\n\n for (const ps of asArray(stack.permissions)) {\n const psName = typeof ps.name === 'string' ? ps.name : '';\n if (!psName) continue;\n const objects = (ps.objects && typeof ps.objects === 'object' ? ps.objects : {}) as AnyRec;\n for (const [objName, rawPerm] of Object.entries(objects)) {\n const p = (rawPerm ?? {}) as AnyRec;\n const entry: AccessMatrixEntry = {\n permissionSet: psName,\n object: objName,\n create: p.allowCreate === true,\n read: p.allowRead === true || p.viewAllRecords === true || p.modifyAllRecords === true,\n edit: p.allowEdit === true || p.modifyAllRecords === true,\n delete: p.allowDelete === true || p.modifyAllRecords === true,\n viewAllRecords: p.viewAllRecords === true,\n modifyAllRecords: p.modifyAllRecords === true,\n };\n if (typeof p.readScope === 'string') entry.readScope = p.readScope;\n if (typeof p.writeScope === 'string') entry.writeScope = p.writeScope;\n const owd = owdByObject.get(objName);\n if (owd) entry.sharingModel = owd;\n entries.push(entry);\n }\n }\n\n entries.sort((a, b) =>\n a.permissionSet === b.permissionSet\n ? a.object.localeCompare(b.object)\n : a.permissionSet.localeCompare(b.permissionSet),\n );\n return { version: 1, entries };\n}\n\nconst BIT_LABELS: Array<[keyof AccessMatrixEntry, string]> = [\n ['create', 'create'],\n ['read', 'read'],\n ['edit', 'edit'],\n ['delete', 'delete'],\n ['viewAllRecords', 'View All Data'],\n ['modifyAllRecords', 'Modify All Data'],\n];\n\n/**\n * Semantic diff between two matrices — human-review lines, empty = identical.\n * Ordered: removals, additions, then per-entry bit/scope changes.\n */\nexport function diffAccessMatrix(before: AccessMatrix, after: AccessMatrix): string[] {\n const lines: string[] = [];\n const key = (e: AccessMatrixEntry) => `${e.permissionSet}\\u0000${e.object}`;\n const beforeMap = new Map((before?.entries ?? []).map((e) => [key(e), e]));\n const afterMap = new Map((after?.entries ?? []).map((e) => [key(e), e]));\n\n for (const [k, b] of beforeMap) {\n if (!afterMap.has(k)) {\n lines.push(`'${b.permissionSet}' loses ALL access to '${b.object}' (entry removed)`);\n }\n }\n for (const [k, a] of afterMap) {\n const b = beforeMap.get(k);\n if (!b) {\n const grants = BIT_LABELS.filter(([bit]) => a[bit] === true).map(([, label]) => label);\n lines.push(`'${a.permissionSet}' gains access to '${a.object}' (${grants.join(', ') || 'no bits set'})`);\n continue;\n }\n for (const [bit, label] of BIT_LABELS) {\n if (b[bit] !== a[bit]) {\n lines.push(`'${a.permissionSet}' ${a[bit] ? 'gains' : 'loses'} ${label} on '${a.object}'`);\n }\n }\n if ((b.readScope ?? 'own') !== (a.readScope ?? 'own')) {\n lines.push(`'${a.permissionSet}' read depth on '${a.object}': ${b.readScope ?? 'own'} → ${a.readScope ?? 'own'}`);\n }\n if ((b.writeScope ?? 'own') !== (a.writeScope ?? 'own')) {\n lines.push(`'${a.permissionSet}' write depth on '${a.object}': ${b.writeScope ?? 'own'} → ${a.writeScope ?? 'own'}`);\n }\n if ((b.sharingModel ?? '') !== (a.sharingModel ?? '')) {\n lines.push(`'${a.object}' record baseline (OWD): ${b.sharingModel ?? '(unset)'} → ${a.sharingModel ?? '(unset)'} (affects every principal)`);\n }\n }\n return lines;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0072 — reference resolvability] Translation-bundle reference integrity\n * and option-key validation (issue #3583, assessment R6).\n *\n * The i18n gate has always run in ONE direction: `computeI18nCoverage` asks\n * \"which keys does the metadata expect that no bundle carries?\" Nothing asks the\n * reverse — \"which keys does a bundle carry that no metadata claims?\" — even\n * though the spec already names the answer: `TranslationDiffStatus 'redundant'`\n * and `TranslationCoverageResult.redundantKeys` are declared and have no\n * producer.\n *\n * The HotCRM audit found that direction shipping broken metadata:\n *\n * - bundles keyed to fields the object never declares (`assigned_to`,\n * `budget`, `image_url`) — usually a rename that moved the field and left\n * the translation behind;\n * - select-option translations keyed by the option's DISPLAY LABEL instead of\n * its stored value, or by a near-miss of the value (`direct-mail` for\n * `direct_mail`, `planned` for `planning`).\n *\n * Both fail the same way: the resolver looks up the key it derives from the\n * metadata, finds nothing, and renders the untranslated source string. The app\n * looks *translated* — every other label on the screen resolves — so the hole is\n * invisible until a reader in that locale hits the one field or one picklist\n * value that stayed English.\n *\n * ── Severity ─────────────────────────────────────────────────────────────\n *\n * All findings are **warnings**. An orphan key is inert, not broken: it costs a\n * few bytes and one untranslated string, and nothing crashes. That is a weaker\n * failure than the dead references `validate-object-references` /\n * `validate-action-name-refs` report as errors, and the severity should say so\n * (ADR-0072 D1 — a linter that over-states is a linter authors stop reading).\n *\n * ── What this rule deliberately does NOT check ───────────────────────────\n *\n * - `messages`, `validationMessages`, `settings`, `settingsCommon` — keyed by\n * free-form message ids / namespaces owned by code and plugins, not by\n * stack metadata. There is no enumerable universe to resolve against, so a\n * rule here would be guessing.\n * - `metadataForms` — keyed by the platform's own metadata-type registry, not\n * by this stack. Owned by the platform packages; a stack translating them is\n * correct, not orphaned.\n * - leaf attribute names (`labl:` instead of `label:`) — Zod strips unknown\n * keys at parse, so they never reach a consumer with a value; that is a\n * schema-shape concern, not a reference.\n * - the object-first `AppTranslationBundle` (`o.<object>` …) — that shape is\n * the `translation` METADATA TYPE (records persisted through the metadata\n * store), not `stack.translations`, which is `TranslationBundle[]`\n * (locale → `TranslationData`). Its keys are simply not visited here: an\n * unrecognised top-level namespace is skipped, never reported.\n *\n * ── Cross-package objects ────────────────────────────────────────────────\n *\n * A stack legitimately translates objects it does not define — `sys_user`'s\n * labels are exactly the kind of thing an app localizes. Resolution follows the\n * §4 ladder of the assessment, with the field-level S3 rule intact:\n *\n * 1. own object → check its fields/views/actions/sections\n * 2. platform object in the registry → skip WHOLLY (we cannot see its\n * fields, so we cannot judge them)\n * 3. platform-prefixed, not in registry → warn on the object key only\n * 4. unresolved, unprefixed → warn on the object key only\n */\n\nimport { hasPlatformObjectPrefix, isPlatformProvidedObjectName } from '@objectstack/spec/system';\nimport { walkPageComponents } from './page-walk.js';\n\nexport const TRANSLATION_TARGET_UNKNOWN = 'translation-target-unknown';\nexport const TRANSLATION_OPTION_KEY_UNKNOWN = 'translation-option-key-unknown';\n\nexport type TranslationRefSeverity = 'warning';\n\nexport interface TranslationRefFinding {\n /** Always `warning` — an orphan translation key is inert, not broken. */\n severity: TranslationRefSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `locale \"zh-CN\" · object \"crm_lead\"`. */\n where: string;\n /** Config path, e.g. `translations[0][\"zh-CN\"].objects.crm_lead.fields.campaign`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\nfunction isRec(v: unknown): v is AnyRec {\n return !!v && typeof v === 'object' && !Array.isArray(v);\n}\n\n/** Coerce a collection (array or name-keyed map) to an array of records,\n * injecting `name` from the map key — mirrors the sibling authoring lints so\n * the rule works on both the parsed (array) and normalized (map) stack shapes. */\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v as AnyRec[];\n if (isRec(v)) return Object.entries(v).map(([name, def]) => ({ name, ...(isRec(def) ? def : {}) }));\n return [];\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\nfunction distance(a: string, b: string): number {\n const m = a.length;\n const n = b.length;\n if (m === 0) return n;\n if (n === 0) return m;\n let prev = Array.from({ length: n + 1 }, (_, j) => j);\n for (let i = 1; i <= m; i++) {\n const curr = [i, ...new Array<number>(n).fill(0)];\n for (let j = 1; j <= n; j++) {\n const cost = a[i - 1] === b[j - 1] ? 0 : 1;\n curr[j] = Math.min(curr[j - 1] + 1, prev[j] + 1, prev[j - 1] + cost);\n }\n prev = curr;\n }\n return prev[n];\n}\n\n/**\n * \"Did you mean?\" over the known names — Levenshtein-bounded, plus a namespace\n * pass the distance metric cannot see.\n *\n * A stack prefixes its object names (`todo_task`, `crm_lead`), and the orphan\n * key is routinely the bare noun the author had in mind (`task`). That is 5\n * edits from `todo_task` — far outside the typo bound, and exactly the case\n * where the suggestion is most useful — so a candidate that differs only by a\n * snake_case namespace segment is offered before falling back to edit distance.\n */\nfunction suggest(target: string, known: Iterable<string>): string {\n const names = [...known];\n const segmentMatch = names.find(\n (candidate) => candidate.endsWith(`_${target}`) || candidate.startsWith(`${target}_`),\n );\n if (segmentMatch) return ` Did you mean \"${segmentMatch}\"?`;\n\n let best: string | undefined;\n let bestScore = Infinity;\n for (const candidate of names) {\n const d = distance(target, candidate);\n if (d < bestScore) {\n bestScore = d;\n best = candidate;\n }\n }\n const limit = Math.max(2, Math.floor(target.length / 3));\n return best && bestScore <= limit ? ` Did you mean \"${best}\"?` : '';\n}\n\n/** At most `max` names, sorted, for the \"known values are …\" tail of a hint. */\nfunction listNames(names: Iterable<string>, max = 12): string {\n const all = [...names].sort();\n if (all.length === 0) return '';\n const shown = all.slice(0, max).join(', ');\n return all.length > max ? `${shown}, … (${all.length} total)` : shown;\n}\n\n/**\n * Audit/system fields every object carries implicitly. A bundle translating\n * them is authoring against a real field, so they must not read as orphans.\n * Mirrors `validate-page-field-bindings`' list.\n */\nconst SYSTEM_FIELDS: ReadonlySet<string> = new Set([\n 'id', '_id', 'name',\n 'created_at', 'created_by', 'updated_at', 'updated_by',\n 'owner_id', 'organization_id', 'tenant_id', 'user_id',\n 'is_deleted', 'deleted_at', 'space',\n]);\n\n/** Everything a bundle may legally name under one object. */\ninterface ObjectFacts {\n fields: Map<string, AnyRec>;\n views: Set<string>;\n actions: Map<string, AnyRec>;\n sections: Set<string>;\n}\n\ninterface Universe {\n objects: Map<string, ObjectFacts>;\n /** App name → every navigation item id declared by that app. */\n apps: Map<string, Set<string>>;\n dashboards: Map<string, { widgets: Set<string>; actions: Set<string> }>;\n /** Object-less actions — the ones `globalActions.*` may name. */\n globalActions: Map<string, AnyRec>;\n /** Action name → owning object, so a misfiled `globalActions` key can say where it belongs. */\n actionOwners: Map<string, string>;\n}\n\nfunction emptyFacts(): ObjectFacts {\n return { fields: new Map(), views: new Set(), actions: new Map(), sections: new Set() };\n}\n\n/**\n * Register everything ONE view record contributes: the `_views` names it makes\n * legal, and the `_sections` names its form views declare — each under the\n * object that container actually binds.\n *\n * Two things about the real shape make this more than \"read `view.name`\", and\n * both were learned from the HotCRM corpus (~18k lines of shipped metadata),\n * where a first pass reported ~40 correct keys as orphans:\n *\n * 1. A view record is a CONTAINER, not a view. The default list sits at\n * `list`; the named tabs at `listViews.<key>` and `formViews.<key>`, each\n * of which may also carry its own `name`. Both the map key and the inner\n * `name` are accepted — authors write either, and the key is what the\n * console renders the tab from.\n * 2. The object binding lives INSIDE the container (`list.data.object`), not\n * at the record root. A record-level lookup alone resolves to nothing on\n * the canonical shape, which silently drops the whole record — a rule that\n * then reports every view key the app ships.\n */\nfunction collectViewRecord(view: AnyRec, factsFor: (objectName: string) => ObjectFacts): void {\n const recordObject = viewObjectName(view);\n const bindingOf = (container: AnyRec): string | undefined =>\n viewObjectName(container) ?? recordObject;\n\n const addView = (objectName: string | undefined, name: string | undefined) => {\n if (objectName && name) factsFor(objectName).views.add(name);\n };\n\n const listBinding = isRec(view.list) ? bindingOf(view.list) : undefined;\n if (isRec(view.list)) addView(listBinding, strName(view.list.name));\n addView(recordObject ?? listBinding, strName(view.name));\n\n for (const key of ['listViews', 'formViews'] as const) {\n const container = view[key];\n if (!isRec(container)) continue;\n for (const [subKey, sub] of Object.entries(container)) {\n if (!isRec(sub)) continue;\n const binding = bindingOf(sub) ?? listBinding;\n addView(binding, subKey);\n addView(binding, strName(sub.name));\n\n // Form sections carry an OPTIONAL `name` that exists purely for the\n // `_sections` lookup (`ui/view.zod.ts`: \"Stable section identifier for\n // i18n lookup\"). A section without one cannot be translated at all, so\n // it contributes nothing here.\n if (binding) {\n for (const section of asArray(sub.sections)) {\n const sectionName = strName(section.name);\n if (sectionName) factsFor(binding).sections.add(sectionName);\n }\n }\n }\n }\n\n const sectionBinding = recordObject ?? listBinding;\n if (sectionBinding) {\n for (const section of asArray(view.sections)) {\n const sectionName = strName(section.name);\n if (sectionName) factsFor(sectionBinding).sections.add(sectionName);\n }\n }\n}\n\n/** The object a view (or one of its containers) binds to, across the shapes it is authored in. */\nfunction viewObjectName(view: AnyRec): string | undefined {\n return (\n strName(view.objectName) ??\n strName(view.object) ??\n (isRec(view.data) ? strName(view.data.object) : undefined)\n );\n}\n\n/**\n * Declared select options for a field, or `undefined` when the field declares\n * none at all. Handles the canonical `{value,label}[]` shape plus the two\n * legacy shapes the extractor also tolerates (bare `string[]`, and a\n * `value → label` record).\n */\nfunction readOptions(field: AnyRec): { values: Set<string>; byLabel: Map<string, string> } | undefined {\n const raw = field.options;\n const values = new Set<string>();\n const byLabel = new Map<string, string>();\n if (Array.isArray(raw)) {\n for (const opt of raw) {\n if (typeof opt === 'string') {\n values.add(opt);\n continue;\n }\n if (!isRec(opt)) continue;\n const value = strName(opt.value);\n if (!value) continue;\n values.add(value);\n const label = strName(opt.label);\n if (label) byLabel.set(label.toLowerCase(), value);\n }\n } else if (isRec(raw)) {\n for (const [value, label] of Object.entries(raw)) {\n values.add(value);\n if (typeof label === 'string' && label.length > 0) byLabel.set(label.toLowerCase(), value);\n }\n } else {\n return undefined;\n }\n return values.size > 0 ? { values, byLabel } : undefined;\n}\n\n/**\n * Collect every name a translation bundle may resolve against. Built once per\n * run: the same universe answers all bundles and all locales.\n */\nfunction buildUniverse(stack: AnyRec): Universe {\n const objects = new Map<string, ObjectFacts>();\n const factsFor = (name: string): ObjectFacts => {\n let facts = objects.get(name);\n if (!facts) {\n facts = emptyFacts();\n objects.set(name, facts);\n }\n return facts;\n };\n\n // ── Objects: fields, embedded actions/views, fieldGroups (the `_sections` anchor) ──\n for (const obj of asArray(stack.objects)) {\n const objectName = strName(obj.name);\n if (!objectName) continue;\n const facts = factsFor(objectName);\n\n for (const field of asArray(obj.fields)) {\n const fieldName = strName(field.name);\n if (fieldName) facts.fields.set(fieldName, field);\n }\n for (const action of asArray(obj.actions)) {\n const actionName = strName(action.name);\n if (actionName) facts.actions.set(actionName, action);\n }\n // An object can carry views directly, including the `objects[].listViews`\n // container the chart rule also walks. `{ ...view, object: objectName }`\n // pins the binding: an embedded view inherits its owner, and nothing here\n // depends on the container repeating it.\n for (const view of asArray(obj.views)) {\n collectViewRecord({ ...view, object: strName(view.object) ?? objectName }, factsFor);\n }\n collectViewRecord({ object: objectName, listViews: obj.listViews }, factsFor);\n // ADR-0085: `fieldGroups[].key` is the i18n anchor for `_sections`.\n for (const group of asArray(obj.fieldGroups)) {\n const key = strName(group.key) ?? strName(group.name);\n if (key) facts.sections.add(key);\n }\n }\n\n // ── Stack-level views: `_views` names + form-section names ──\n for (const view of asArray(stack.views)) {\n collectViewRecord(view, factsFor);\n }\n\n // ── Pages: `record:details` sections are the other `_sections` anchor ──\n const pages = asArray(stack.pages);\n for (let pi = 0; pi < pages.length; pi++) {\n for (const walked of walkPageComponents(pages[pi], `pages[${pi}]`)) {\n if (!walked.objectName) continue;\n const props = isRec(walked.component.properties) ? walked.component.properties : undefined;\n if (!props) continue;\n for (const section of asArray(props.sections)) {\n const sectionName = strName(section.name);\n if (sectionName) factsFor(walked.objectName).sections.add(sectionName);\n }\n }\n }\n\n // ── Actions: object-bound ones join their object; the rest are global ──\n const globalActions = new Map<string, AnyRec>();\n const actionOwners = new Map<string, string>();\n for (const action of asArray(stack.actions)) {\n const actionName = strName(action.name);\n if (!actionName) continue;\n const owner = strName(action.objectName) ?? strName(action.object);\n if (owner) {\n factsFor(owner).actions.set(actionName, action);\n actionOwners.set(actionName, owner);\n } else {\n globalActions.set(actionName, action);\n }\n }\n for (const [objectName, facts] of objects) {\n for (const actionName of facts.actions.keys()) {\n if (!actionOwners.has(actionName)) actionOwners.set(actionName, objectName);\n }\n }\n\n // ── Apps: navigation item ids (`apps.<app>.navigation.<id>.label`) ──\n const apps = new Map<string, Set<string>>();\n for (const app of asArray(stack.apps)) {\n const appName = strName(app.name);\n if (!appName) continue;\n const navIds = apps.get(appName) ?? new Set<string>();\n const walkNav = (items: unknown) => {\n for (const item of asArray(items)) {\n const id = strName(item.id);\n if (id) navIds.add(id);\n if (item.children) walkNav(item.children);\n }\n };\n walkNav(app.navigation);\n for (const area of asArray(app.areas)) {\n const areaId = strName(area.id);\n if (areaId) navIds.add(areaId);\n walkNav(area.navigation);\n }\n apps.set(appName, navIds);\n }\n\n // ── Dashboards: widget ids + header action urls ──\n const dashboards = new Map<string, { widgets: Set<string>; actions: Set<string> }>();\n for (const dash of asArray(stack.dashboards)) {\n const dashName = strName(dash.name);\n if (!dashName) continue;\n const widgets = new Set<string>();\n for (const widget of asArray(dash.widgets)) {\n const id = strName(widget.id) ?? strName(widget.name);\n if (id) widgets.add(id);\n }\n const actions = new Set<string>();\n const headerActions = [\n ...asArray(isRec(dash.header) ? dash.header.actions : undefined),\n ...asArray(dash.actions),\n ];\n for (const action of headerActions) {\n const key = strName(action.actionUrl) ?? strName(action.url) ?? strName(action.name);\n if (key) actions.add(key);\n }\n dashboards.set(dashName, { widgets, actions });\n }\n\n return { objects, apps, dashboards, globalActions, actionOwners };\n}\n\n/** Quote a locale for the config path — BCP-47 tags carry `-`. */\nfunction localePath(bundleIndex: number, locale: string): string {\n return /^[A-Za-z_$][A-Za-z0-9_$]*$/.test(locale)\n ? `translations[${bundleIndex}].${locale}`\n : `translations[${bundleIndex}][\"${locale}\"]`;\n}\n\n/**\n * Validate every reference a translation bundle makes against the metadata it\n * claims to translate. Returns findings (empty = clean).\n */\nexport function validateTranslationReferences(stack: AnyRec): TranslationRefFinding[] {\n const findings: TranslationRefFinding[] = [];\n if (!isRec(stack)) return findings;\n\n const bundles = Array.isArray(stack.translations) ? stack.translations : [];\n if (bundles.length === 0) return findings;\n\n const universe = buildUniverse(stack);\n\n const orphan = (where: string, path: string, message: string, hint: string) => {\n findings.push({ severity: 'warning', rule: TRANSLATION_TARGET_UNKNOWN, where, path, message, hint });\n };\n\n for (let bi = 0; bi < bundles.length; bi++) {\n const bundle = bundles[bi];\n if (!isRec(bundle)) continue;\n\n for (const [locale, rawData] of Object.entries(bundle)) {\n if (!isRec(rawData)) continue;\n const base = localePath(bi, locale);\n const inLocale = `locale \"${locale}\"`;\n\n // ── objects.<name>.… ──────────────────────────────────────────────\n for (const [objectName, rawNode] of Object.entries(asRecord(rawData.objects))) {\n if (!isRec(rawNode)) continue;\n const objPath = `${base}.objects.${objectName}`;\n const facts = universe.objects.get(objectName);\n\n if (!facts) {\n // Not this stack's object. Platform objects are translated by their\n // owning package but a stack may override them, so a registered\n // platform name is legitimate — and unreadable from here, which is\n // why the whole subtree is skipped rather than half-checked.\n if (isPlatformProvidedObjectName(objectName)) continue;\n orphan(\n `${inLocale} · object \"${objectName}\"`,\n objPath,\n hasPlatformObjectPrefix(objectName)\n ? `Translations are keyed to \"${objectName}\", which carries a platform namespace ` +\n `prefix but is registered by no platform package, official plugin, or cloud ` +\n `runtime object — and this stack does not define it either. Nothing resolves ` +\n `these keys.` + suggest(objectName, universe.objects.keys())\n : `Translations are keyed to \"${objectName}\", which no object in this stack ` +\n `defines. The resolver looks up keys derived from the metadata, so this whole ` +\n `subtree is dead weight — every label it carries renders untranslated.` +\n suggest(objectName, universe.objects.keys()),\n `Rename the key to the object it was written for, drop it, or ignore this if the ` +\n `object is contributed by another installed package.` +\n (universe.objects.size > 0 ? ` Defined objects: ${listNames(universe.objects.keys())}.` : ''),\n );\n continue;\n }\n\n // fields.<name>[.options.<value>]\n for (const [fieldName, rawField] of Object.entries(asRecord(rawNode.fields))) {\n const fieldPath = `${objPath}.fields.${fieldName}`;\n const field = facts.fields.get(fieldName);\n if (!field) {\n if (SYSTEM_FIELDS.has(fieldName)) continue;\n orphan(\n `${inLocale} · object \"${objectName}\" · field \"${fieldName}\"`,\n fieldPath,\n `Translations are keyed to field \"${fieldName}\", which object \"${objectName}\" ` +\n `does not declare. The label renders untranslated in this locale — and because ` +\n `every neighbouring field DOES resolve, the hole reads as a styling quirk ` +\n `rather than a missing translation.` + suggest(fieldName, facts.fields.keys()),\n `Point the key at a declared field, or drop it if the field was removed or renamed.` +\n (facts.fields.size > 0 ? ` Declared fields: ${listNames(facts.fields.keys())}.` : ''),\n );\n continue;\n }\n if (!isRec(rawField)) continue;\n checkOptionKeys(findings, {\n optionMap: rawField.options,\n field,\n fieldName,\n objectName,\n path: `${fieldPath}.options`,\n where: `${inLocale} · object \"${objectName}\" · field \"${fieldName}\"`,\n });\n }\n\n // _views.<name>\n for (const viewName of Object.keys(asRecord(rawNode._views))) {\n if (facts.views.has(viewName)) continue;\n orphan(\n `${inLocale} · object \"${objectName}\" · view \"${viewName}\"`,\n `${objPath}._views.${viewName}`,\n `Translations are keyed to view \"${viewName}\", which no view of object ` +\n `\"${objectName}\" declares. The view tab keeps its source-locale label.` +\n suggest(viewName, facts.views),\n `Match the key to the view's \\`name\\` (not its label), or drop it.` +\n (facts.views.size > 0 ? ` Declared views: ${listNames(facts.views)}.` : ''),\n );\n }\n\n // _sections.<key>\n for (const sectionName of Object.keys(asRecord(rawNode._sections))) {\n if (facts.sections.has(sectionName)) continue;\n orphan(\n `${inLocale} · object \"${objectName}\" · section \"${sectionName}\"`,\n `${objPath}._sections.${sectionName}`,\n `Translations are keyed to section \"${sectionName}\", which nothing on object ` +\n `\"${objectName}\" declares — no \\`fieldGroups[].key\\`, no named form-view section, ` +\n `no named \\`record:details\\` section. The section heading stays in the source locale.` +\n suggest(sectionName, facts.sections),\n `Sections are translatable only through a STABLE NAME: give the group/section a ` +\n `\\`key\\`/\\`name\\` and use it here, or drop the translation.` +\n (facts.sections.size > 0\n ? ` Declared sections: ${listNames(facts.sections)}.`\n : ` Object \"${objectName}\" declares no named section at all.`),\n );\n }\n\n // _actions.<name>[.params.<name>]\n for (const [actionName, rawAction] of Object.entries(asRecord(rawNode._actions))) {\n const actionPath = `${objPath}._actions.${actionName}`;\n const action = facts.actions.get(actionName);\n if (!action) {\n orphan(\n `${inLocale} · object \"${objectName}\" · action \"${actionName}\"`,\n actionPath,\n `Translations are keyed to action \"${actionName}\", which is defined by neither ` +\n `object \"${objectName}\"'s \\`actions\\` nor a \\`stack.actions\\` entry bound to it. ` +\n `The button keeps its source-locale label.` + suggest(actionName, facts.actions.keys()),\n `Match the key to a defined action name, move it under the object that owns the ` +\n `action, or drop it.` +\n (facts.actions.size > 0 ? ` Actions on this object: ${listNames(facts.actions.keys())}.` : ''),\n );\n continue;\n }\n checkActionParams(findings, {\n rawAction,\n action,\n path: actionPath,\n where: `${inLocale} · object \"${objectName}\" · action \"${actionName}\"`,\n subject: `action \"${actionName}\"`,\n });\n }\n }\n\n // ── globalActions.<name> ──────────────────────────────────────────\n for (const [actionName, rawAction] of Object.entries(asRecord(rawData.globalActions))) {\n const actionPath = `${base}.globalActions.${actionName}`;\n const action = universe.globalActions.get(actionName);\n if (!action) {\n const owner = universe.actionOwners.get(actionName);\n orphan(\n `${inLocale} · global action \"${actionName}\"`,\n actionPath,\n owner\n ? `Action \"${actionName}\" is bound to object \"${owner}\", so the resolver looks it ` +\n `up under \\`objects.${owner}._actions.${actionName}\\` — never under ` +\n `\\`globalActions\\`, which is only consulted for object-less actions. This key ` +\n `is never read.`\n : `Translations are keyed to global action \"${actionName}\", which no object-less ` +\n `action in this stack defines. The button keeps its source-locale label.` +\n suggest(actionName, universe.globalActions.keys()),\n owner\n ? `Move these keys under \\`objects.${owner}._actions.${actionName}\\`.`\n : `Match the key to an object-less action's name, or drop it.` +\n (universe.globalActions.size > 0\n ? ` Object-less actions: ${listNames(universe.globalActions.keys())}.`\n : ''),\n );\n continue;\n }\n checkActionParams(findings, {\n rawAction,\n action,\n path: actionPath,\n where: `${inLocale} · global action \"${actionName}\"`,\n subject: `action \"${actionName}\"`,\n });\n }\n\n // ── apps.<name>[.navigation.<id>] ─────────────────────────────────\n for (const [appName, rawApp] of Object.entries(asRecord(rawData.apps))) {\n const appPath = `${base}.apps.${appName}`;\n const navIds = universe.apps.get(appName);\n if (!navIds) {\n orphan(\n `${inLocale} · app \"${appName}\"`,\n appPath,\n `Translations are keyed to app \"${appName}\", which this stack does not define. ` +\n `The app launcher shows the source-locale label.` + suggest(appName, universe.apps.keys()),\n `Match the key to an app's \\`name\\`, or drop it.` +\n (universe.apps.size > 0 ? ` Defined apps: ${listNames(universe.apps.keys())}.` : ''),\n );\n continue;\n }\n if (!isRec(rawApp)) continue;\n for (const navId of Object.keys(asRecord(rawApp.navigation))) {\n if (navIds.has(navId)) continue;\n orphan(\n `${inLocale} · app \"${appName}\" · navigation \"${navId}\"`,\n `${appPath}.navigation.${navId}`,\n `Translations are keyed to navigation item \"${navId}\", which app \"${appName}\" ` +\n `does not declare. The menu entry keeps its source-locale label.` +\n suggest(navId, navIds),\n `Match the key to the navigation item's \\`id\\`, or drop it.` +\n (navIds.size > 0 ? ` Declared navigation ids: ${listNames(navIds)}.` : ''),\n );\n }\n }\n\n // ── dashboards.<name>[.widgets.<id> | .actions.<url>] ─────────────\n for (const [dashName, rawDash] of Object.entries(asRecord(rawData.dashboards))) {\n const dashPath = `${base}.dashboards.${dashName}`;\n const dash = universe.dashboards.get(dashName);\n if (!dash) {\n orphan(\n `${inLocale} · dashboard \"${dashName}\"`,\n dashPath,\n `Translations are keyed to dashboard \"${dashName}\", which this stack does not ` +\n `define. The dashboard title stays in the source locale.` +\n suggest(dashName, universe.dashboards.keys()),\n `Match the key to a dashboard's \\`name\\`, or drop it.` +\n (universe.dashboards.size > 0 ? ` Defined dashboards: ${listNames(universe.dashboards.keys())}.` : ''),\n );\n continue;\n }\n if (!isRec(rawDash)) continue;\n for (const widgetId of Object.keys(asRecord(rawDash.widgets))) {\n if (dash.widgets.has(widgetId)) continue;\n orphan(\n `${inLocale} · dashboard \"${dashName}\" · widget \"${widgetId}\"`,\n `${dashPath}.widgets.${widgetId}`,\n `Translations are keyed to widget \"${widgetId}\", which dashboard \"${dashName}\" ` +\n `does not declare. The widget title stays in the source locale.` +\n suggest(widgetId, dash.widgets),\n `Match the key to the widget's \\`id\\`, or drop it.` +\n (dash.widgets.size > 0 ? ` Declared widget ids: ${listNames(dash.widgets)}.` : ''),\n );\n }\n for (const actionKey of Object.keys(asRecord(rawDash.actions))) {\n if (dash.actions.has(actionKey)) continue;\n orphan(\n `${inLocale} · dashboard \"${dashName}\" · action \"${actionKey}\"`,\n `${dashPath}.actions.${actionKey}`,\n `Translations are keyed to header action \"${actionKey}\", which dashboard ` +\n `\"${dashName}\" does not declare. The button keeps its source-locale label.` +\n suggest(actionKey, dash.actions),\n `Header-action translations are keyed by the action's \\`actionUrl\\`, not its label.` +\n (dash.actions.size > 0 ? ` Declared header actions: ${listNames(dash.actions)}.` : ''),\n );\n }\n }\n }\n }\n\n return findings;\n}\n\n/** `v` as a record of sub-nodes, or an empty record when absent/malformed. */\nfunction asRecord(v: unknown): Record<string, unknown> {\n return isRec(v) ? v : {};\n}\n\n/**\n * Option translations are keyed by the option's STORED VALUE. Keying them by\n * the display label — or by a near-miss of the value — is the second half of\n * issue #3583's option-key class: the map parses, ships, and never resolves.\n */\nfunction checkOptionKeys(\n findings: TranslationRefFinding[],\n ctx: {\n optionMap: unknown;\n field: AnyRec;\n fieldName: string;\n objectName: string;\n path: string;\n where: string;\n },\n): void {\n const optionKeys = Object.keys(asRecord(ctx.optionMap));\n if (optionKeys.length === 0) return;\n\n const declared = readOptions(ctx.field);\n if (!declared) {\n findings.push({\n severity: 'warning',\n rule: TRANSLATION_OPTION_KEY_UNKNOWN,\n where: ctx.where,\n path: ctx.path,\n message:\n `Option translations are keyed under field \"${ctx.fieldName}\" of object ` +\n `\"${ctx.objectName}\", which declares no \\`options\\` at all (field type ` +\n `\"${strName(ctx.field.type) ?? 'unknown'}\"). Nothing reads this map.`,\n hint:\n `Declare the options on the field, move the translations to the field that owns ` +\n `them, or drop them.`,\n });\n return;\n }\n\n for (const key of optionKeys) {\n if (declared.values.has(key)) continue;\n const byLabel = declared.byLabel.get(key.toLowerCase());\n findings.push({\n severity: 'warning',\n rule: TRANSLATION_OPTION_KEY_UNKNOWN,\n where: ctx.where,\n path: `${ctx.path}.${key}`,\n message: byLabel\n ? `Option translation is keyed by the DISPLAY LABEL \"${key}\" instead of the stored ` +\n `value \"${byLabel}\". The resolver looks the option up by value, so this entry is ` +\n `never found and the option renders with its source-locale label.`\n : `Option translation is keyed by \"${key}\", which is not one of the values declared ` +\n `by field \"${ctx.objectName}.${ctx.fieldName}\". The option renders untranslated.` +\n suggest(key, declared.values),\n hint: byLabel\n ? `Rename the key to \"${byLabel}\".`\n : `Option keys are the stored \\`value\\`, not the label and not a variant spelling ` +\n `(\\`direct_mail\\`, not \\`direct-mail\\`). Declared values: ${listNames(declared.values)}.`,\n });\n }\n}\n\n/** Action-parameter translations are keyed by the param's `name`. */\nfunction checkActionParams(\n findings: TranslationRefFinding[],\n ctx: { rawAction: unknown; action: AnyRec; path: string; where: string; subject: string },\n): void {\n const rawParams = Object.keys(asRecord(isRec(ctx.rawAction) ? ctx.rawAction.params : undefined));\n if (rawParams.length === 0) return;\n\n const declared = new Set<string>();\n for (const param of asArray(ctx.action.params)) {\n const name = strName(param.name) ?? strName(param.field);\n if (name) declared.add(name);\n }\n\n for (const paramName of rawParams) {\n if (declared.has(paramName)) continue;\n findings.push({\n severity: 'warning',\n rule: TRANSLATION_TARGET_UNKNOWN,\n where: `${ctx.where} · param \"${paramName}\"`,\n path: `${ctx.path}.params.${paramName}`,\n message:\n `Translations are keyed to parameter \"${paramName}\", which ${ctx.subject} does not ` +\n `declare. The parameter's label and help text render untranslated in the action dialog.` +\n suggest(paramName, declared),\n hint:\n `Match the key to a declared param \\`name\\`, or drop it.` +\n (declared.size > 0 ? ` Declared params: ${listNames(declared)}.` : ''),\n });\n }\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0064 §3] Skill ↔ agent surface affinity (issue #3820).\n *\n * An agent binds a product surface (`'ask'` | `'build'`, ADR-0063 §1) and a\n * skill declares which surface it belongs to (`'ask'` | `'build'` | `'both'`,\n * ADR-0063 §3). A skill may only attach to an agent whose surface it matches —\n * `'both'` attaches to either. The runtime treats a violation as a FAST LOAD\n * ERROR: `resolveActiveSkills()` throws on the first incompatible binding, so\n * an agent shipping one mismatched skill reference fails at **chat time** with\n * a 500 — after parse, after validate, after deploy.\n *\n * Both sides of the check are declared in the same stack, so the contradiction\n * is statically provable and this rule carries severity **error** with zero\n * false positives by construction. Both sides default to `'ask'` when the\n * `surface` field is absent (mirroring the runtime's defaults), so the rule is\n * safe on the raw/normalized config the `lint` path carries as well as the\n * schema-parsed stack.\n *\n * Scope note: this rule deliberately does NOT check that `agent.skills[]`\n * names resolve at all. Kernel skills (`schema_reader`, the `ask`/`build`\n * bundles) are runtime-registered and statically invisible, and whether\n * app-stack tool/skill namespaces get a platform-name registry is an open\n * decision (#3820 D0/D2) — resolving names against `stack.skills` alone would\n * flag every kernel-skill reference. An unresolved name is therefore skipped\n * here; only a reference that resolves in-stack AND contradicts the affinity\n * contract is reported.\n */\n\nexport const AI_SKILL_SURFACE_MISMATCH = 'ai-skill-surface-mismatch';\n\nexport type AiSurfaceAffinitySeverity = 'error' | 'warning';\n\nexport interface AiSurfaceAffinityFinding {\n /** Always `error` — the runtime throws on this binding at chat time. */\n severity: AiSurfaceAffinitySeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `agent \"sales_copilot\" · skills`. */\n where: string;\n /** Config path, e.g. `agents[0].skills[2]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v.filter((x): x is AnyRec => !!x && typeof x === 'object');\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\n/** The runtime defaults an absent `surface` to `'ask'` on both sides. */\nfunction surfaceOf(v: unknown): string {\n return typeof v === 'string' && v.length > 0 ? v : 'ask';\n}\n\n/**\n * Validate every in-stack agent→skill binding against the ADR-0064 §3 surface\n * affinity contract. Returns findings (empty = clean).\n */\nexport function validateAiSurfaceAffinity(stack: AnyRec): AiSurfaceAffinityFinding[] {\n const findings: AiSurfaceAffinityFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const skillsByName = new Map<string, AnyRec>();\n for (const skill of asArray(stack.skills)) {\n const n = strName(skill.name);\n if (n) skillsByName.set(n, skill);\n }\n\n const agents = asArray(stack.agents);\n for (let ai = 0; ai < agents.length; ai++) {\n const agent = agents[ai];\n const agentName = strName(agent.name) ?? `#${ai}`;\n const agentSurface = surfaceOf(agent.surface);\n const skillRefs = Array.isArray(agent.skills) ? agent.skills : [];\n\n for (let si = 0; si < skillRefs.length; si++) {\n const ref = strName(skillRefs[si]);\n if (!ref) continue;\n const skill = skillsByName.get(ref);\n // Unresolved in-stack → runtime-registered kernel skill or another\n // package's — out of this rule's scope (see header; #3820 D0/D2).\n if (!skill) continue;\n\n const skillSurface = surfaceOf(skill.surface);\n if (skillSurface === 'both' || skillSurface === agentSurface) continue;\n\n findings.push({\n severity: 'error',\n rule: AI_SKILL_SURFACE_MISMATCH,\n where: `agent \"${agentName}\" · skills`,\n path: `agents[${ai}].skills[${si}]`,\n message:\n `Agent \"${agentName}\" (surface: '${agentSurface}') references skill \"${ref}\" ` +\n `(surface: '${skillSurface}') — incompatible affinity (ADR-0064 §3). The runtime ` +\n `refuses this binding with a load error, so chatting with this agent fails at ` +\n `request time even though the stack parses and validates cleanly.`,\n hint:\n `A skill may only attach to an agent whose surface it matches. Move \"${ref}\" to a ` +\n `'${skillSurface}'-surface agent, change its \\`surface\\` to '${agentSurface}', or — ` +\n `only if it is a genuinely shared, read-only capability — declare \\`surface: 'both'\\`.`,\n });\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0109 / issue #3820 R7] `skill.tools[]` reference integrity — the tool\n * branch of the AI reference rules.\n *\n * Under ADR-0109's authoring model the DEFAULT third-party path declares no\n * tool records at all: a skill names either a platform-registered tool or an\n * auto-materialised action tool. A `skill.tools[]` entry therefore resolves\n * against, in order:\n *\n * 1. the stack's own `stack.tools[]` names (the optional refinement layer);\n * 2. `PLATFORM_PROVIDED_TOOL_NAMES` — the curated registry of tools the\n * cloud AI runtime registers at boot (spec owns the list; the owning\n * cloud packages carry the conformance tests);\n * 3. the materialised `action_<name>` family — one tool per declarative\n * action (`stack.actions` ∪ every object's `actions`), the mechanism the\n * built-in `actions_executor` subscribes to with `action_*`.\n *\n * Trailing-wildcard entries (`action_*`, `foo_*`) resolve when ANY member of\n * that universe matches the prefix.\n *\n * Severity is **warning** (ADR-0078 advisory-first ratchet), not error,\n * because the universe has a known blind spot: a runtime plugin outside the\n * registry can legitimately register tools no static analysis can see, and\n * the runtime deliberately tolerates unresolved names (skills may be authored\n * before their tools exist — `skill-registry.ts`). What the warning buys: the\n * HotCRM failure — 10 fictional tools across 6 skills, every one shipping\n * through `validate`/`lint` clean and surfacing as a copilot that claims\n * abilities it does not have — now surfaces at authoring time. On that same\n * corpus the resolution ladder above yields exactly 10 findings and 0 false\n * positives (6 references resolve via the registry).\n */\n\nimport { PLATFORM_PROVIDED_TOOL_NAMES, PLATFORM_TOOL_FAMILY_PREFIXES } from '@objectstack/spec/system';\n\nexport const AI_SKILL_TOOL_UNRESOLVED = 'ai-skill-tool-unresolved';\n\nexport type AiToolRefSeverity = 'error' | 'warning';\n\nexport interface AiToolRefFinding {\n /** Always `warning` — see the header for why this rule starts advisory. */\n severity: AiToolRefSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `skill \"revenue_forecasting\" · tools`. */\n where: string;\n /** Config path, e.g. `skills[3].tools[1]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v.filter((x): x is AnyRec => !!x && typeof x === 'object');\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\nfunction distance(a: string, b: string): number {\n const m = a.length;\n const n = b.length;\n if (m === 0) return n;\n if (n === 0) return m;\n let prev = Array.from({ length: n + 1 }, (_, j) => j);\n for (let i = 1; i <= m; i++) {\n const curr = [i, ...new Array<number>(n).fill(0)];\n for (let j = 1; j <= n; j++) {\n const cost = a[i - 1] === b[j - 1] ? 0 : 1;\n curr[j] = Math.min(curr[j - 1] + 1, prev[j] + 1, prev[j - 1] + cost);\n }\n prev = curr;\n }\n return prev[n];\n}\n\nfunction suggest(target: string, known: Set<string>): string {\n // The high-frequency near-miss first: naming the raw ACTION where the\n // materialised TOOL (`action_<name>`) is meant. Edit distance cannot catch\n // it (the prefix alone is 7 edits), and it is exactly the mistake the\n // ADR-0109 default path invites from authors who know their action names.\n for (const prefix of PLATFORM_TOOL_FAMILY_PREFIXES) {\n if (known.has(`${prefix}${target}`)) return ` Did you mean \"${prefix}${target}\"?`;\n }\n\n let best: string | undefined;\n let bestScore = Infinity;\n for (const candidate of known) {\n const d = distance(target, candidate);\n if (d < bestScore) {\n bestScore = d;\n best = candidate;\n }\n }\n const limit = Math.max(2, Math.floor(target.length / 3));\n return best && bestScore <= limit ? ` Did you mean \"${best}\"?` : '';\n}\n\n/**\n * Action types with a headless invocation path. `url`/`modal`/`form` are\n * Studio-only UI types — the runtime never materialises a tool for them\n * because there is nothing to call without the UI collecting input first.\n */\nconst HEADLESS_ACTION_TYPES = new Set(['script', 'api', 'flow']);\n\n/**\n * Would the runtime materialise an `action_<name>` tool for this action?\n *\n * Mirrors the STATIC half of the runtime's `actionSkipReason` (ADR-0011\n * opt-in + the headless-path checks). The runtime additionally checks\n * service wiring (is the automation service up?), which is not knowable at\n * authoring time and is deliberately not modelled here — this predicate is\n * about \"did the author wire it\", not \"is the server configured\".\n *\n * Getting this wrong in the permissive direction is worse than having no\n * rule: an author who names `action_foo` for a `type:'modal'` action would\n * be told the reference resolves, and would ship a skill whose instructions\n * promise a capability the agent can never call — the exact failure this\n * rule exists to catch.\n */\nfunction materialisesAsTool(action: AnyRec): boolean {\n const ai = action.ai;\n if (!ai || typeof ai !== 'object') return false;\n const aiRec = ai as AnyRec;\n // ADR-0011 — opt-in, and `description` is the LLM-facing contract the\n // spec requires whenever `exposed` is true.\n if (aiRec.exposed !== true) return false;\n if (!strName(aiRec.description)) return false;\n\n const type = strName(action.type);\n if (!type || !HEADLESS_ACTION_TYPES.has(type)) return false;\n // `script` can carry either a named handler or an inline body; `api` and\n // `flow` are dispatched by target.\n if (type === 'script') return Boolean(action.target || action.body);\n return Boolean(action.target);\n}\n\n/**\n * The full set of tool names resolvable from this stack: declared tool\n * records ∪ the platform registry ∪ the materialised action family.\n */\nfunction collectToolUniverse(stack: AnyRec): Set<string> {\n const universe = new Set<string>(PLATFORM_PROVIDED_TOOL_NAMES);\n\n for (const tool of asArray(stack.tools)) {\n const n = strName(tool.name);\n if (n) universe.add(n);\n }\n\n const addActionFamily = (actions: unknown) => {\n for (const action of asArray(actions)) {\n const n = strName(action.name);\n if (n && materialisesAsTool(action)) universe.add(`action_${n}`);\n }\n };\n addActionFamily(stack.actions);\n for (const obj of asArray(stack.objects)) {\n addActionFamily(obj.actions);\n }\n\n return universe;\n}\n\n/**\n * Actions that exist but are NOT AI-exposed, for the near-miss hint: naming\n * `action_foo` when `foo` exists but never materialises is a different\n * mistake from naming something fictional, and deserves a different fix.\n */\nfunction collectUnexposedActionNames(stack: AnyRec): Set<string> {\n const names = new Set<string>();\n const scan = (actions: unknown) => {\n for (const action of asArray(actions)) {\n const n = strName(action.name);\n if (n && !materialisesAsTool(action)) names.add(n);\n }\n };\n scan(stack.actions);\n for (const obj of asArray(stack.objects)) scan(obj.actions);\n return names;\n}\n\n/**\n * Validate every `skill.tools[]` reference in a stack. Returns findings\n * (empty = clean).\n */\nexport function validateAiToolReferences(stack: AnyRec): AiToolRefFinding[] {\n const findings: AiToolRefFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const universe = collectToolUniverse(stack);\n const unexposedActions = collectUnexposedActionNames(stack);\n\n const resolves = (ref: string): boolean => {\n if (ref.endsWith('*')) {\n const prefix = ref.slice(0, -1);\n for (const name of universe) {\n if (name.startsWith(prefix)) return true;\n }\n return false;\n }\n return universe.has(ref);\n };\n\n const skills = asArray(stack.skills);\n for (let si = 0; si < skills.length; si++) {\n const skill = skills[si];\n const skillName = strName(skill.name) ?? `#${si}`;\n const refs = Array.isArray(skill.tools) ? skill.tools : [];\n\n for (let ti = 0; ti < refs.length; ti++) {\n const ref = strName(refs[ti]);\n if (!ref || resolves(ref)) continue;\n\n const isPattern = ref.endsWith('*');\n // The distinct, high-frequency case: the action EXISTS but never\n // materialises. \"Fictional name\" and \"real action that isn't exposed\"\n // need different fixes, so they get different messages.\n const unexposed =\n !isPattern && ref.startsWith('action_') && unexposedActions.has(ref.slice('action_'.length))\n ? ref.slice('action_'.length)\n : undefined;\n\n findings.push({\n severity: 'warning',\n rule: AI_SKILL_TOOL_UNRESOLVED,\n where: `skill \"${skillName}\" · tools`,\n path: `skills[${si}].tools[${ti}]`,\n message: isPattern\n ? `Skill \"${skillName}\" subscribes to tool family \"${ref}\", which matches nothing this ` +\n `stack can resolve (no declared tool, no platform tool, and no AI-exposed declarative ` +\n `action materialises into it). The subscription contributes zero tools at runtime.`\n : unexposed\n ? `Skill \"${skillName}\" references tool \"${ref}\", but the action \"${unexposed}\" does ` +\n `not become an AI tool: the runtime materialises \\`action_<name>\\` only for an ` +\n `action that opts in with \\`ai.exposed: true\\` + \\`ai.description\\` (ADR-0011) AND ` +\n `has a headless path (type \\`script\\`/\\`api\\`/\\`flow\\` with a target or body — ` +\n `\\`url\\`/\\`modal\\`/\\`form\\` are UI-only). The reference is dropped at runtime, so ` +\n `the skill promises a capability the agent cannot call.`\n : `Skill \"${skillName}\" references tool \"${ref}\", which resolves to nothing this stack ` +\n `can see: not a \\`stack.tools\\` record, not a platform-registered tool, and not a ` +\n `materialised action tool (\\`action_<name>\\`). The runtime silently drops the ` +\n `reference, so the skill's instructions claim a capability the agent does not have — ` +\n `the assistant will improvise or fail when asked to use it.` +\n suggest(ref, universe),\n hint: unexposed\n ? `Either opt \"${unexposed}\" in — set \\`ai: { exposed: true, description: '…' }\\` (≥40 ` +\n `chars, LLM-facing) and give it a headless type — or drop the reference and have the ` +\n `skill's instructions recommend the UI action instead. A \\`modal\\`/\\`form\\`/\\`url\\` ` +\n `action stays human-driven by design; that is a legitimate answer, not a gap.`\n : `Back \"${ref}\" with a real executable: declare a declarative action (or flow), opt it ` +\n `in with \\`ai.exposed: true\\` + \\`ai.description\\`, and reference its materialised ` +\n `tool (\\`action_<name>\\` — the ADR-0109 default path, no tool record needed); or ` +\n `reference a platform tool by its registered name; or remove the reference and the ` +\n `instructions that mention it. Ignore this only if a runtime plugin outside the ` +\n `platform registry provides \"${ref}\". Family prefixes materialised by the runtime: ` +\n `${PLATFORM_TOOL_FAMILY_PREFIXES.join(', ')}.`,\n });\n }\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * [ADR-0063 §2] `stack.agents` is a platform-internal slot (issue #3820).\n *\n * ADR-0063 §2 withdrew tenant/app-package custom agents: the kernel ships\n * exactly two agents (`ask`, `build`), the surface the user is in binds one,\n * and third parties extend the platform by authoring **skills**, never\n * `*.agent.ts`. The `agent` metadata type carries the decision\n * (`allowRuntimeCreate: false, allowOrgOverride: false`), and the runtime\n * enforces it on both paths — `listAgents()` filters non-platform records out\n * of the catalog, and `loadAgent()` refuses them outright (cloud#904), so a\n * stack-authored agent 404s on chat and cannot be pinned via\n * `app.defaultAgent`.\n *\n * What was missing is the AUTHORING-time signal. `defineStack` still accepts\n * an `agents` array, so an app package could declare agents that parse,\n * validate, and build into the artifact — and then do nothing at runtime.\n * HotCRM shipped two of them for months. That is the ADR-0078 shape this rule\n * closes: loud at the producer, tolerant at the consumer (Prime Directive\n * #12).\n *\n * Severity is **warning**, not error, for one reason: the platform's own\n * packages legitimately author agent records, and this rule cannot tell a\n * platform package from an app package by reading the stack alone. A warning\n * that names the runtime consequence is honest for both readers; the runtime\n * is what actually gates. Deliberately NOT a Zod refine — an existing stack\n * must keep parsing (ADR-0078 non-goal #1).\n */\n\nexport const AGENT_AUTHORING_WITHDRAWN = 'agent-authoring-withdrawn';\n\nexport type AiAgentAuthoringSeverity = 'error' | 'warning';\n\nexport interface AiAgentAuthoringFinding {\n /** Always `warning` — the runtime is the gate; this is the authoring-time signal. */\n severity: AiAgentAuthoringSeverity;\n /** Diagnostic rule id. */\n rule: string;\n /** Human-readable location, e.g. `agent \"sales_copilot\"`. */\n where: string;\n /** Config path, e.g. `agents[0]`. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\ntype AnyRec = Record<string, unknown>;\n\nfunction asArray(v: unknown): AnyRec[] {\n if (Array.isArray(v)) return v.filter((x): x is AnyRec => !!x && typeof x === 'object');\n if (v && typeof v === 'object') {\n return Object.entries(v as AnyRec).map(([name, def]) => ({ name, ...(def as AnyRec) }));\n }\n return [];\n}\n\nfunction strName(v: unknown): string | undefined {\n return typeof v === 'string' && v.length > 0 ? v : undefined;\n}\n\n/**\n * The two platform agent ids. A stack that re-declares one of these is doing\n * something different from inventing a custom persona (it is shadowing a\n * platform record), so it gets its own wording.\n */\nconst PLATFORM_AGENT_NAMES = new Set(['ask', 'build', 'data_chat', 'metadata_assistant']);\n\n/**\n * Flag every agent declared in a stack. Returns findings (empty = clean,\n * which is what every app package should be).\n */\nexport function validateAiAgentAuthoring(stack: AnyRec): AiAgentAuthoringFinding[] {\n const findings: AiAgentAuthoringFinding[] = [];\n if (!stack || typeof stack !== 'object') return findings;\n\n const agents = asArray(stack.agents);\n for (let ai = 0; ai < agents.length; ai++) {\n const agent = agents[ai];\n const name = strName(agent.name) ?? `#${ai}`;\n const isPlatformName = PLATFORM_AGENT_NAMES.has(name);\n const skillCount = Array.isArray(agent.skills) ? agent.skills.length : 0;\n\n findings.push({\n severity: 'warning',\n rule: AGENT_AUTHORING_WITHDRAWN,\n where: `agent \"${name}\"`,\n path: `agents[${ai}]`,\n message: isPlatformName\n ? `This stack declares an agent named \"${name}\", which is a PLATFORM agent id. The ` +\n `runtime serves its own record for that name and ignores this one — the declaration ` +\n `has no effect and will drift from the platform's definition.`\n : `This stack declares the agent \"${name}\", but tenant/app-package agents were withdrawn ` +\n `(ADR-0063 §2): the kernel ships exactly two agents (\\`ask\\`, \\`build\\`) and the surface ` +\n `the user is in binds one. The runtime filters this record out of the agent catalog and ` +\n `refuses to load it, so it never runs — it parses, validates, and ships as inert ` +\n `metadata.`,\n hint: isPlatformName\n ? `Remove the declaration; the platform owns \"${name}\". Extend it with skills instead.`\n : `Delete the agent and express its capability as skills. Everything an agent carried ` +\n `that a skill does not is persona text: move the useful parts of \\`instructions\\` into ` +\n `the skills' own instructions.` +\n (skillCount > 0\n ? ` The ${skillCount} skill${skillCount === 1 ? '' : 's'} this agent references ` +\n `already carry the capability — they attach to the platform agent by \\`surface\\` ` +\n `affinity, so nothing is lost by dropping the persona.`\n : ``),\n });\n }\n\n return findings;\n}\n","// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.\n\n/**\n * The reference-integrity suite — one entry point for the rules that answer\n * \"does this name resolve to anything?\" (issue #3583, assessment §5 D5).\n *\n * ## Why this exists\n *\n * These rules were wired **by hand** into each CLI entry point that runs them.\n * `os validate`, `os lint` and `os compile` each grew their own import list and\n * their own call site, so landing a rule meant remembering three places — and\n * the assessment's §2.2 already named the resulting drift as the enemy: the\n * same stack, checked by a different rule subset depending on which command\n * the author happened to run.\n *\n * The suite makes the next rule's wiring a ONE-LINE edit here, and makes the\n * question \"which rules run on this path?\" answerable by reading one list.\n *\n * ## What belongs in it\n *\n * A rule belongs here when it resolves a NAME written in metadata against the\n * things a stack actually declares — objects, actions, fields, measures,\n * permissions, translation keys. That is the family the HotCRM audit found\n * shipping broken: every instance parsed, validated, and failed silently at\n * runtime because nothing checked that the name pointed at anything.\n *\n * `validateFlowTemplatePaths` is a member for exactly that reason: a\n * `{record.<field>}` token is a field name written in metadata, resolved\n * against the bound object's declared fields. It was wired by hand into\n * `os validate` alone — the drift this suite exists to end — so `os lint` and\n * `os compile` accepted a flow the runtime refuses. Its findings carry BOTH\n * severities (see that module: a filter-position miss gates, every other\n * position advises), which is why the suite's contract is severity-agnostic.\n *\n * Rules that check SHAPE rather than reference (view containers, responsive\n * styles, seed replay safety, seed state machines, seed/security posture) stay\n * out — they answer a different question and have their own call sites.\n *\n * ## Known remaining asymmetry\n *\n * `os doctor` runs only `validateWidgetBindings` and is NOT converted here: it\n * is an environment health check (node version, config presence, circular\n * lookups), not an authoring gate, so adopting the suite there is a product\n * decision about what `doctor` is for — not a wiring cleanup. It is named here\n * so the gap stays visible instead of being rediscovered.\n */\n\nimport { validateObjectReferences } from './validate-object-references.js';\nimport { validateActionNameRefs } from './validate-action-name-refs.js';\nimport { validatePageFieldBindings } from './validate-page-field-bindings.js';\nimport { validateChartBindings } from './validate-chart-bindings.js';\nimport { validateNavAccess } from './validate-nav-access.js';\nimport { validateTranslationReferences } from './validate-translation-references.js';\nimport { validateFlowTemplatePaths } from './validate-flow-template-paths.js';\nimport { validateAiSurfaceAffinity } from './validate-ai-surface-affinity.js';\nimport { validateAiToolReferences } from './validate-ai-tool-references.js';\nimport { validateAiAgentAuthoring } from './validate-ai-agent-authoring.js';\n\nexport type ReferenceIntegritySeverity = 'error' | 'warning';\n\n/**\n * The shape every rule in the suite already returns. Declared here so callers\n * can hold one type instead of a six-way union.\n */\nexport interface ReferenceIntegrityFinding {\n /** `error` = the reference is dead; `warning` = it may resolve elsewhere, or the miss is inert. */\n severity: ReferenceIntegritySeverity;\n /** Diagnostic rule id (stable; used by allowlists and docs). */\n rule: string;\n /** Human-readable location. */\n where: string;\n /** Config path. */\n path: string;\n /** What is wrong. */\n message: string;\n /** How to fix it. */\n hint: string;\n}\n\n/** One member of the suite. `name` is the exported function's name — the id a wiring test can assert on. */\nexport interface ReferenceIntegrityRule {\n name: string;\n run: (stack: Record<string, unknown>) => ReferenceIntegrityFinding[];\n}\n\n/**\n * Every reference-integrity rule, in the order their findings are reported.\n *\n * ADDING A RULE: append it here and it runs on `validate`, `lint` and\n * `compile` at once. Do not re-wire the commands.\n */\nexport const REFERENCE_INTEGRITY_RULES: readonly ReferenceIntegrityRule[] = [\n { name: 'validateObjectReferences', run: validateObjectReferences },\n { name: 'validateActionNameRefs', run: validateActionNameRefs },\n { name: 'validatePageFieldBindings', run: validatePageFieldBindings },\n { name: 'validateChartBindings', run: validateChartBindings },\n { name: 'validateNavAccess', run: validateNavAccess },\n { name: 'validateTranslationReferences', run: validateTranslationReferences },\n { name: 'validateFlowTemplatePaths', run: validateFlowTemplatePaths },\n { name: 'validateAiSurfaceAffinity', run: validateAiSurfaceAffinity },\n { name: 'validateAiToolReferences', run: validateAiToolReferences },\n { name: 'validateAiAgentAuthoring', run: validateAiAgentAuthoring },\n];\n\n/**\n * Run every reference-integrity rule over a stack. Returns the concatenated\n * findings (empty = clean). Pure: no I/O, safe on both the schema-parsed stack\n * and the raw/normalized config the `lint` path carries.\n */\nexport function validateReferenceIntegrity(stack: Record<string, unknown>): ReferenceIntegrityFinding[] {\n const findings: ReferenceIntegrityFinding[] = [];\n for (const rule of REFERENCE_INTEGRITY_RULES) {\n findings.push(...rule.run(stack));\n }\n return findings;\n}\n"],"mappings":";AAEA,SAAS,6BAA6B;AAyE/B,IAAM,yBAAyB;AAC/B,IAAM,2BAA2B;AACjC,IAAM,yBAAyB;AAC/B,IAAM,sBAAsB;AAC5B,IAAM,uBAAuB;AAC7B,IAAM,mBAAmB;AACzB,IAAM,+BAA+B;AACrC,IAAM,gCAAgC;AACtC,IAAM,uCAAuC;AAC7C,IAAM,iCAAiC;AAmB9C,IAAM,wBAAwB;AAAA,EAC5B;AAAA,EAAiB;AAAA,EAAc;AAAA,EAAc;AAAA,EAC7C;AAAA,EAAa;AAAA,EAAe;AAAA,EAAY;AAC1C;AAsBA,SAAS,QAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAAS,UAAU,GAAsB;AACvC,SAAO,MAAM,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,MAAmB,OAAO,MAAM,QAAQ,IAAI,CAAC;AACnF;AAOA,IAAM,cAAc,oBAAI,IAAI;AAAA,EAC1B;AAAA,EAAO;AAAA,EAAkB;AAAA,EACzB;AAAA,EAAQ;AAAA,EACR;AAAA,EAAO;AAAA,EAAS;AAAA,EAChB;AAAA,EAAW;AAAA,EAAW;AAAA,EAAU;AAClC,CAAC;AAED,SAAS,YAAY,GAAW,GAAmB;AACjD,QAAM,IAAI,EAAE,QAAQ,IAAI,EAAE;AAC1B,MAAI,OAAO,MAAM,KAAK,EAAE,QAAQ,IAAI,EAAE,GAAG,CAAC,GAAG,MAAM,CAAC;AACpD,WAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,UAAM,MAAM,CAAC,CAAC;AACd,aAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,UAAI,CAAC,IAAI,KAAK;AAAA,QACZ,KAAK,CAAC,IAAI;AAAA,QACV,IAAI,IAAI,CAAC,IAAI;AAAA,QACb,KAAK,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,IAAI,IAAI;AAAA,MAC7C;AAAA,IACF;AACA,WAAO;AAAA,EACT;AACA,SAAO,KAAK,CAAC;AACf;AAQA,SAAS,WAAW,OAAe,YAAkD;AACnF,MAAI;AACJ,MAAI,YAAY;AAChB,aAAW,KAAK,YAAY;AAC1B,QAAI;AACJ,QAAI,MAAM,UAAU,MAAM,EAAE,SAAS,KAAK,KAAK,MAAM,SAAS,CAAC,IAAI;AACjE,cAAQ,KAAK,IAAI,EAAE,SAAS,MAAM,MAAM;AAAA,IAC1C,OAAO;AACL,YAAM,IAAI,YAAY,OAAO,CAAC;AAC9B,UAAI,IAAI,KAAK,IAAI,GAAG,KAAK,MAAM,MAAM,SAAS,CAAC,CAAC,EAAG;AACnD,cAAQ,MAAM;AAAA,IAChB;AACA,QAAI,QAAQ,WAAW;AAAE,kBAAY;AAAO,aAAO;AAAA,IAAG;AAAA,EACxD;AACA,SAAO;AACT;AAEA,SAAS,QAAQ,OAAe,YAAsC;AACpE,QAAM,IAAI,WAAW,OAAO,UAAU;AACtC,SAAO,IAAI,kBAAkB,CAAC,OAAO;AACvC;AAEA,SAAS,KAAK,OAAiC;AAC7C,QAAM,MAAM,CAAC,GAAG,KAAK;AACrB,SAAO,IAAI,SAAS,IAAI,IAAI,KAAK,IAAI,IAAI;AAC3C;AAKA,IAAM,yBAAyB;AAO/B,IAAM,2BAA2B;AAYjC,IAAM,gBAAgB,oBAAI,IAAY;AAAA,EACpC;AAAA,EACA;AAAA,EAAc;AAAA,EAAc;AAAA,EAAc;AAAA,EAC1C;AAAA,EAAY;AAAA,EAAmB;AAAA,EAAa;AAAA,EAC5C;AACF,CAAC;AAiBD,SAAS,oBAAoB,MAA+B;AAC1D,QAAM,SAAS,oBAAI,IAA2B;AAE9C,QAAM,YAAY,KAAK;AACvB,MAAI,aAAa,OAAO,cAAc,UAAU;AAC9C,UAAM,WAAY,UAAqB;AACvC,UAAM,QAAQ,OAAO,aAAa,YAAY,WAAW,WAAW;AACpE,WAAO,IAAI,wBAAwB,EAAE,MAAM,wBAAwB,MAAM,CAAC;AAAA,EAC5E;AAEA,aAAW,KAAK,QAAQ,KAAK,aAAa,GAAG;AAC3C,QAAI,OAAO,EAAE,UAAU,YAAY,CAAC,EAAE,MAAO;AAC7C,UAAM,OAAO,OAAO,EAAE,SAAS,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE;AAC/D,UAAM,gBAAgB,MAAM,QAAQ,EAAE,aAAa,IAC/C,EAAE,cAAc,OAAO,CAAC,MAAmB,OAAO,MAAM,QAAQ,IAChE;AACJ,WAAO,IAAI,MAAM,EAAE,MAAM,OAAO,EAAE,OAAO,cAAc,CAAC;AAAA,EAC1D;AAEA,SAAO,CAAC,GAAG,OAAO,OAAO,CAAC;AAC5B;AAUA,SAAS,qBACP,QACA,KACkD;AAClD,QAAM,WAAW,OAAO;AACxB,QAAM,UAAU,YAAY,OAAO,aAAa,WAC3C,SAAoB,IAAI,IAAI,IAC7B;AACJ,MAAI,YAAY,MAAO,QAAO;AAC9B,MAAI,OAAO,YAAY,YAAY,QAAS,QAAO,EAAE,OAAO,SAAS,UAAU,KAAK;AACpF,MAAI,IAAI,iBAAiB,IAAI,cAAc,SAAS,GAAG;AACrD,UAAM,KAAK,OAAO,OAAO,OAAO,WAAW,OAAO,KAAK;AACvD,QAAI,CAAC,MAAM,CAAC,IAAI,cAAc,SAAS,EAAE,EAAG,QAAO;AAAA,EACrD;AACA,SAAO,EAAE,OAAO,IAAI,OAAO,UAAU,MAAM;AAC7C;AASO,SAAS,uBAAuB,OAAuC;AAC5E,QAAM,WAAmC,CAAC;AAE1C,QAAM,WAAW,oBAAI,IAAoB;AACzC,aAAW,MAAM,QAAQ,MAAM,QAAQ,GAAG;AACxC,QAAI,OAAO,GAAG,SAAS,SAAU,UAAS,IAAI,GAAG,MAAM,EAAE;AAAA,EAC3D;AAOA,QAAM,mBAAmB,oBAAI,IAAiC;AAC9D,aAAW,KAAK,QAAQ,MAAM,OAAO,GAAG;AACtC,QAAI,OAAO,EAAE,SAAS,SAAU;AAChC,UAAM,KAAK,oBAAI,IAAoB;AACnC,eAAW,KAAK,QAAQ,EAAE,MAAM,GAAG;AACjC,UAAI,OAAO,EAAE,SAAS,YAAY,OAAO,EAAE,SAAS,SAAU,IAAG,IAAI,EAAE,MAAM,EAAE,IAAI;AAAA,IACrF;AACA,qBAAiB,IAAI,EAAE,MAAM,EAAE;AAAA,EACjC;AACA,QAAM,cAAc,QAAQ,MAAM,QAAQ;AAC1C,WAAS,IAAI,GAAG,IAAI,YAAY,QAAQ,KAAK;AAC3C,UAAM,KAAK,YAAY,CAAC;AACxB,UAAM,aAAa,OAAO,GAAG,WAAW,WAAW,iBAAiB,IAAI,GAAG,MAAM,IAAI;AACrF,QAAI,CAAC,WAAY;AACjB,UAAM,aAAa,QAAQ,GAAG,QAAQ;AACtC,aAAS,IAAI,GAAG,IAAI,WAAW,QAAQ,KAAK;AAC1C,YAAM,IAAI,WAAW,CAAC;AACtB,YAAM,QAAQ,OAAO,EAAE,UAAU,WAAW,EAAE,QAAQ;AACtD,YAAM,YAAY,OAAO,EAAE,cAAc,WAAW,EAAE,YAAY;AAClE,UAAI,CAAC,SAAS,CAAC,UAAW;AAC1B,YAAM,QAAQ,WAAW,IAAI,KAAK;AAClC,UAAI,SAAS,sBAAsB,WAAW,KAAK,GAAG;AACpD,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,YAAY,OAAO,GAAG,SAAS,WAAW,GAAG,OAAO,YAAY,CAAC,GAAG,qBAAgB,OAAO,EAAE,SAAS,WAAW,EAAE,OAAO,YAAY,CAAC,GAAG;AAAA,UACjJ,MAAM,YAAY,CAAC,cAAc,CAAC;AAAA,UAClC,SACE,YAAY,EAAE,IAAI,aAAa,SAAS,OAAO,KAAK,WAAW,KAAK;AAAA,UAEtE,MACE,wJAEuB,4BAA4B;AAAA,QACvD,CAAC;AAAA,MACH;AAAA,IACF;AAAA,EACF;AAEA,QAAM,aAAa,QAAQ,MAAM,UAAU;AAC3C,WAAS,IAAI,GAAG,IAAI,WAAW,QAAQ,KAAK;AAC1C,UAAM,OAAO,WAAW,CAAC;AACzB,UAAM,WAAW,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO,cAAc,CAAC;AAC5E,UAAM,UAAU,MAAM,QAAQ,KAAK,OAAO,IAAK,KAAK,UAAuB,CAAC;AAG5E,UAAM,iBAAiB,oBAAoB,IAAI;AAE/C,aAAS,IAAI,GAAG,IAAI,QAAQ,QAAQ,KAAK;AACvC,YAAM,IAAI,QAAQ,CAAC;AACnB,YAAM,WAAW,OAAO,EAAE,OAAO,WAAW,EAAE,KAAK,WAAW,CAAC;AAC/D,YAAM,QAAQ,cAAc,QAAQ,oBAAe,QAAQ;AAC3D,YAAM,OAAO,cAAc,CAAC,aAAa,CAAC;AAC1C,YAAM,aAAa,CAAC,SAClB,MAAM,QAAQ,EAAE,gBAAgB,KAAK,EAAE,iBAAiB,SAAS,IAAI;AACvE,YAAM,OAAO,CAAC,MAA0D;AACtE,YAAI,EAAE,aAAa,aAAa,WAAW,EAAE,IAAI,EAAG;AACpD,iBAAS,KAAK,EAAE,GAAG,GAAG,OAAO,KAAK,CAAC;AAAA,MACrC;AAUA,YAAM,aAAa,sBAAsB,OAAO,CAAC,MAAM,EAAE,CAAC,MAAM,MAAS;AACzE,UAAI,WAAW,SAAS,GAAG;AACzB,cAAM,cACJ,OAAO,EAAE,YAAY,YAAY,EAAE,YAAY,QAC9C,EAAE,QAAmB,SAAS;AACjC,cAAM,gBACJ,EAAE,YAAY,UAAa,EAAE,WAAW,UACxC,EAAE,SAAS,UAAa;AAC1B,cAAM,UAAU,WAAW,IAAI,CAAC,MAAM,KAAK,CAAC,IAAI,EAAE,KAAK,IAAI;AAC3D,cAAM,SAAS,WAAW,SAAS;AACnC,cAAM,cACJ;AAIF,YAAI,CAAC,eAAe;AAClB,eAAK;AAAA,YACH,UAAU;AAAA,YACV,MAAM;AAAA,YACN,SACE,4BAA4B,SAAS,MAAM,EAAE,IAAI,OAAO;AAAA,YAG1D,MACE,GAAG,WAAW;AAAA,UAElB,CAAC;AAAA,QACH,OAAO;AACL,eAAK;AAAA,YACH,UAAU;AAAA,YACV,MAAM;AAAA,YACN,SACE,4BAA4B,SAAS,MAAM,EAAE,IAAI,OAAO,wFACQ,SAAS,SAAS,IAAI;AAAA,YACxF,MACE,GAAG,WAAW,qEACuB,6BAA6B;AAAA,UACtE,CAAC;AAAA,QACH;AAAA,MACF;AAGA,YAAM,SAAS,OAAO,EAAE,YAAY,WAAW,EAAE,UAAU;AAC3D,YAAM,UAAU,SAAS,SAAS,IAAI,MAAM,IAAI;AAChD,UAAI,UAAU,CAAC,SAAS;AACtB,aAAK;AAAA,UACH,UAAU;AAAA,UACV,MAAM;AAAA,UACN,SAAS,YAAY,MAAM;AAAA,UAC3B,MACE,sBAAsB,KAAK,SAAS,KAAK,CAAC,CAAC,IAAI,QAAQ,QAAQ,SAAS,KAAK,CAAC,CAAC;AAAA,QAEnF,CAAC;AAAA,MACH;AAOA,UAAI,CAAC,QAAQ;AACX,aAAK;AAAA,UACH,UAAU;AAAA,UACV,MAAM;AAAA,UACN,SACE;AAAA,UAEF,MACE,yHAC0C,KAAK,SAAS,KAAK,CAAC,CAAC;AAAA,QACnE,CAAC;AACD;AAAA,MACF;AAGA,UAAI,CAAC,QAAS;AASd,UAAI,eAAe,SAAS,GAAG;AAC7B,cAAM,gBAAgB,OAAO,QAAQ,WAAW,WAAW,QAAQ,SAAS;AAI5E,cAAM,eAAe,gBAAgB,iBAAiB,IAAI,aAAa,IAAI;AAC3E,YAAI,cAAc;AAChB,qBAAW,OAAO,gBAAgB;AAChC,kBAAM,MAAM,qBAAqB,GAAG,GAAG;AACvC,gBAAI,CAAC,IAAK;AACV,kBAAM,QAAQ,IAAI;AAGlB,gBAAI,MAAM,SAAS,GAAG,EAAG;AACzB,gBAAI,aAAa,IAAI,KAAK,KAAK,cAAc,IAAI,KAAK,EAAG;AACzD,iBAAK;AAAA,cACH,UAAU;AAAA,cACV,MAAM;AAAA,cACN,SAAS,IAAI,WACT,4BAA4B,IAAI,IAAI,iBAAiB,KAAK,yCACpB,aAAa,gBAAgB,MAAM,qBACvD,KAAK,QACvB,+BAA+B,IAAI,IAAI,IAAI,KAAK,qBAC3C,aAAa,gBAAgB,MAAM,qBAAqB,KAAK;AAAA,cACtE,MAAM,IAAI,WACN,2BAA2B,IAAI,IAAI,6CAC9B,aAAa,yCAAyC,IAAI,IAAI,aAChE,QAAQ,OAAO,aAAa,KAAK,CAAC,CAAC,mBAAmB,KAAK,aAAa,KAAK,CAAC,CAAC,MAClF,yBAAyB,IAAI,IAAI,iGACwB,IAAI,IAAI,iBAC9D,QAAQ,OAAO,aAAa,KAAK,CAAC,CAAC,mBAAmB,KAAK,aAAa,KAAK,CAAC,CAAC;AAAA,YACxF,CAAC;AAAA,UACH;AAAA,QACF;AAAA,MACF;AAEA,YAAM,iBAAiB,oBAAI,IAAY;AACvC,iBAAW,KAAK,QAAQ,QAAQ,UAAU,GAAG;AAC3C,YAAI,OAAO,EAAE,SAAS,SAAU,gBAAe,IAAI,EAAE,IAAI;AAAA,MAC3D;AACA,YAAM,WAAW,oBAAI,IAAoB;AACzC,iBAAW,KAAK,QAAQ,QAAQ,QAAQ,GAAG;AACzC,YAAI,OAAO,EAAE,SAAS,SAAU,UAAS,IAAI,EAAE,MAAM,CAAC;AAAA,MACxD;AAGA,YAAM,OAAO,UAAU,EAAE,UAAU;AACnC,eAAS,IAAI,GAAG,IAAI,KAAK,QAAQ,KAAK;AACpC,YAAI,eAAe,IAAI,KAAK,CAAC,CAAC,EAAG;AACjC,aAAK;AAAA,UACH,UAAU;AAAA,UACV,MAAM;AAAA,UACN,SACE,cAAc,CAAC,MAAM,KAAK,CAAC,CAAC,oCACxB,MAAM,2BAA2B,KAAK,cAAc,CAAC;AAAA,UAC3D,MACE,6CAA6C,QAAQ,KAAK,CAAC,GAAG,cAAc,CAAC;AAAA,QAEjF,CAAC;AAAA,MACH;AAGA,YAAM,SAAS,UAAU,EAAE,MAAM;AACjC,eAAS,IAAI,GAAG,IAAI,OAAO,QAAQ,KAAK;AACtC,YAAI,SAAS,IAAI,OAAO,CAAC,CAAC,EAAG;AAC7B,aAAK;AAAA,UACH,UAAU;AAAA,UACV,MAAM;AAAA,UACN,SACE,UAAU,CAAC,MAAM,OAAO,CAAC,CAAC,kCACtB,MAAM,yBAAyB,KAAK,SAAS,KAAK,CAAC,CAAC;AAAA,UAC1D,MACE,+DACG,QAAQ,OAAO,CAAC,GAAG,SAAS,KAAK,CAAC,CAAC;AAAA,QAE1C,CAAC;AAAA,MACH;AAGA,YAAM,cAAe,EAAE,eAAe,OAAO,EAAE,gBAAgB,WAC1D,EAAE,cACH;AACJ,YAAM,cAAc,OAAO,EAAE,SAAS,YAAY,YAAY,IAAI,EAAE,IAAI;AAExE,UAAI,aAAa;AAGf,cAAM,iBAAiB,IAAI,IAAI,OAAO,OAAO,CAAC,MAAM,SAAS,IAAI,CAAC,CAAC,CAAC;AAEpE,cAAM,QAAS,YAAY,SAAS,OAAO,YAAY,UAAU,WAC5D,YAAY,QACb;AAGJ,YAAI,SAAS,OAAO,MAAM,UAAU,YAC7B,CAAC,eAAe,IAAI,MAAM,KAAK,KAAK,CAAC,KAAK,SAAS,MAAM,KAAK,GAAG;AACtE,eAAK;AAAA,YACH,UAAU;AAAA,YACV,MAAM;AAAA,YACN,SACE,4BAA4B,MAAM,KAAK,iDACd,MAAM,2BAA2B,KAAK,cAAc,CAAC;AAAA,YAChF,MAAM,iDAAiD,QAAQ,MAAM,OAAO,cAAc,CAAC;AAAA,UAC7F,CAAC;AAAA,QACH;AAEA,cAAM,eAAe,CAACA,QAAe,UAAwB;AAC3D,cAAI,OAAO,SAAS,KAAK,EAAG;AAC5B,gBAAM,wBAAwB,SAAS,IAAI,KAAK;AAChD,eAAK;AAAA,YACH,UAAU;AAAA,YACV,MAAM;AAAA,YACN,SAAS,wBACL,eAAeA,MAAK,KAAK,KAAK,8BAA8B,MAAM,iDACnB,KAAK,MAAM,CAAC,gDAE3D,eAAeA,MAAK,KAAK,KAAK,+CAClB,MAAM,yBAAyB,KAAK,SAAS,KAAK,CAAC,CAAC;AAAA,YACpE,MAAM,wBACF,QAAQ,KAAK,uEACb,iFACe,QAAQ,OAAO,eAAe,OAAO,IAAI,iBAAiB,SAAS,KAAK,CAAC,CAAC;AAAA,UAC/F,CAAC;AAAA,QACH;AAEA,cAAM,QAAQ,MAAM,QAAQ,YAAY,KAAK,IAAK,YAAY,QAAqB,CAAC;AACpF,iBAAS,IAAI,GAAG,IAAI,MAAM,QAAQ,KAAK;AACrC,gBAAM,QAAQ,MAAM,CAAC,GAAG;AACxB,cAAI,OAAO,UAAU,SAAU,cAAa,SAAS,CAAC,WAAW,KAAK;AAAA,QACxE;AACA,cAAM,SAAS,MAAM,QAAQ,YAAY,MAAM,IAAK,YAAY,SAAsB,CAAC;AACvF,iBAAS,IAAI,GAAG,IAAI,OAAO,QAAQ,KAAK;AACtC,gBAAM,OAAO,OAAO,CAAC,GAAG;AACxB,cAAI,OAAO,SAAS,SAAU,cAAa,UAAU,CAAC,UAAU,IAAI;AAAA,QACtE;AAAA,MACF,WAAW,aAAa;AACtB,aAAK;AAAA,UACH,UAAU;AAAA,UACV,MAAM;AAAA,UACN,SACE,uBAAuB,EAAE,IAAI;AAAA,UAE/B,MACE,wDAAwD,KAAK,IAAI,CAAC,8CAC1B,KAAK,MAAM,CAAC,kFACY,oBAAoB;AAAA,QACxF,CAAC;AAAA,MACH;AAGA,UAAI,EAAE,SAAS,WAAW,EAAE,SAAS,QAAS;AAE9C,UAAI,KAAK,SAAS,EAAG;AACrB,UAAI,OAAO,WAAW,EAAG;AACzB,YAAM,WAAW,OAAO,IAAI,CAAC,MAAM,SAAS,IAAI,CAAC,CAAC;AAElD,UAAI,SAAS,KAAK,CAAC,MAAM,CAAC,CAAC,EAAG;AAI9B,YAAM,YAAY,SAAS,MAAM,CAAC,MAAM,EAAG,cAAc,WAAW,CAAC,EAAG,OAAO;AAC/E,UAAI,CAAC,UAAW;AAEhB,WAAK;AAAA,QACH,UAAU;AAAA,QACV,MAAM;AAAA,QACN,SACE,MAAM,EAAE,IAAI,8BAA8B,MAAM,oCACjC,OAAO,KAAK,IAAI,CAAC;AAAA,QAElC,MACE,wSAIuB,gBAAgB;AAAA,MAC3C,CAAC;AAAA,IACH;AAAA,EACF;AAEA,SAAO;AACT;;;ACrnBA,SAAS,0BAA0B;AAiBnC,SAASC,SAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAGA,SAAS,gBAAgB,SAA0C;AACjE,QAAM,MAAM,oBAAI,IAAsB;AACtC,aAAW,OAAO,SAAS;AACzB,UAAM,OAAO,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO;AACvD,QAAI,CAAC,KAAM;AACX,UAAM,SAAS,IAAI;AACnB,QAAI,QAAkB,CAAC;AACvB,QAAI,MAAM,QAAQ,MAAM,EAAG,SAAQ,OAAO,IAAI,OAAM,EAAa,IAAI,EAAE,OAAO,CAAC,MAAmB,OAAO,MAAM,QAAQ;AAAA,aAC9G,UAAU,OAAO,WAAW,SAAU,SAAQ,OAAO,KAAK,MAAgB;AACnF,QAAI,IAAI,MAAM,KAAK;AAAA,EACrB;AACA,SAAO;AACT;AAOA,SAAS,oBAAoB,SAAwD;AACnF,QAAM,MAAM,oBAAI,IAAoC;AACpD,aAAW,OAAO,SAAS;AACzB,UAAM,OAAO,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO;AACvD,QAAI,CAAC,KAAM;AACX,UAAM,SAAS,IAAI;AACnB,UAAM,QAAgC,CAAC;AACvC,QAAI,MAAM,QAAQ,MAAM,GAAG;AACzB,iBAAW,KAAK,QAAoB;AAClC,cAAM,KAAM,GAAc;AAC1B,cAAM,KAAM,GAAc;AAC1B,YAAI,OAAO,OAAO,YAAY,OAAO,OAAO,SAAU,OAAM,EAAE,IAAI;AAAA,MACpE;AAAA,IACF,WAAW,UAAU,OAAO,WAAW,UAAU;AAC/C,iBAAW,CAAC,IAAI,GAAG,KAAK,OAAO,QAAQ,MAAgB,GAAG;AACxD,cAAM,KAAM,KAAgB;AAC5B,YAAI,OAAO,OAAO,SAAU,OAAM,EAAE,IAAI;AAAA,MAC1C;AAAA,IACF;AACA,QAAI,IAAI,MAAM,KAAK;AAAA,EACrB;AACA,SAAO;AACT;AAMO,SAAS,yBAAyB,OAA4B;AACnE,QAAM,SAAsB,CAAC;AAC7B,QAAM,UAAUA,SAAQ,MAAM,OAAO;AACrC,QAAM,aAAa,gBAAgB,OAAO;AAC1C,QAAM,iBAAiB,oBAAoB,OAAO;AAElD,QAAM,QAAQ,CACZ,OACA,KACA,YACA,QAAgC,gBACvB;AACT,QAAI,OAAO,KAAM;AACjB,UAAM,SAAS,aAAa,WAAW,IAAI,UAAU,IAAI;AAGzD,UAAM,aAAa,aAAa,eAAe,IAAI,UAAU,IAAI;AACjE,UAAM,MAAM;AAAA,MAAmB;AAAA,MAAa;AAAA,MAC1C,aAAa,EAAE,YAAY,QAAQ,YAAY,MAAM,IAAI,EAAE,MAAM;AAAA,IAAC;AACpE,eAAW,KAAK,IAAI,OAAQ,QAAO,KAAK,EAAE,OAAO,SAAS,EAAE,SAAS,QAAQ,EAAE,QAAQ,UAAU,QAAQ,CAAC;AAC1G,eAAW,KAAK,IAAI,SAAU,QAAO,KAAK,EAAE,OAAO,SAAS,EAAE,SAAS,QAAQ,EAAE,QAAQ,UAAU,UAAU,CAAC;AAAA,EAChH;AAGA,aAAW,QAAQA,SAAQ,MAAM,KAAK,GAAG;AACvC,UAAM,WAAW,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO;AAC7D,UAAM,QAAQ,MAAM,QAAQ,KAAK,KAAK,IAAK,KAAK,QAAqB,CAAC;AACtE,UAAM,QAAQ,MAAM,QAAQ,KAAK,KAAK,IAAK,KAAK,QAAqB,CAAC;AAEtE,UAAM,YAAY,MAAM,KAAK,OAAK,EAAE,SAAS,OAAO;AACpD,UAAM,WAAY,WAAW,UAAU,CAAC;AACxC,UAAM,aAAa,OAAO,SAAS,eAAe,WAAW,SAAS,aAAa;AAEnF,eAAW,QAAQ,OAAO;AACxB,YAAM,MAAO,KAAK,UAAU,CAAC;AAC7B,YAAM,SAAS,QAAQ,gBAAa,KAAK,EAAE,MAAM,KAAK,IAAI,eAAe,IAAI,WAAW,UAAU;AAMlG,UAAI,KAAK,SAAS,UAAU;AAE1B,cAAM,MACH,OAAO,IAAI,aAAa,WAAW,IAAI,SAAS,KAAK,IAAI,QACzD,OAAO,IAAI,iBAAiB,WAAW,IAAI,aAAa,KAAK,IAAI;AACpE,cAAM,SAAS,OAAO,IAAI,eAAe,WAAW,IAAI,WAAW,KAAK,IAAI;AAI5E,cAAM,SAAS,OAAO,IAAI,WAAW,WAAW,IAAI,OAAO,KAAK,IAAI;AACpE,YAAI,CAAC,MAAM,CAAC,UAAU,CAAC,QAAQ;AAC7B,iBAAO,KAAK;AAAA,YACV,OAAO,SAAS,QAAQ,gBAAa,KAAK,EAAE;AAAA,YAC5C,SACE;AAAA,YAGF,QAAQ,KAAK,UAAU,EAAE,IAAI,KAAK,IAAI,MAAM,KAAK,MAAM,QAAQ,IAAI,CAAC;AAAA,UACtE,CAAC;AAAA,QACH,WAAW,WAAW,qBAAqB,CAAC,IAAI;AAG9C,iBAAO,KAAK;AAAA,YACV,OAAO,SAAS,QAAQ,gBAAa,KAAK,EAAE;AAAA,YAC5C,SACE;AAAA,YAEF,QAAQ,KAAK,UAAU,EAAE,IAAI,KAAK,IAAI,MAAM,KAAK,MAAM,QAAQ,IAAI,CAAC;AAAA,UACtE,CAAC;AAAA,QACH;AAAA,MACF;AAAA,IACF;AACA,eAAW,QAAQ,OAAO;AACxB,YAAM,SAAS,QAAQ,gBAAa,KAAK,EAAE,MAAM,KAAK,MAAM,SAAI,KAAK,MAAM,eAAe,KAAK,WAAW,UAAU;AAAA,IACtH;AAAA,EACF;AAGA,aAAW,OAAO,SAAS;AACzB,UAAM,aAAa,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO;AAC7D,UAAM,cAAc,IAAI,eAAe,IAAI;AAC3C,eAAW,QAAQA,SAAQ,WAAW,GAAG;AACvC,YAAM,QAAQ,WAAW,UAAU,sBAAoB,KAAK,QAAmB,GAAG;AAGlF,YAAM,OAAO,KAAK,cAAc,KAAK,aAAa,KAAK,aAAa,KAAK,SAAS,YAAY,QAAQ;AAEtG,YAAM,GAAG,KAAK,SAAU,KAAgB,MAAM,YAAY,QAAQ;AAAA,IACpE;AAEA,UAAM,SAAS,IAAI;AACnB,UAAM,YAAY,MAAM,QAAQ,MAAM,IACjC,SACA,UAAU,OAAO,WAAW,WAAW,OAAO,OAAO,MAAgB,IAAgB,CAAC;AAM3F,eAAW,KAAK,WAAW;AAIzB,UAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,cAAM,QAAS,EAAE,QAAmB;AACpC,mBAAW,OAAO,CAAC,gBAAgB,gBAAgB,uBAAuB,aAAa,GAAY;AACjG,gBAAM,WAAW,UAAU,iBAAc,KAAK,KAAK,GAAG,IAAK,EAAa,GAAG,GAAG,YAAY,QAAQ;AAAA,QACpG;AAAA,MACF;AACA,UAAI,KAAK,OAAO,MAAM,YAAY,EAAE,SAAS;AAG3C,cAAM,MAAM;AAAA,UAAmB;AAAA,UAAS,EAAE;AAAA,UACxC,aAAa,EAAE,YAAY,QAAQ,WAAW,IAAI,UAAU,GAAG,YAAY,eAAe,IAAI,UAAU,GAAG,OAAO,SAAS,IAAI,EAAE,OAAO,SAAS;AAAA,QAAC;AACpJ,cAAM,aAAa,WAAW,UAAU,iBAAe,EAAE,QAAmB,GAAG;AAC/E,mBAAW,KAAK,IAAI,OAAQ,QAAO,KAAK,EAAE,OAAO,YAAY,SAAS,EAAE,SAAS,QAAQ,EAAE,QAAQ,UAAU,QAAQ,CAAC;AACtH,mBAAW,KAAK,IAAI,SAAU,QAAO,KAAK,EAAE,OAAO,YAAY,SAAS,EAAE,SAAS,QAAQ,EAAE,QAAQ,UAAU,UAAU,CAAC;AAAA,MAC5H;AAAA,IACF;AAAA,EACF;AAUA,QAAM,cAAc,oBAAI,IAAY;AACpC,QAAM,cAAc,CAAC,OAAe,QAAgB,eAA8B;AAChF,UAAM,MAAM,eACN,OAAO,OAAO,eAAe,WAAW,OAAO,aAAa,YAC5D,OAAO,OAAO,WAAW,WAAW,OAAO,SAAS;AAC1D,UAAM,OAAO,OAAO,OAAO,SAAS,WAAW,OAAO,OAAO;AAC7D,UAAM,MAAM,GAAG,OAAO,EAAE,IAAI,IAAI;AAChC,QAAI,YAAY,IAAI,GAAG,EAAG;AAC1B,gBAAY,IAAI,GAAG;AACnB,UAAM,GAAG,KAAK,iBAAc,IAAI,aAAa,OAAO,SAAS,KAAK,QAAQ;AAC1E,QAAI,OAAO,OAAO,aAAa,WAAW;AACxC,YAAM,GAAG,KAAK,iBAAc,IAAI,cAAc,OAAO,UAAU,KAAK,QAAQ;AAAA,IAC9E;AAAA,EACF;AACA,aAAW,UAAUA,SAAQ,MAAM,OAAO,GAAG;AAC3C,gBAAY,SAAS,MAAM;AAAA,EAC7B;AACA,aAAW,OAAO,SAAS;AACzB,UAAM,aAAa,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO;AAC7D,eAAW,UAAUA,SAAQ,IAAI,OAAO,GAAG;AACzC,kBAAY,WAAW,UAAU,KAAK,QAAQ,UAAU;AAAA,IAC1D;AAAA,EACF;AAKA,aAAW,QAAQA,SAAQ,MAAM,YAAY,GAAG;AAC9C,UAAM,UAAU,OAAO,KAAK,WAAW,WAAW,KAAK,SAAS;AAChE,UAAM,QAAQ,gBAAiB,KAAK,QAAmB,GAAG,IAAI,UAAU,KAAK,OAAO,MAAM,EAAE;AAC5F,UAAM,OAAO,KAAK,aAAa,KAAK,YAAY,KAAK,WAAW,SAAS,QAAQ;AAAA,EACnF;AAMA,aAAW,QAAQA,SAAQ,MAAM,KAAK,GAAG;AACvC,UAAM,WAAY,KAAK,QAAmB;AAC1C,QAAI,OAAO,KAAK,WAAW,UAAU;AACnC,YAAM,SAAS,QAAQ,MAAM,KAAK,MAAM,eAAe,KAAK,WAAW,KAAK,QAAQ,QAAQ;AAC5F;AAAA,IACF;AASA,UAAM,UAAU,MAAM,QAAQ,KAAK,MAAM,IACpC,KAAK,OAAqB,OAAO,CAAC,MAAmB,OAAO,MAAM,YAAY,MAAM,GAAG,IACxF,CAAC;AACL,QAAI,QAAQ,WAAW,GAAG;AAGxB,YAAM,SAAS,QAAQ,eAAe,KAAK,WAAW,QAAW,QAAQ;AACzE;AAAA,IACF;AAEA,UAAM,SAAS,OAAO;AACtB,UAAM,OAAO,oBAAI,IAAY;AAC7B,UAAM,OAAoB,CAAC;AAC3B,eAAW,UAAU,SAAS;AAC5B,YAAM,OAAO,OAAO;AACpB,YAAM,SAAS,QAAQ,MAAM,MAAM,eAAe,KAAK,WAAW,QAAQ,QAAQ;AAClF,eAAS,IAAI,MAAM,IAAI,OAAO,QAAQ,KAAK;AACzC,cAAM,QAAQ,OAAO,CAAC;AACtB,cAAM,MAAM,GAAG,MAAM,OAAO,KAAS,MAAM,UAAU,EAAE;AAIvD,YAAI,CAAC,KAAK,IAAI,GAAG,GAAG;AAClB,eAAK,IAAI,GAAG;AACZ,eAAK,KAAK,KAAK;AAAA,QACjB;AAAA,MACF;AAAA,IACF;AACA,WAAO,SAAS;AAChB,WAAO,KAAK,GAAG,IAAI;AAAA,EACrB;AAEA,SAAO;AACT;;;AC5QO,IAAM,kCAAkC;AAK/C,SAASC,SAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO;AAAA,MACvD;AAAA,MACA,GAAI;AAAA,IACN,EAAE;AAAA,EACJ;AACA,SAAO,CAAC;AACV;AAGA,SAAS,SACP,MACA,OACA,MACA,KACM;AACN,MAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,QAAM,MAAM;AAGZ,MAAI,IAAI,gBAAgB,MAAM;AAC5B,QAAI,KAAK;AAAA,MACP,UAAU;AAAA,MACV,MAAM;AAAA,MACN;AAAA,MACA,MAAM,GAAG,IAAI;AAAA,MACb,SACE;AAAA,MAEF,MACE;AAAA,IAEJ,CAAC;AAAA,EACH;AAKA,QAAM,KAAK,IAAI;AACf,MAAI,MAAM,OAAO,OAAO,UAAU;AAChC,UAAM,QAAQ;AACd,QAAI,MAAM,YAAY,UAAU,MAAM,QAAQ,MAAM;AAClD,UAAI,KAAK;AAAA,QACP,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA,MAAM,GAAG,IAAI;AAAA,QACb,SACE;AAAA,QAEF,MACE;AAAA,MAGJ,CAAC;AAAA,IACH;AAAA,EACF;AACF;AAGA,SAAS,cACP,WACA,aACA,YACA,KACM;AACN,MAAI,CAAC,aAAa,OAAO,cAAc,SAAU;AACjD,aAAW,CAAC,MAAM,IAAI,KAAK,OAAO,QAAQ,SAAmB,GAAG;AAC9D;AAAA,MACE;AAAA,MACA,GAAG,WAAW,qBAAgB,IAAI;AAAA,MAClC,GAAG,UAAU,cAAc,IAAI;AAAA,MAC/B;AAAA,IACF;AAAA,EACF;AACF;AAWO,SAAS,qBAAqB,OAAsC;AACzE,QAAM,MAA6B,CAAC;AAGpC,EAAAA,SAAQ,MAAM,OAAO,EAAE,QAAQ,CAAC,KAAK,MAAM;AACzC,UAAMC,SAAQ,OAAO,IAAI,SAAS,WAAW,WAAW,IAAI,IAAI,MAAM,WAAW,CAAC;AAClF,kBAAc,IAAI,WAAWA,QAAO,WAAW,CAAC,KAAK,GAAG;AAAA,EAC1D,CAAC;AAGD,EAAAD,SAAQ,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,MAAM;AACxC,UAAM,QACJ,OAAO,KAAK,eAAe,WACvB,KAAK,aACL,OAAO,KAAK,SAAS,WACnB,KAAK,OACL;AACR,UAAMC,SAAQ,QAAQ,SAAS,KAAK,MAAM,SAAS,CAAC;AACpD,aAAS,KAAK,MAAM,GAAGA,MAAK,gBAAW,SAAS,CAAC,UAAU,GAAG;AAC9D,kBAAc,KAAK,WAAWA,QAAO,SAAS,CAAC,KAAK,GAAG;AAAA,EACzD,CAAC;AAED,SAAO;AACT;;;AChHO,IAAM,8BAA8B;AACpC,IAAM,8BAA8B;AACpC,IAAM,6BAA6B;AAa1C,IAAM,uBAAuB;AAG7B,SAASC,SAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO;AAAA,MACvD;AAAA,MACA,GAAI;AAAA,IACN,EAAE;AAAA,EACJ;AACA,SAAO,CAAC;AACV;AAGA,SAAS,YAAY,MAA2D;AAC9E,QAAM,QAAQ,MAAM,QAAQ,KAAK,KAAK,IAAK,KAAK,QAAqB,CAAC;AACtE,QAAM,QAAQ,MAAM,UAAU,CAAC,MAAM,GAAG,SAAS,OAAO;AACxD,SAAO,SAAS,IAAI,EAAE,MAAM,MAAM,KAAK,GAAG,MAAM,IAAI;AACtD;AAMO,SAAS,6BAA6B,OAA8C;AACzF,QAAM,WAA0C,CAAC;AACjD,QAAM,QAAQA,SAAQ,MAAM,KAAK;AACjC,MAAI,MAAM,WAAW,EAAG,QAAO;AAE/B,QAAM,cAAc,IAAI;AAAA,IACtBA,SAAQ,MAAM,OAAO,EAClB,IAAI,CAAC,MAAO,OAAO,EAAE,SAAS,WAAW,EAAE,OAAO,MAAU,EAC5D,OAAO,CAAC,MAAmB,CAAC,CAAC,CAAC;AAAA,EACnC;AAEA,QAAM,QAAQ,CAAC,MAAM,cAAc;AACjC,UAAM,WAAW,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO,IAAI,SAAS;AAC1E,UAAM,QAAQ,YAAY,IAAI;AAC9B,UAAM,SAAU,OAAO,KAAK,UAAU,CAAC;AACvC,UAAM,cAAc,OAAO,OAAO,gBAAgB,WAAW,OAAO,cAAc;AAClF,UAAMC,qBAAoB,CAAC,CAAC,eAAe,YAAY,WAAW,SAAS;AAM3E,UAAM,yBACJ,MAAM,QAAQ,OAAO,WAAW,KAC/B,OAAO,YAA0B,KAAK,CAAC,MAAM,OAAO,MAAM,YAAY,EAAE,WAAW,SAAS,CAAC;AAChG,UAAM,iBAAiB,OAAO,gBAAgB,QAAQ,OAAO,OAAO,iBAAiB;AACrF,UAAM,kBACJA,sBAAqB,gBAAgB,SAAS,OAAO,YAAY,QACjE,kBAAkB,KAAK,SAAS,cAAc,KAAK,SAAS;AAG9D,QAAIA,sBAAqB,OAAO;AAC9B,YAAM,aAAa,OAAO,OAAO,eAAe,WAAW,OAAO,aAAa;AAC/E,UAAI,cAAc,CAAC,YAAY,IAAI,UAAU,KAAK,CAAC,WAAW,WAAW,MAAM,GAAG;AAChF,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,SAAS,QAAQ;AAAA,UACxB,MAAM,SAAS,SAAS,WAAW,MAAM,KAAK;AAAA,UAC9C,SACE,mBAAmB,UAAU;AAAA,UAE/B,MACE;AAAA,QAGJ,CAAC;AAAA,MACH;AAAA,IACF;AAKA,QAAI,kBAAkB,OAAO;AAC3B,YAAM,KAAK,OAAO;AAClB,YAAM,aAAa,OAAO,GAAG,WAAW,WAAW,GAAG,SAAS;AAC/D,UAAI,cAAc,CAAC,YAAY,IAAI,UAAU,KAAK,CAAC,WAAW,WAAW,MAAM,GAAG;AAChF,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,SAAS,QAAQ;AAAA,UACxB,MAAM,SAAS,SAAS,WAAW,MAAM,KAAK;AAAA,UAC9C,SACE,kBAAkB,UAAU;AAAA,UAE9B,MACE;AAAA,QAEJ,CAAC;AAAA,MACH;AAAA,IACF;AAQA,QAAI,SAASA,sBAAqB,CAAC,qBAAqB,MAAM,eAAe,IAAI,KAAK,CAAC,GAAG;AACxF,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,SAAS,QAAQ;AAAA,QACxB,MAAM,SAAS,SAAS,WAAW,MAAM,KAAK;AAAA,QAC9C,SACE,gBAAgB,WAAW;AAAA,QAE7B,MACE;AAAA,MAEJ,CAAC;AAAA,IACH;AAOA,QAAI,SAAS,wBAAwB;AACnC,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,SAAS,QAAQ;AAAA,QACxB,MAAM,SAAS,SAAS,WAAW,MAAM,KAAK;AAAA,QAC9C,SACE,4BAA4B,KAAK,UAAU,OAAO,WAAW,CAAC;AAAA,QAEhE,MACE;AAAA,MAEJ,CAAC;AAAA,IACH;AAIA,QAAI,oBAAoB,KAAK,UAAU,QAAQ,KAAK,WAAW,UAAU;AACvE,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,SAAS,QAAQ;AAAA,QACxB,MAAM,SAAS,SAAS;AAAA,QACxB,SACE;AAAA,QAEF,MAAM;AAAA,MACR,CAAC;AAAA,IACH;AAAA,EACF,CAAC;AAED,SAAO;AACT;;;AC3IO,IAAM,8BAA8B;AACpC,IAAM,iCAAiC;AAK9C,SAASC,SAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO;AAAA,MACvD;AAAA,MACA,GAAI;AAAA,IACN,EAAE;AAAA,EACJ;AACA,SAAO,CAAC;AACV;AAMA,IAAMC,iBAAqC,oBAAI,IAAI;AAAA,EACjD;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,CAAC;AAID,IAAM,iBAAsC,oBAAI,IAAI;AAAA,EAClD;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,CAAC;AAOD,IAAM,4BAAiD,oBAAI,IAAI;AAAA,EAC7D;AAAA,EACA;AAAA,EACA;AACF,CAAC;AAGD,SAAS,aAAa,KAAkC;AACtD,QAAM,QAAQ,oBAAI,IAAoB;AACtC,aAAW,KAAKD,SAAQ,IAAI,MAAM,GAAG;AACnC,QAAI,OAAO,EAAE,SAAS,UAAU;AAC9B,YAAM,IAAI,EAAE,MAAM,OAAO,EAAE,SAAS,WAAW,EAAE,OAAO,EAAE;AAAA,IAC5D;AAAA,EACF;AACA,SAAO;AACT;AAWA,SAAS,aAAa,MAA0B;AAC9C,QAAM,OAAmB,CAAC;AAC1B,QAAM,UAAU;AAChB,MAAI;AACJ,UAAQ,IAAI,QAAQ,KAAK,IAAI,OAAO,MAAM;AACxC,UAAM,OAAO,EAAE,CAAC,EAAE,KAAK;AAIvB,QAAI,CAAC,oDAAoD,KAAK,IAAI,EAAG;AACrE,UAAM,WAAW,KAAK,MAAM,GAAG;AAC/B,QAAI,SAAS,CAAC,MAAM,SAAU;AAC9B,UAAM,OAAO,SAAS,MAAM,CAAC;AAC7B,QAAI,KAAK,SAAS,EAAG,MAAK,KAAK,IAAI;AAAA,EACrC;AACA,SAAO;AACT;AAGA,SAAS,aAAa,OAAgB,KAAqB;AACzD,MAAI,OAAO,UAAU,UAAU;AAC7B,QAAI,MAAM,SAAS,GAAG,EAAG,KAAI,KAAK,KAAK;AACvC;AAAA,EACF;AACA,MAAI,MAAM,QAAQ,KAAK,GAAG;AACxB,eAAW,KAAK,MAAO,cAAa,GAAG,GAAG;AAC1C;AAAA,EACF;AACA,MAAI,SAAS,OAAO,UAAU,UAAU;AACtC,eAAW,KAAK,OAAO,OAAO,KAAe,EAAG,cAAa,GAAG,GAAG;AAAA,EACrE;AACF;AAMA,IAAM,mBAAmB;AAAA,EACvB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAiBA,SAAS,kBAAkB,MAAc,SAAkC;AACzE,QAAM,eAA+B,CAAC;AACtC,QAAM,cAA8B,CAAC;AAErC,aAAW,OAAO,kBAAkB;AAClC,QAAI,EAAE,OAAO,MAAO;AACpB,UAAM,QAAQ,KAAK,GAAG;AACtB,UAAM,cAAc,WAAW,CAAC,CAAC,SAAS,OAAO,UAAU,YAAY,CAAC,MAAM,QAAQ,KAAK;AAE3F,QAAI,aAAa;AACf,YAAM,EAAE,QAAQ,GAAG,KAAK,IAAI;AAC5B,YAAM,WAAqB,CAAC;AAC5B,mBAAa,QAAQ,QAAQ;AAC7B,iBAAW,QAAQ,SAAU,cAAa,KAAK,EAAE,MAAM,UAAU,KAAK,CAAC;AACvE,YAAM,UAAoB,CAAC;AAC3B,mBAAa,MAAM,OAAO;AAC1B,iBAAW,QAAQ,QAAS,aAAY,KAAK,EAAE,MAAM,UAAU,MAAM,CAAC;AACtE;AAAA,IACF;AAEA,UAAM,QAAkB,CAAC;AACzB,iBAAa,OAAO,KAAK;AACzB,eAAW,QAAQ,MAAO,aAAY,KAAK,EAAE,MAAM,UAAU,MAAM,CAAC;AAAA,EACtE;AAEA,SAAO,CAAC,GAAG,cAAc,GAAG,WAAW;AACzC;AAGA,SAAS,kBAAkB,MAAc,aAA8B;AACrE,MAAI,KAAK,SAAS,gBAAiB,QAAO;AAC1C,QAAM,cAAc,OAAO,YAAY,gBAAgB,WAAW,YAAY,cAAc;AAC5F,SAAO,CAAC,CAAC,eAAe,YAAY,WAAW,SAAS;AAC1D;AAGA,SAAS,cAAc,MAAkC;AACvD,QAAM,QAAQ,MAAM,QAAQ,KAAK,KAAK,IAAK,KAAK,QAAqB,CAAC;AACtE,QAAM,QAAQ,MAAM,KAAK,CAAC,MAAM,GAAG,SAAS,OAAO;AACnD,MAAI,CAAC,MAAO,QAAO;AACnB,QAAM,SAAU,MAAM,UAAU,CAAC;AACjC,QAAM,QAAS,MAAM,SAAS,CAAC;AAC/B,QAAM,aAAa,OAAO,OAAO,eAAe,WAAW,OAAO,aAAa;AAC/E,QAAM,YAAY,OAAO,MAAM,eAAe,WAAW,MAAM,aAAa;AAC5E,SAAO,cAAc;AACvB;AASA,SAAS,iBAAiB,MAA2B;AACnD,QAAM,QAAQ,MAAM,QAAQ,KAAK,KAAK,IAAK,KAAK,QAAqB,CAAC;AACtE,QAAM,QAAQ,MAAM,KAAK,CAAC,MAAM,GAAG,SAAS,OAAO;AACnD,QAAM,OAAQ,OAAO,UAAU,CAAC,GAAc;AAC9C,MAAI,OAAO,QAAQ,SAAU,QAAO,IAAI,IAAI,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC;AAC5D,MAAI,MAAM,QAAQ,GAAG,EAAG,QAAO,IAAI,IAAI,IAAI,OAAO,CAAC,MAAmB,OAAO,MAAM,YAAY,EAAE,SAAS,CAAC,CAAC;AAC5G,SAAO,oBAAI,IAAI;AACjB;AAMO,SAAS,0BAA0B,OAA0C;AAClF,QAAM,WAAsC,CAAC;AAC7C,QAAM,QAAQA,SAAQ,MAAM,KAAK;AACjC,MAAI,MAAM,WAAW,EAAG,QAAO;AAE/B,QAAM,gBAAgB,oBAAI,IAAoB;AAC9C,aAAW,OAAOA,SAAQ,MAAM,OAAO,GAAG;AACxC,QAAI,OAAO,IAAI,SAAS,SAAU,eAAc,IAAI,IAAI,MAAM,GAAG;AAAA,EACnE;AAEA,QAAM,QAAQ,CAAC,MAAM,cAAc;AACjC,UAAM,WAAW,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO,IAAI,SAAS;AAC1E,UAAM,QAAQ,MAAM,QAAQ,KAAK,KAAK,IAAK,KAAK,QAAqB,CAAC;AACtE,UAAM,QAAS,MAAM,KAAK,CAAC,MAAM,GAAG,SAAS,OAAO,GAAG,UAAU,CAAC;AAClE,QAAI,CAAC,kBAAkB,MAAM,KAAK,EAAG;AAErC,UAAM,aAAa,cAAc,IAAI;AACrC,QAAI,CAAC,WAAY;AACjB,UAAM,MAAM,cAAc,IAAI,UAAU;AAIxC,QAAI,CAAC,IAAK;AAEV,UAAM,aAAa,aAAa,GAAG;AACnC,UAAM,YAAY,iBAAiB,IAAI;AAEvC,UAAM,QAAQ,CAAC,MAAM,cAAc;AACjC,UAAI,OAAO,SAAS,YAAY,CAAC,KAAM;AACvC,YAAM,YACJ,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO,OAAO,KAAK,OAAO,WAAW,KAAK,KAAK,IAAI,SAAS;AAInG,YAAM,WAAW,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO;AAC7D,YAAM,UAAU,0BAA0B,IAAI,QAAQ;AACtD,YAAM,SAAS,kBAAkB,MAAgB,OAAO;AACxD,UAAI,OAAO,WAAW,EAAG;AAGzB,YAAM,cAAc,oBAAI,IAAY;AACpC,YAAM,gBAAgB,oBAAI,IAAY;AAEtC,iBAAW,QAAQ,QAAQ;AACzB,cAAM,WAAW,KAAK;AACtB,mBAAW,QAAQ,aAAa,KAAK,IAAI,GAAG;AAC1C,gBAAM,OAAO,KAAK,CAAC;AACnB,gBAAM,aAAa,KAAK,SAAS;AAEjC,gBAAM,mBAAmB,cAAc,CAAC,QAAQ,KAAK,KAAK,CAAC,CAAC;AAE5D,gBAAM,UAAU,WAAW,IAAI,IAAI,KAAKC,eAAc,IAAI,IAAI;AAE9D,cAAI,CAAC,SAAS;AACZ,gBAAI,YAAY,IAAI,IAAI,EAAG;AAC3B,wBAAY,IAAI,IAAI;AACpB,qBAAS,KAAK;AAAA,cACZ,UAAU,WAAW,UAAU;AAAA,cAC/B,MAAM;AAAA,cACN,OAAO,SAAS,QAAQ,WAAW,SAAS;AAAA,cAC5C,MAAM,SAAS,SAAS,WAAW,SAAS;AAAA,cAC5C,SAAS,WACL,GAAG,QAAQ,+BAA+B,KAAK,KAAK,GAAG,CAAC,YAAY,IAAI,+BAC7D,UAAU,iKAErB,gCAAgC,KAAK,KAAK,GAAG,CAAC,YAAY,IAAI,+BACnD,UAAU;AAAA,cACzB,MAAM,WACF,6TAIA;AAAA,YAEN,CAAC;AACD;AAAA,UACF;AAEA,cAAI,kBAAkB;AACpB,kBAAM,WAAW,WAAW,IAAI,IAAI,KAAK;AACzC,gBAAI,eAAe,IAAI,QAAQ,KAAK,CAAC,UAAU,IAAI,IAAI,GAAG;AACxD,oBAAM,MAAM,KAAK,KAAK,GAAG;AACzB,kBAAI,cAAc,IAAI,GAAG,EAAG;AAC5B,4BAAc,IAAI,GAAG;AACrB,uBAAS,KAAK;AAAA,gBACZ,UAAU,WAAW,UAAU;AAAA,gBAC/B,MAAM;AAAA,gBACN,OAAO,SAAS,QAAQ,WAAW,SAAS;AAAA,gBAC5C,MAAM,SAAS,SAAS,WAAW,SAAS;AAAA,gBAC5C,SAAS,WACL,GAAG,QAAQ,+BAA+B,GAAG,sCAC1C,QAAQ,WAAW,IAAI,qCAAgC,IAAI,uMAG9D,gCAAgC,GAAG,sCAAsC,QAAQ,WAC7E,IAAI,qCAAgC,IAAI;AAAA,gBAEhD,MAAM,WACF,8BAA8B,IAAI,2JAErB,IAAI,qDAAqD,UAAU,uFAEhF,8BAA8B,IAAI,2JAErB,IAAI,qDAAqD,UAAU;AAAA,cACtF,CAAC;AAAA,YACH;AAAA,UAKF;AAAA,QACF;AAAA,MACF;AAAA,IACF,CAAC;AAAA,EACH,CAAC;AAED,SAAO;AACT;;;ACjWO,IAAM,6BAA6B;AACnC,IAAM,kCAAkC;AAK/C,SAASC,SAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO;AAAA,MACvD;AAAA,MACA,GAAI;AAAA,IACN,EAAE;AAAA,EACJ;AACA,SAAO,CAAC;AACV;AAeA,SAAS,mBAAmB,SAAgE;AAC1F,QAAM,MAAM,oBAAI,IAA4C;AAC5D,aAAW,OAAO,SAAS;AACzB,UAAM,OAAO,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO;AACvD,QAAI,CAAC,KAAM;AACX,UAAM,WAAW,oBAAI,IAA+B;AACpD,UAAM,UAAU,CAAC,WAAmB,QAAsB;AACxD,YAAM,KAAK,KAAK;AAChB,YAAM,eAAe,MAAM,QAAQ,EAAE,OAAO,OAAO,YAAY,GAAG,KAAK,MAAM;AAC7E,eAAS,IAAI,WAAW,EAAE,UAAU,KAAK,aAAa,MAAM,aAAa,CAAC;AAAA,IAC5E;AACA,UAAM,SAAS,IAAI;AACnB,QAAI,MAAM,QAAQ,MAAM,GAAG;AACzB,iBAAW,KAAK,QAAoB;AAClC,cAAM,KAAM,GAAc;AAC1B,YAAI,OAAO,OAAO,SAAU,SAAQ,IAAI,CAAW;AAAA,MACrD;AAAA,IACF,WAAW,UAAU,OAAO,WAAW,UAAU;AAC/C,iBAAW,CAAC,IAAI,GAAG,KAAK,OAAO,QAAQ,MAAgB,EAAG,SAAQ,IAAI,GAAa;AAAA,IACrF;AACA,QAAI,IAAI,MAAM,QAAQ;AAAA,EACxB;AACA,SAAO;AACT;AAQA,SAAS,sBAAsB,QAAoC;AACjE,QAAM,MAAM,OAAO,cAAc,OAAO;AACxC,MAAI,OAAO,QAAQ,YAAY,IAAI,SAAS,GAAG,EAAG,QAAO;AACzD,SAAO,OAAO;AAChB;AAMO,SAAS,2BAA2B,OAA2C;AACpF,QAAM,WAAuC,CAAC;AAC9C,QAAM,QAAQA,SAAQ,MAAM,KAAK;AACjC,MAAI,MAAM,WAAW,EAAG,QAAO;AAE/B,QAAM,UAAU,mBAAmBA,SAAQ,MAAM,OAAO,CAAC;AAEzD,QAAM,QAAQ,CAAC,MAAM,cAAc;AAIjC,QAAI,KAAK,UAAU,SAAU;AAC7B,UAAM,QAAQ,KAAK,UAAU,UAAU,KAAK,UAAU,WAAW,KAAK,QAAQ;AAE9E,UAAM,WAAW,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO,IAAI,SAAS;AAC1E,UAAM,QAAQ,MAAM,QAAQ,KAAK,KAAK,IAAK,KAAK,QAAqB,CAAC;AAEtE,UAAM,QAAQ,CAAC,MAAM,cAAc;AACjC,UAAI,MAAM,SAAS,gBAAiB;AACpC,YAAM,SAAU,KAAK,UAAU,CAAC;AAEhC,YAAM,aAAa,sBAAsB,MAAM;AAC/C,UAAI,CAAC,WAAY;AACjB,YAAM,WAAW,QAAQ,IAAI,UAAU;AACvC,UAAI,CAAC,SAAU;AAEf,YAAM,SAAS,OAAO;AAGtB,UAAI,CAAC,UAAU,OAAO,WAAW,YAAY,MAAM,QAAQ,MAAM,EAAG;AAEpE,YAAM,WACJ,OAAO,KAAK,UAAU,YAAY,KAAK,QACnC,KAAK,QACL,OAAO,KAAK,OAAO,YAAY,KAAK,KAClC,KAAK,KACL,IAAI,SAAS;AAErB,iBAAW,aAAa,OAAO,KAAK,MAAgB,GAAG;AACrD,cAAM,OAAO,SAAS,IAAI,SAAS;AACnC,YAAI,CAAC,KAAM;AAEX,YAAI,KAAK,UAAU;AACjB,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN,OAAO,SAAS,QAAQ,kBAAa,QAAQ;AAAA,YAC7C,MAAM,SAAS,SAAS,WAAW,SAAS,mBAAmB,SAAS;AAAA,YACxE,SACE,iBAAiB,SAAS,oBAAoB,UAAU,0CAC9C,KAAK;AAAA,YAEjB,MACE,yMAEW,SAAS;AAAA,UACxB,CAAC;AAAA,QACH,WAAW,KAAK,cAAc;AAC5B,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN,OAAO,SAAS,QAAQ,kBAAa,QAAQ;AAAA,YAC7C,MAAM,SAAS,SAAS,WAAW,SAAS,mBAAmB,SAAS;AAAA,YACxE,SACE,iBAAiB,SAAS,oBAAoB,UAAU,8EACd,KAAK;AAAA,YAEjD,MACE;AAAA,UAEJ,CAAC;AAAA,QACH;AAAA,MACF;AAAA,IACF,CAAC;AAAA,EACH,CAAC;AAED,SAAO;AACT;;;AClKO,IAAM,uBAAuB;AAIpC,IAAM,sBAAsB,CAAC,QAAQ,QAAQ,aAAa,WAAW;AAGrE,SAAS,UAAU,GAAoD;AACrE,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO,EAAE,IAAI,CAAC,OAAO,OAAO,EAAE,KAAK,IAAI,CAAC,KAAK,MAAM,EAAE;AAC3E,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,KAAK,OAAO,EAAE,KAAK,IAAI,IAAI,IAAI,MAAM,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAGA,SAAS,mBAAmB,KAAqB;AAC/C,QAAM,QAAQ,CAAC,SACb,QAAQ,OAAO,SAAS,YAAY,CAAC,MAAM,QAAQ,IAAI,IAAI,OAAO,KAAK,IAAc,EAAE,SAAS;AAClG,UAAQ,IAAI,OAAO,IAAI,MAAM,IAAI,OAAO,IAAI,KAAK,MAAM,IAAI,SAAS,IAAI,MAAM,IAAI,SAAS;AAC7F;AAOO,SAAS,uBAAuB,OAAwD;AAC7F,QAAM,MAA8B,CAAC;AACrC,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAEhD,aAAW,EAAE,KAAK,MAAM,KAAK,UAAW,MAAiB,KAAK,GAAG;AAE/D,QAAI,CAAC,SAAS,OAAO,UAAU,YAAY,MAAM,QAAQ,KAAK,EAAG;AACjE,UAAM,MAAM;AAGZ,QAAI,IAAI,YAAY,KAAM;AAE1B,QAAI,mBAAmB,GAAG,IAAI,EAAG;AAEjC,UAAMC,SAAQ,OAAO,IAAI,SAAS,WAAW,MAAM,IAAI,IAAI,OAAO;AAClE,UAAM,mBAAmB,oBAAoB,KAAK,CAAC,MAAM,KAAK,GAAG;AAGjE,UAAM,YAAY,CAAC,oBACd,CAAC,QAAQ,WAAW,QAAQ,UAAU,MAAM,EAAE,KAAK,CAAC,MAAM,KAAK,GAAG;AAEvE,QAAI,KAAK;AAAA,MACP,UAAU;AAAA,MACV,MAAM;AAAA,MACN,OAAO,QAAQ,GAAG,GAAGA,MAAK;AAAA,MAC1B,MAAM,QAAQ,GAAG;AAAA,MACjB,SAAS,YACL,uLAGA;AAAA,MAEJ,MAAM;AAAA,IAGR,CAAC;AAAA,EACH;AAEA,SAAO;AACT;;;ACxEO,IAAM,wBAAwB;AAC9B,IAAM,2BAA2B;AACjC,IAAM,2BAA2B;AACjC,IAAM,6BAA6B;AACnC,IAAM,sBAAsB;AAInC,IAAM,cAAc,CAAC,SAAS,UAAU,SAAS,QAAQ;AAKzD,IAAM,eAAe,oBAAI,IAAY;AAAA;AAAA,EAEnC;AAAA,EAAW;AAAA,EAAW;AAAA,EAAW;AAAA,EAAW;AAAA,EAAW;AAAA,EAAW;AAAA,EAAW;AAAA,EAAY;AAAA,EACzF;AAAA,EAAU;AAAA,EAAa;AAAA,EAAa;AAAA,EAAa;AAAA,EACjD;AAAA,EAAa;AAAA,EAAa;AAAA,EAC1B;AAAA,EAAW;AAAA,EAAkB;AAAA,EAAe;AAAA,EAAc;AAAA,EAAS;AAAA,EAAoB;AAAA;AAAA,EAEvF;AAAA,EAAc;AAAA,EAAc;AAAA,EAAQ;AAAA,EAAmB;AAAA,EAAW;AAAA,EAClE;AAAA,EAAW;AAAA,EAAsB;AAAA,EAAa;AAAA,EAC9C;AAAA,EAAS;AAAA,EAAoB;AAAA,EAAU;AAAA,EACvC;AAAA,EAAe;AAAA,EAA0B;AAAA,EAAU;AAAA,EAAS;AAAA,EAC5D;AAAA,EAAW;AAAA,EAAsB;AAAA,EAAW;AAAA,EAC5C;AAAA,EAAW;AAAA,EAAW;AAAA,EAAW;AAAA,EAAW;AAC9C,CAAC;AAKD,IAAM,uBAAuB,oBAAI,IAAY;AAAA,EAC3C;AAAA,EAAW;AAAA,EAAY;AAAA,EAAO;AAAA,EAAS;AAAA,EAAU;AAAA,EAAQ;AAAA,EAAS;AAAA,EAAU;AAAA,EAAY;AAAA,EAAa;AAAA,EAAa;AAAA,EAAc;AAAA,EAAa;AAAA,EAAS;AAAA,EACtJ;AAAA,EAAS;AAAA,EAAU;AAAA,EAAY;AAAA,EAAa;AAAA,EAAY;AAAA,EAAa;AAAA,EACrE;AAAA,EAAU;AAAA,EAAa;AAAA,EAAe;AAAA,EAAgB;AAAA,EAAc;AAAA,EAAgB;AAAA,EACpF;AAAA,EAAW;AAAA,EAAc;AAAA,EAAgB;AAAA,EAAiB;AAAA,EAAe;AAAA,EAAiB;AAAA,EAC1F;AAAA,EAAQ;AAAA,EAAiB;AAAA,EAAY;AAAA,EAAY;AAAA,EAAc;AAAA,EAAa;AAAA,EAAc;AAAA,EAAgB;AAAA,EAAa;AAAA,EAAkB;AAAA,EAAgB;AAAA,EAAe;AAAA,EAAO;AAAA,EAAU;AAAA,EAAa;AAAA,EAAS;AAAA,EAAc;AAAA,EAC7N;AAAA,EAAQ;AAAA,EAAgB;AAAA,EAAuB;AAAA,EAAoB;AAAA,EAAqB;AAAA,EAAc;AAAA,EAAW;AAAA,EAAY;AAAA,EAAgB;AAAA,EAAmB;AAAA,EAChK;AAAA,EAAS;AAAA,EAAmB;AAAA,EAAc;AAAA,EAAmB;AAAA,EAAkB;AAAA,EAAsB;AAAA,EAAoB;AAAA,EAAkB;AAAA,EAAW;AAAA,EACtJ;AAAA,EAAY;AAAA,EAAc;AAAA,EAAc;AAAA,EAAa;AAAA,EAAc;AAAA,EAAiB;AAAA,EAAa;AAAA,EAAiB;AAAA,EAAkB;AAAA,EAAgB;AAAA,EAAc;AAAA,EAAa;AAAA,EAAgB;AAAA,EAAsB;AAAA,EAAiB;AAAA,EACtO;AAAA,EAAU;AAAA,EAAa;AAAA,EAAe;AAAA,EAAgB;AAAA,EAAc;AAAA,EAAe;AAAA,EAAe;AAAA,EAAe;AAAA,EAAgB;AAAA,EAAuB;AAAA,EAAwB;AAAA,EAA0B;AAAA,EAA2B;AAAA,EAAW;AAAA,EAChP;AAAA,EAAa;AAAA,EAAa;AAAA,EAAmB;AAAA,EAAc;AAAA,EAAsB;AAAA,EAAsB;AAAA,EAA4B;AAAA,EAAmB;AAAA,EAAa;AAAA,EAAU;AAAA,EAAkB;AAAA,EAC/L;AAAA,EAAU;AAAA,EAAiB;AAAA,EAAc;AAAA,EAAa;AAAA,EAAkB;AAC1E,CAAC;AAED,IAAM,SAAS;AAOf,IAAM,aAAa;AACnB,IAAM,gBAAgB;AACtB,IAAM,UAAU;AAEhB,SAAS,kBAAkB,WAA4B;AACrD,SAAO,UAAU,MAAM,KAAK,EAAE,KAAK,CAAC,QAAQ;AAC1C,QAAI,CAAC,IAAK,QAAO;AACjB,QAAI,WAAW,KAAK,GAAG,EAAG,QAAO;AACjC,QAAI,aAAa,KAAK,GAAG,EAAG,QAAO;AACnC,QAAI,cAAc,KAAK,GAAG,EAAG,QAAO;AACpC,QAAI,QAAQ,KAAK,GAAG,EAAG,QAAO;AAC9B,WAAO;AAAA,EACT,CAAC;AACH;AAEA,SAASC,SAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAIA,SAAS,WAAW,MAAwB;AAC1C,QAAM,QAAS,KAAK,cAAyB,CAAC;AAC9C,QAAM,MAAgB,CAAC;AACvB,aAAW,KAAK,CAAC,KAAK,UAAU,MAAM,UAAU,KAAK,MAAM,MAAM,IAAI,GAAG;AACtE,QAAI,MAAM,QAAQ,CAAC,EAAG,KAAI,KAAK,GAAI,EAAE,OAAO,CAAC,MAAM,KAAK,OAAO,MAAM,QAAQ,CAAc;AAAA,EAC7F;AACA,SAAO;AACT;AAEA,SAAS,UAAU,MAAc,UAAkB,MAAc,UAAgC;AAC/F,QAAM,KAAK,OAAO,KAAK,OAAO,WAAW,KAAK,KAAK;AACnD,QAAM,OAAO,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO;AACzD,QAAM,QAAQ,SAAS,QAAQ,YAAO,KAAK,SAAS,EAAE,MAAM,IAAI,IAAI,GAAG;AACvE,QAAM,KAAK,KAAK;AAChB,QAAM,QAAQ,CAAC,CAAC,MAAM,OAAO,OAAO,YAAY,YAAY,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;AAG7E,MAAI,SAAS,CAAC,IAAI;AAChB,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MAAS,MAAM;AAAA,MAAuB;AAAA,MAAO;AAAA,MACvD,SAAS;AAAA,MACT,MAAM;AAAA,IACR,CAAC;AAAA,EACH;AAGA,MAAI,SAAS,CAAC,GAAI,SAAS,YAAY,MAAM,CAAC,EAAE,KAAK,CAAC,MAAM,GAAI,CAAC,CAAC,GAAG;AACnE,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MAAW,MAAM;AAAA,MAA0B;AAAA,MAAO;AAAA,MAC5D,SAAS;AAAA,MACT,MAAM;AAAA,IACR,CAAC;AAAA,EACH;AAGA,MAAI,OAAO,KAAK,cAAc,YAAY,KAAK,UAAU,KAAK,KAAK,kBAAkB,KAAK,SAAS,GAAG;AACpG,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MAAW,MAAM;AAAA,MAA0B;AAAA,MAAO;AAAA,MAC5D,SAAS,uDAAuD,KAAK,UAAU,KAAK,EAAE,MAAM,GAAG,EAAE,CAAC;AAAA,MAClG,MAAM;AAAA,IACR,CAAC;AAAA,EACH;AAGA,MAAI,MAAM,OAAO,OAAO,UAAU;AAChC,eAAW,MAAM,aAAa;AAC5B,YAAM,MAAM,GAAG,EAAE;AACjB,UAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,iBAAW,CAAC,MAAM,KAAK,KAAK,OAAO,QAAQ,GAAG,GAAG;AAC/C,YAAI,CAAC,KAAK,WAAW,IAAI,KAAK,CAAC,qBAAqB,IAAI,IAAI,GAAG;AAC7D,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YAAW,MAAM;AAAA,YAA4B;AAAA,YAAO,MAAM,GAAG,IAAI,qBAAqB,EAAE;AAAA,YAClG,SAAS,yBAAyB,IAAI;AAAA,YACtC,MAAM;AAAA,UACR,CAAC;AAAA,QACH;AACA,YAAI,OAAO,UAAU,UAAU;AAC7B,cAAI;AACJ,iBAAO,YAAY;AACnB,iBAAQ,IAAI,OAAO,KAAK,KAAK,GAAI;AAC/B,kBAAM,QAAQ,EAAE,CAAC;AACjB,gBAAI,CAAC,aAAa,IAAI,KAAK,KAAK,CAAC,MAAM,WAAW,KAAK,GAAG;AACxD,uBAAS,KAAK;AAAA,gBACZ,UAAU;AAAA,gBAAW,MAAM;AAAA,gBAAqB;AAAA,gBAAO,MAAM,GAAG,IAAI,qBAAqB,EAAE,IAAI,IAAI;AAAA,gBACnG,SAAS,2CAA2C,KAAK;AAAA,gBACzD,MAAM;AAAA,cACR,CAAC;AAAA,YACH;AAAA,UACF;AAAA,QACF;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAGA,QAAM,OAAO,WAAW,IAAI;AAC5B,WAAS,IAAI,GAAG,IAAI,KAAK,QAAQ,KAAK;AACpC,cAAU,KAAK,CAAC,GAAG,UAAU,GAAG,IAAI,aAAa,CAAC,KAAK,QAAQ;AAAA,EACjE;AACF;AAQO,SAAS,yBAAyB,OAA+B;AACtE,QAAM,WAA2B,CAAC;AAClC,QAAM,QAAQA,SAAQ,MAAM,KAAK;AACjC,WAAS,IAAI,GAAG,IAAI,MAAM,QAAQ,KAAK;AACrC,UAAM,OAAO,MAAM,CAAC;AACpB,UAAM,WAAW,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO,SAAS,CAAC;AACvE,UAAM,UAAUA,SAAQ,KAAK,OAAO;AACpC,aAAS,IAAI,GAAG,IAAI,QAAQ,QAAQ,KAAK;AACvC,YAAM,aAAaA,SAAQ,QAAQ,CAAC,EAAE,UAAU;AAChD,eAAS,IAAI,GAAG,IAAI,WAAW,QAAQ,KAAK;AAC1C,kBAAU,WAAW,CAAC,GAAG,UAAU,SAAS,CAAC,aAAa,CAAC,gBAAgB,CAAC,KAAK,QAAQ;AAAA,MAC3F;AAAA,IACF;AAAA,EACF;AACA,SAAO;AACT;;;ACzLA,SAAS,UAAU,eAA8B;AAgBjD,IAAMC,WAAU,CAAC,MAA0B,MAAM,QAAQ,CAAC,IAAK,IAAiB,CAAC;AAE1E,SAAS,iBAAiB,OAAe,OAAgC,CAAC,GAAqB;AACpG,QAAM,WAA6B,CAAC;AACpC,QAAM,QAAQA,SAAQ,MAAM,KAAK;AACjC,WAAS,IAAI,GAAG,IAAI,MAAM,QAAQ,KAAK;AACrC,UAAM,OAAO,MAAM,CAAC;AAEpB,QAAI,CAAC,QAAS,KAAK,SAAS,UAAU,KAAK,SAAS,MAAQ;AAC5D,UAAM,OAAO,OAAO,KAAK,QAAQ,IAAI,CAAC,EAAE;AACxC,UAAM,SAAS,KAAK;AACpB,QAAI,OAAO,WAAW,YAAY,OAAO,KAAK,MAAM,IAAI;AAEtD,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,SAAS,IAAI;AAAA,QACpB,MAAM,SAAS,CAAC;AAAA,QAChB,SAAS,SAAS,KAAK,IAAI;AAAA,QAC3B,MAAM;AAAA,MACR,CAAC;AACD;AAAA,IACF;AAGA,UAAM,EAAE,YAAY,IAAI,KAAK,WAAW,QAAQ,QAAQ,KAAK,QAAQ,IAAI,SAAS,MAAM;AACxF,eAAW,KAAK,aAAa;AAC3B,eAAS,KAAK;AAAA,QACZ,UAAU,EAAE;AAAA,QACZ,MAAM,OAAO,EAAE,IAAI;AAAA,QACnB,OAAO,EAAE,MAAM,SAAS,IAAI,aAAQ,EAAE,GAAG,MAAM,SAAS,IAAI;AAAA,QAC5D,MAAM,SAAS,CAAC;AAAA,QAChB,SAAS,EAAE;AAAA,QACX,MAAM;AAAA,MACR,CAAC;AAAA,IACH;AAAA,EACF;AACA,SAAO;AACT;;;AChEA,SAAS,qBAAqB;AAc9B,IAAI,kBAAkD;AACtD,SAAS,uBAAgD;AACvD,MAAI,gBAAiB,QAAO;AAC5B,QAAM,SACJ,OAAO,gBAAgB,eAAe,YAAY,MAC9C,YAAY,MACZ,OAAO,eAAe,cACpB,aACA,QAAQ,IAAI,IAAI;AACxB,MAAI;AACF,sBAAmB,cAAc,MAAM,EAAE,SAAS,EAA6C;AAAA,EACjG,SAAS,KAAK;AACZ,UAAM,IAAI;AAAA,MACR,gHACM,eAAe,QAAQ,IAAI,UAAU,OAAO,GAAG,CAAC;AAAA,IAExD;AAAA,EACF;AACA,SAAO;AACT;AAcA,IAAMC,WAAU,CAAC,MAA0B,MAAM,QAAQ,CAAC,IAAK,IAAiB,CAAC;AAE1E,SAAS,mBAAmB,OAAmC;AACpE,QAAM,WAA+B,CAAC;AACtC,QAAM,QAAQA,SAAQ,MAAM,KAAK;AACjC,WAAS,IAAI,GAAG,IAAI,MAAM,QAAQ,KAAK;AACrC,UAAM,OAAO,MAAM,CAAC;AACpB,QAAI,CAAC,QAAQ,KAAK,SAAS,QAAS;AACpC,UAAM,OAAO,OAAO,KAAK,QAAQ,IAAI,CAAC,EAAE;AACxC,UAAM,SAAS,KAAK;AACpB,QAAI,OAAO,WAAW,YAAY,OAAO,KAAK,MAAM,IAAI;AACtD,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,SAAS,IAAI;AAAA,QACpB,MAAM,SAAS,CAAC;AAAA,QAChB,SAAS;AAAA,QACT,MAAM;AAAA,MACR,CAAC;AACD;AAAA,IACF;AAGA,UAAM,YAAY,qBAAqB;AACvC,QAAI;AAEF,gBAAU,QAAQ,EAAE,YAAY,CAAC,OAAO,YAAY,GAAG,YAAY,KAAK,CAAC;AAAA,IAC3E,SAAS,KAAK;AACZ,YAAM,UAAU,eAAe,QAAQ,IAAI,UAAU,OAAO,GAAG;AAC/D,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,SAAS,IAAI;AAAA,QACpB,MAAM,SAAS,CAAC;AAAA,QAChB,SAAS,2CAA2C,QAAQ,MAAM,IAAI,EAAE,CAAC,CAAC;AAAA,QAC1E,MAAM;AAAA,MACR,CAAC;AAAA,IACH;AAAA,EACF;AACA,SAAO;AACT;;;ACzEA,SAAS,iBAAAC,sBAAqB;AAE9B,SAAS,cAAc,gCAAgC;AAevD,IAAI,WAA6B;AACjC,SAAS,iBAA4B;AACnC,MAAI,SAAU,QAAO;AACrB,QAAM,SACJ,OAAO,gBAAgB,eAAe,YAAY,MAC9C,YAAY,MACZ,OAAO,eAAe,cACpB,aACA,QAAQ,IAAI,IAAI;AACxB,MAAI;AACF,eAAWA,eAAc,MAAM,EAAE,YAAY;AAAA,EAC/C,SAAS,KAAK;AACZ,UAAM,IAAI;AAAA,MACR,mHACM,eAAe,QAAQ,IAAI,UAAU,OAAO,GAAG,CAAC;AAAA,IAExD;AAAA,EACF;AACA,SAAO;AACT;AAcA,IAAMC,YAAU,CAAC,MAA0B,MAAM,QAAQ,CAAC,IAAK,IAAiB,CAAC;AAMjF,IAAM,SAAiC,IAAI;AAAA,EACxC,aAAmG,IAAI,CAAC,MAAM;AAAA,IAC7G,EAAE;AAAA,IACF;AAAA,MACE,kBAAkB,EAAE,aAAa,OAAO,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI;AAAA,MAC5E,YAAY,IAAI,IAAI,EAAE,aAAa,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC;AAAA,IACvD;AAAA,EACF,CAAC;AACH;AAEA,SAAS,aAAa,GAAW,GAAW,MAAM,GAAW;AAC3D,MAAI,KAAK,IAAI,EAAE,SAAS,EAAE,MAAM,IAAI,IAAK,QAAO,MAAM;AACtD,QAAM,KAAK,MAAM,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,GAAG,CAAC,GAAG,MAAM,CAAC;AAC3D,WAAS,IAAI,GAAG,KAAK,EAAE,QAAQ,KAAK;AAClC,QAAI,OAAO,GAAG,CAAC;AACf,OAAG,CAAC,IAAI;AACR,aAAS,IAAI,GAAG,KAAK,EAAE,QAAQ,KAAK;AAClC,YAAM,MAAM,GAAG,CAAC;AAChB,SAAG,CAAC,IAAI,KAAK,IAAI,GAAG,CAAC,IAAI,GAAG,GAAG,IAAI,CAAC,IAAI,GAAG,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,IAAI,IAAI,EAAE;AACjF,aAAO;AAAA,IACT;AAAA,EACF;AACA,SAAO,GAAG,EAAE,MAAM;AACpB;AAEA,SAAS,aAAa,MAAc,OAAmC;AACrE,MAAI,MAAM,IAAI,IAAI,EAAG,QAAO;AAC5B,MAAI,OAAsB;AAC1B,MAAI,QAAQ;AACZ,aAAW,KAAK,OAAO;AACrB,UAAM,IAAI,aAAa,MAAM,CAAC;AAC9B,QAAI,IAAI,OAAO;AAAE,cAAQ;AAAG,aAAO;AAAA,IAAG;AAAA,EACxC;AACA,SAAO,SAAS,IAAI,OAAO;AAC7B;AASA,IAAM,aAAa,uBAAO,YAAY;AAGtC,SAAS,YAAY,KAAgB,IAAmB,MAAoC;AAC1F,MAAI,CAAC,KAAM,QAAO;AAClB,MAAI,IAAI,0BAA0B,IAAI,EAAG,QAAO,YAAY,KAAK,IAAI,KAAK,UAAU;AACpF,MAAI,IAAI,gBAAgB,IAAI,KAAK,IAAI,gCAAgC,IAAI,EAAG,QAAO,KAAK;AACxF,MAAI,IAAI,iBAAiB,IAAI,EAAG,QAAO,OAAO,KAAK,IAAI;AACvD,MAAI,KAAK,SAAS,IAAI,WAAW,YAAa,QAAO;AACrD,MAAI,KAAK,SAAS,IAAI,WAAW,aAAc,QAAO;AACtD,MAAI,KAAK,SAAS,IAAI,WAAW,YAAa,QAAO;AACrD,MAAI,IAAI,yBAAyB,IAAI,GAAG;AACtC,UAAM,MAAiB,CAAC;AACxB,eAAW,MAAM,KAAK,UAAU;AAC9B,YAAM,IAAI,YAAY,KAAK,IAAI,EAAE;AACjC,UAAI,MAAM,WAAY,QAAO;AAC7B,UAAI,KAAK,CAAC;AAAA,IACZ;AACA,WAAO;AAAA,EACT;AACA,MAAI,IAAI,0BAA0B,IAAI,GAAG;AACvC,UAAM,MAA+B,CAAC;AACtC,eAAW,KAAK,KAAK,YAAY;AAE/B,UAAI,CAAC,IAAI,qBAAqB,CAAC,EAAG,QAAO;AACzC,YAAM,MAAM,IAAI,aAAa,EAAE,IAAI,KAAK,IAAI,gBAAgB,EAAE,IAAI,IAAI,EAAE,KAAK,OAAO;AACpF,UAAI,QAAQ,KAAM,QAAO;AACzB,YAAM,IAAI,YAAY,KAAK,IAAI,EAAE,WAAW;AAC5C,UAAI,MAAM,WAAY,QAAO;AAC7B,UAAI,GAAG,IAAI;AAAA,IACb;AACA,WAAO;AAAA,EACT;AACA,SAAO;AACT;AAGA,SAAS,UAAU,KAAgB,IAAmB,MAAgC;AACpF,QAAM,OAAO,KAAK;AAClB,MAAI,CAAC,KAAM,QAAO;AAClB,MAAI,IAAI,gBAAgB,IAAI,EAAG,QAAO,KAAK;AAC3C,MAAI,IAAI,gBAAgB,IAAI,EAAG,QAAO,YAAY,KAAK,IAAI,KAAK,UAAU;AAC1E,SAAO;AACT;AA8BO,IAAM,4BAA4B;AAClC,IAAM,gCAAgC;AACtC,IAAM,2BAA2B;AAExC,IAAM,kBAAkB,CAAC,SAAS,OAAO,OAAO,OAAO,KAAK;AAQ5D,IAAMC,iBAAgB,oBAAI,IAAY;AAAA,EACpC;AAAA,EACA;AAAA,EAAc;AAAA,EAAc;AAAA,EAAc;AAAA,EAC1C;AAAA,EAAY;AAAA,EAAmB;AAAA,EAAa;AAAA,EAC5C;AACF,CAAC;AAOD,SAAS,WAAW,GAAsB;AACxC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO,EAAE,OAAO,CAAC,MAAmB,CAAC,CAAC,KAAK,OAAO,MAAM,QAAQ;AACtF,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO;AAAA,MACvD;AAAA,MACA,GAAI,OAAO,OAAO,QAAQ,WAAY,MAAiB,CAAC;AAAA,IAC1D,EAAE;AAAA,EACJ;AACA,SAAO,CAAC;AACV;AAGA,SAAS,kBAAkB,OAAyC;AAClE,QAAM,MAAM,oBAAI,IAAyB;AACzC,aAAW,OAAO,WAAW,MAAM,OAAO,GAAG;AAC3C,UAAM,OAAO,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO;AACvD,QAAI,CAAC,KAAM;AACX,UAAM,QAAQ,oBAAI,IAAY;AAC9B,eAAW,KAAK,WAAW,IAAI,MAAM,GAAG;AACtC,UAAI,OAAO,EAAE,SAAS,YAAY,EAAE,KAAM,OAAM,IAAI,EAAE,IAAI;AAAA,IAC5D;AACA,QAAI,IAAI,MAAM,KAAK;AAAA,EACrB;AACA,SAAO;AACT;AAEA,IAAM,QAAQ,CAAC,MACb,CAAC,CAAC,KAAK,OAAO,MAAM,YAAY,CAAC,MAAM,QAAQ,CAAC;AAElD,IAAM,QAAQ,CAAC,MACb,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AAS9C,SAAS,iBACP,OACA,cACA,UACM;AACN,QAAM,EAAE,QAAQ,OAAO,KAAK,IAAI;AAChC,QAAM,OAAO,CAAC,UAA6B,MAAc,SAAiB,SACxE,SAAS,KAAK,EAAE,UAAU,MAAM,OAAO,MAAM,SAAS,KAAK,CAAC;AAI9D,MAAI,OAAO,IAAI,MAAM,EAAG;AAExB,QAAM,YAAY,OAAO,IAAI,WAAW;AACxC,MAAI,cAAc,UAAa,cAAc,WAAY;AACzD,MAAI,CAAC,MAAM,SAAS,EAAG;AAEvB,QAAM,KAAK,MAAM,UAAU,QAAQ;AACnC,QAAM,QAAQ,MAAM,UAAU,KAAK;AACnC,QAAM,UAAU,UAAU;AAC1B,QAAM,eAAe,MAAM,OAAO,MAAM,MAAM,OAAO,IAAI,MAAM,QAAQ,KAAK,IAAI;AAGhF,MAAI,MAAM,CAAE,gBAAsC,SAAS,EAAE,GAAG;AAC9D;AAAA,MACE;AAAA,MACA;AAAA,MACA,uBAAuB,EAAE;AAAA,MACzB,eAAe,gBAAgB,KAAK,IAAI,CAAC;AAAA,IAC3C;AAAA,EACF,WAAW,MAAM,OAAO,WAAW,CAAC,OAAO;AACzC;AAAA,MACE;AAAA,MACA;AAAA,MACA,uBAAuB,EAAE;AAAA,MACzB;AAAA,IACF;AAAA,EACF;AAGA,QAAM,aAAa,MAAM,OAAO,IAAI,YAAY,CAAC;AACjD,QAAM,QAAQ,aAAa,aAAa,IAAI,UAAU,IAAI;AAG1D,MAAI,cAAc,OAAO;AACvB,UAAM,WAAW,CAAC,MAA0B,SAAiB;AAC3D,UAAI,CAAC,KAAM;AAEX,UAAI,KAAK,SAAS,GAAG,EAAG;AACxB,UAAI,MAAM,IAAI,IAAI,KAAKA,eAAc,IAAI,IAAI,EAAG;AAChD;AAAA,QACE;AAAA,QACA;AAAA,QACA,aAAa,IAAI,KAAK,IAAI,+BAA+B,UAAU,+CAC3B,SAAS,YAAY,aAAa,WAAW;AAAA,QACrF,+BAA+B,IAAI,QAAQ,UAAU,OAClD,MAAM,OAAO,IAAI,mBAAmB,CAAC,GAAG,KAAK,EAAE,KAAK,EAAE,KAAK,IAAI,CAAC,MAAM;AAAA,MAC3E;AAAA,IACF;AACA,aAAS,OAAO,OAAO;AACvB,aAAS,cAAc,SAAS;AAAA,EAClC;AAGA,QAAM,OAAO,yBAAyB,EAAE,OAAO,UAAU,IAAI,QAAQ,CAAC;AACtE,QAAM,UAAU,CAAC,KAAK,UAAU,KAAK,KAAK,EAAE,OAAO,CAAC,MAAmB,CAAC,CAAC,CAAC;AAC1E,MAAI,QAAQ,WAAW,EAAG;AAE1B,QAAM,UAAU,CAAC,MAA0B,SAAiB;AAC1D,QAAI,CAAC,KAAM;AACX,QAAI,QAAQ,SAAS,IAAI,EAAG;AAG5B,QAAI,KAAK,cAAc,SAAS,KAAK,WAAY;AACjD;AAAA,MACE;AAAA,MACA;AAAA,MACA,IAAI,IAAI;AAAA,MAGR,mBAAmB,QAAQ,KAAK,IAAI,CAAC,MAClC,KAAK,aAAa,WAAW,KAAK,UAAU,iCAAiC,MAC9E,UAAU,IAAI;AAAA,IAClB;AAAA,EACF;AAIA,QAAM,WAAW,OAAO,IAAI,OAAO;AACnC,QAAM,eACJ,MAAM,OAAO,IAAI,UAAU,CAAC,KAC5B,MAAM,QAAQ,MACb,MAAM,QAAQ,IAAI,MAAM,SAAS,KAAK,IAAI;AAC7C,QAAM,eAAe,OAAO,IAAI,UAAU,IAAI,aAAa;AAC3D,UAAQ,cAAc,YAAY;AAIlC,QAAM,WAAW,OAAO,IAAI,OAAO;AACnC,QAAM,YAAY,MAAM,QAAQ,QAAQ,IAAI,WAAW,aAAa,SAAY,CAAC,QAAQ,IAAI,CAAC;AAC9F,aAAW,KAAK,WAAW;AACzB,YAAQ,MAAM,CAAC,MAAM,MAAM,CAAC,IAAI,MAAM,EAAE,KAAK,IAAI,SAAY,eAAe;AAAA,EAC9E;AAEA,QAAM,SAAS,OAAO,IAAI,QAAQ;AAClC,MAAI,MAAM,QAAQ,MAAM,GAAG;AACzB,eAAW,KAAK,QAAQ;AACtB,UAAI,CAAC,MAAM,CAAC,EAAG;AACf,YAAM,UAAU,MAAM,EAAE,OAAO;AAC/B,cAAQ,WAAW,MAAM,EAAE,IAAI,GAAG,UAAU,qBAAqB,eAAe;AAAA,IAClF;AAAA,EACF;AAIA,MAAI,gBAAgB,KAAK,YAAY,iBAAiB,KAAK,YAAY,iBAAiB,KAAK,OAAO;AAClG;AAAA,MACE;AAAA,MACA;AAAA,MACA,GAAG,YAAY,KAAK,YAAY;AAAA,MAChC,4DAAuD,KAAK,QAAQ;AAAA,IACtE;AAAA,EACF;AACF;AAEO,SAAS,uBAAuB,OAAmC;AACxE,QAAM,WAA+B,CAAC;AACtC,QAAM,eAAe,kBAAkB,KAAK;AAC5C,QAAM,QAAQD,UAAQ,MAAM,KAAK;AACjC,WAAS,IAAI,GAAG,IAAI,MAAM,QAAQ,KAAK;AACrC,UAAM,OAAO,MAAM,CAAC;AACpB,QAAI,CAAC,QAAQ,KAAK,SAAS,QAAS;AACpC,UAAM,SAAS,KAAK;AACpB,QAAI,OAAO,WAAW,YAAY,OAAO,KAAK,MAAM,GAAI;AACxD,UAAM,OAAO,OAAO,KAAK,QAAQ,IAAI,CAAC,EAAE;AAIxC,UAAM,MAAM,eAAe;AAE3B,QAAI;AACJ,QAAI;AACF,WAAK,IAAI,iBAAiB,YAAY,QAAQ,IAAI,aAAa,QAAQ,MAAM,IAAI,WAAW,GAAG;AAAA,IACjG,QAAQ;AACN;AAAA,IACF;AAEA,UAAM,QAAQ,CAAC,SAAwB;AACrC,UAAI,IAAI,oBAAoB,IAAI,KAAK,IAAI,wBAAwB,IAAI,GAAG;AACtE,cAAM,MAAM,KAAK,QAAQ,QAAQ,EAAE;AACnC,cAAM,QAAQ,OAAO,IAAI,GAAG;AAC5B,YAAI,OAAO;AACT,cAAI,YAAY;AAChB,gBAAM,OAAO,oBAAI,IAAY;AAC7B,gBAAM,SAAS,oBAAI,IAAqB;AACxC,qBAAW,KAAK,KAAK,WAAW,YAAY;AAC1C,gBAAI,IAAI,qBAAqB,CAAC,GAAG;AAAE,0BAAY;AAAM;AAAA,YAAU;AAC/D,gBAAI,IAAI,eAAe,CAAC,GAAG;AACzB,oBAAM,WAAW,EAAE,KAAK,QAAQ,EAAE;AAClC,mBAAK,IAAI,QAAQ;AACjB,qBAAO,IAAI,UAAU,UAAU,KAAK,IAAI,CAAC,CAAC;AAAA,YAC5C;AAAA,UACF;AACA,gBAAM,QAAQ,SAAS,IAAI,aAAQ,GAAG;AACtC,gBAAM,OAAO,SAAS,CAAC;AACvB,cAAI,CAAC,WAAW;AACd,uBAAW,OAAO,MAAM,kBAAkB;AACxC,kBAAI,CAAC,KAAK,IAAI,GAAG,GAAG;AAClB,yBAAS,KAAK;AAAA,kBACZ,UAAU;AAAA,kBACV,MAAM;AAAA,kBACN;AAAA,kBAAO;AAAA,kBACP,SAAS,IAAI,GAAG,mCAAmC,GAAG;AAAA,kBACtD,MAAM,QAAQ,GAAG;AAAA,gBACnB,CAAC;AAAA,cACH;AAAA,YACF;AAAA,UACF;AACA,qBAAW,KAAK,MAAM;AACpB,kBAAM,OAAO,aAAa,GAAG,MAAM,UAAU;AAC7C,gBAAI,MAAM;AACR,uBAAS,KAAK;AAAA,gBACZ,UAAU;AAAA,gBACV,MAAM;AAAA,gBACN;AAAA,gBAAO;AAAA,gBACP,SAAS,IAAI,GAAG,eAAe,CAAC,0BAAqB,IAAI;AAAA,gBACzD,MAAM;AAAA,cACR,CAAC;AAAA,YACH;AAAA,UACF;AAGA,cAAI,QAAQ,iBAAiB,CAAC,WAAW;AACvC,6BAAiB,EAAE,QAAQ,OAAO,KAAK,GAAG,cAAc,QAAQ;AAAA,UAClE;AAAA,QACF;AAAA,MACF;AACA,UAAI,aAAa,MAAM,KAAK;AAAA,IAC9B;AACA,UAAM,EAAE;AAAA,EACV;AACA,SAAO;AACT;;;ACrbO,IAAM,wBAAwB;AAGrC,IAAME,YAAU,CAAC,MAA0B,MAAM,QAAQ,CAAC,IAAK,IAAiB,CAAC;AAGjF,IAAM,iBAAiB;AAEhB,SAAS,0BAA0B,OAAqC;AAC7E,QAAM,WAAiC,CAAC;AACxC,QAAM,QAAQA,UAAQ,MAAM,KAAK;AACjC,WAAS,IAAI,GAAG,IAAI,MAAM,QAAQ,KAAK;AACrC,UAAM,OAAO,MAAM,CAAC;AACpB,QAAI,CAAC,KAAM;AACX,UAAM,OAAO,KAAK;AAClB,QAAI,SAAS,UAAU,SAAS,WAAW,SAAS,MAAO;AAC3D,UAAM,SAAS,KAAK;AACpB,QAAI,OAAO,WAAW,YAAY,OAAO,KAAK,MAAM,GAAI;AACxD,UAAM,OAAO,OAAO,KAAK,QAAQ,IAAI,CAAC,EAAE;AAExC,mBAAe,YAAY;AAC3B,QAAI,QAAQ;AACZ,WAAO,eAAe,KAAK,MAAM,MAAM,KAAM;AAC7C,QAAI,UAAU,EAAG;AAEjB,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MACV,MAAM;AAAA,MACN,OAAO,SAAS,IAAI;AAAA,MACpB,MAAM,SAAS,CAAC;AAAA,MAChB,SAAS,GAAG,KAAK,2BAA2B,QAAQ,IAAI,MAAM,EAAE,OAAO,OAAO,IAAI,CAAC;AAAA,MACnF,MACE,SAAS,UACL,4OACA;AAAA,IACR,CAAC;AAAA,EACH;AACA,SAAO;AACT;;;AC9DA,SAAS,+BAA+B;AA6BjC,IAAM,uBAAuB;AAC7B,IAAM,qBAAqB;AAsBlC,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAQO,SAAS,oBAAoB,OAAqC;AACvE,QAAM,WAAiC,CAAC;AAExC,QAAM,UAAUA,UAAQ,MAAM,OAAO;AACrC,WAAS,IAAI,GAAG,IAAI,QAAQ,QAAQ,KAAK;AACvC,UAAM,MAAM,QAAQ,CAAC;AACrB,UAAM,UAAU,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO,WAAW,CAAC;AACtE,UAAM,QAAQ,WAAW,OAAO;AAChC,UAAM,OAAO,WAAW,CAAC;AAKzB,QAAI,IAAI,gBAAgB,UAAa,IAAI,gBAAgB,QAAQ,IAAI,gBAAgB,IAAI;AACvF,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA;AAAA,QACA,SACE,GAAG,OAAO;AAAA,QAEZ,MACE;AAAA,MAKJ,CAAC;AAAA,IACH;AAKA,UAAM,eAAe,wBAAwB,GAA4B;AACzE,QAAI,aAAa,WAAW,QAAQ;AAClC,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA;AAAA,QACA,SACE,GAAG,OAAO;AAAA,QAEZ,MACE;AAAA,MAIJ,CAAC;AAAA,IACH;AAAA,EACF;AAEA,SAAO;AACT;;;ACtGO,IAAM,yBAAyB;AAC/B,IAAM,oBAAoB;AAC1B,IAAM,uBAAuB;AAC7B,IAAM,8BAA8B;AAsB3C,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAOO,SAAS,sBAAsB,OAAsC;AAC1E,QAAM,WAAkC,CAAC;AAEzC,QAAM,UAAUA,UAAQ,MAAM,OAAO;AACrC,WAAS,IAAI,GAAG,IAAI,QAAQ,QAAQ,KAAK;AACvC,UAAM,MAAM,QAAQ,CAAC;AACrB,QAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,UAAM,UAAU,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO,WAAW,CAAC;AACtE,UAAM,QAAQ,WAAW,OAAO;AAChC,UAAM,OAAO,WAAW,CAAC;AAEzB,UAAM,SAAU,IAAI,UAAU,OAAO,IAAI,WAAW,YAAY,CAAC,MAAM,QAAQ,IAAI,MAAM,IACpF,IAAI,SACL,CAAC;AACL,UAAM,aAAa,IAAI,IAAI,OAAO,KAAK,MAAM,CAAC;AAG9C,UAAM,iBAAiB,IAAI;AAAA,OACxB,MAAM,QAAQ,IAAI,WAAW,IAAI,IAAI,cAAc,CAAC,GAClD,OAAO,CAAC,MAAmB,CAAC,CAAC,KAAK,OAAO,MAAM,QAAQ,EACvD,IAAI,CAAC,MAAM,EAAE,GAAG,EAChB,OAAO,CAAC,MAAmB,OAAO,MAAM,YAAY,EAAE,SAAS,CAAC;AAAA,IACrE;AACA,UAAM,mBAAmB,oBAAI,IAAY;AACzC,eAAW,CAAC,OAAO,CAAC,KAAK,OAAO,QAAQ,MAAM,GAAG;AAC/C,YAAM,IAAI,GAAG;AACb,UAAI,OAAO,MAAM,YAAY,EAAE,WAAW,EAAG;AAC7C,uBAAiB,IAAI,CAAC;AACtB,UAAI,CAAC,eAAe,IAAI,CAAC,GAAG;AAC1B,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN;AAAA,UACA,MAAM,GAAG,IAAI,WAAW,KAAK;AAAA,UAC7B,SACE,GAAG,OAAO,IAAI,KAAK,YAAY,CAAC,iGACyB,CAAC;AAAA,UAC5D,MACE,mBAAmB,CAAC,2BAAsB,OAAO;AAAA,QAErD,CAAC;AAAA,MACH;AAAA,IACF;AAGA,eAAW,OAAO,gBAAgB;AAChC,UAAI,CAAC,iBAAiB,IAAI,GAAG,GAAG;AAC9B,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN;AAAA,UACA,MAAM,GAAG,IAAI;AAAA,UACb,SACE,GAAG,OAAO,2BAA2B,GAAG;AAAA,UAE1C,MACE,yCAAyC,GAAG;AAAA,QAEhD,CAAC;AAAA,MACH;AAAA,IACF;AAGA,UAAM,QAAQ,IAAI;AAClB,QAAI,OAAO,UAAU,YAAY,MAAM,SAAS,KAAK,CAAC,WAAW,IAAI,KAAK,GAAG;AAC3E,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA,MAAM,GAAG,IAAI;AAAA,QACb,SACE,GAAG,OAAO,iBAAiB,KAAK;AAAA,QAElC,MACE;AAAA,MAEJ,CAAC;AAAA,IACH;AAEA,UAAM,aAAa,MAAM,QAAQ,IAAI,eAAe,IAChD,IAAI,kBACJ,MAAM,QAAQ,IAAI,aAAa,IAC7B,IAAI,gBACJ,CAAC;AACP,eAAW,SAAS,YAAY;AAC9B,UAAI,OAAO,UAAU,YAAY,MAAM,WAAW,KAAK,WAAW,IAAI,KAAK,EAAG;AAC9E,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA,MAAM,GAAG,IAAI;AAAA,QACb,SACE,GAAG,OAAO,4BAA4B,KAAK;AAAA,QAE7C,MACE;AAAA,MAEJ,CAAC;AAAA,IACH;AASA,UAAM,kBAAkB,WAAW;AAAA,MACjC,CAAC,MAAmB,OAAO,MAAM,YAAY,EAAE,SAAS;AAAA,IAC1D;AACA,QAAI,gBAAgB,SAAS,KAAK,eAAe,OAAO,GAAG;AAIzD,YAAM,gBAAgB,CAAC,IAAI,WAAW,IAAI,cAAc,IAAI,gBAAgB,EACzE,KAAK,CAAC,MAAmB,OAAO,MAAM,YAAY,EAAE,SAAS,KAAK,WAAW,IAAI,CAAC,CAAC;AACtF,YAAM,aAAa,iBACd,CAAC,QAAQ,aAAa,SAAS,WAAW,cAAc,EAAE,KAAK,CAAC,MAAM,WAAW,IAAI,CAAC,CAAC;AAC5F,YAAM,WAAW,IAAI;AAAA,QACnB,gBAAgB,OAAO,CAAC,MAAM,MAAM,UAAU,EAAE,MAAM,GAAG,CAAC;AAAA,MAC5D;AACA,YAAM,iBAAiB,IAAI,IAAI,QAAQ;AACvC,UAAI,WAAY,gBAAe,IAAI,UAAU;AAE7C,iBAAW,OAAO,gBAAgB;AAChC,cAAM,UAAU,OAAO,QAAQ,MAAM,EAClC,OAAO,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,UAAU,OAAO,GAAG,WAAW,IAAI,EACxD,IAAI,CAAC,CAAC,KAAK,MAAM,KAAK;AACzB,YAAI,QAAQ,WAAW,EAAG;AAC1B,YAAI,CAAC,QAAQ,MAAM,CAAC,MAAM,eAAe,IAAI,CAAC,CAAC,EAAG;AAClD,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN;AAAA,UACA,MAAM,GAAG,IAAI;AAAA,UACb,SACE,GAAG,OAAO,2BAA2B,GAAG,MAAM,QAAQ,KAAK,IAAI,CAAC;AAAA,UAGlE,MACE,+CAA+C,GAAG;AAAA,QAGtD,CAAC;AAAA,MACH;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;;;ACpLO,IAAM,qBAAqB;AAC3B,IAAM,wBAAwB;AAsBrC,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAGA,SAAS,YAAY,OAA+B;AAClD,MAAI,OAAO,UAAU,SAAU,QAAO,MAAM,SAAS,IAAI,QAAQ;AACjE,MAAI,SAAS,OAAO,UAAU,YAAY,CAAC,MAAM,QAAQ,KAAK,GAAG;AAC/D,UAAM,IAAK,MAAiB;AAC5B,WAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AAAA,EACrD;AACA,SAAO;AACT;AAGA,SAAS,YAAY,MAAkC;AACrD,QAAM,OAAO,KAAK;AAClB,MAAI,QAAQ,OAAO,SAAS,YAAY,OAAQ,KAAgB,WAAW,UAAU;AACnF,WAAQ,KAAgB;AAAA,EAC1B;AACA,SAAO,OAAO,KAAK,eAAe,WAAY,KAAK,aAAwB;AAC7E;AAMO,SAAS,mBAAmB,OAAoC;AACrE,QAAM,WAAgC,CAAC;AAGvC,QAAM,eAAe,oBAAI,IAAyB;AAClD,aAAW,OAAOA,UAAQ,MAAM,OAAO,GAAG;AACxC,UAAM,OAAO,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO;AACvD,QAAI,CAAC,KAAM;AACX,UAAM,SAAU,IAAI,UAAU,OAAO,IAAI,WAAW,YAAY,CAAC,MAAM,QAAQ,IAAI,MAAM,IACrF,OAAO,KAAK,IAAI,MAAgB,IAChC,CAAC;AACL,iBAAa,IAAI,MAAM,IAAI,IAAI,MAAM,CAAC;AAAA,EACxC;AAEA,QAAM,QAAQA,UAAQ,MAAM,KAAK;AACjC,WAAS,IAAI,GAAG,IAAI,MAAM,QAAQ,KAAK;AACrC,UAAM,OAAO,MAAM,CAAC;AACpB,QAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,UAAM,WAAW,MAAM,QAAQ,KAAK,QAAQ,IAAI,KAAK,WAAW;AAChE,QAAI,CAAC,SAAU;AAEf,UAAM,WAAW,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO,SAAS,CAAC;AACvE,UAAM,UAAU,YAAY,IAAI;AAEhC,UAAM,QAAQ,UAAU,aAAa,IAAI,OAAO,IAAI;AACpD,UAAM,QAAQ,SAAS,QAAQ;AAC/B,UAAM,OAAO,SAAS,CAAC;AAEvB,aAAS,IAAI,GAAG,IAAI,SAAS,QAAQ,KAAK;AACxC,YAAM,MAAM,SAAS,CAAC;AACtB,YAAM,YAAY,OAAO,OAAO,QAAQ,YAAY,MAAM,QAAS,IAAe,MAAM,IAClF,IAAe,SACjB,CAAC;AACL,eAAS,IAAI,GAAG,IAAI,UAAU,QAAQ,KAAK;AACzC,cAAM,QAAQ,UAAU,CAAC;AACzB,cAAM,QAAQ,YAAY,KAAK;AAC/B,cAAM,QAAQ,GAAG,IAAI,aAAa,CAAC,YAAY,CAAC;AAGhD,YAAI,SAAS,SAAS,CAAC,MAAM,IAAI,KAAK,GAAG;AACvC,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN;AAAA,YACA,MAAM;AAAA,YACN,SACE,GAAG,QAAQ,YAAY,KAAK,+BAA+B,OAAO;AAAA,YAEpE,MACE,+BAA+B,KAAK,QAAQ,OAAO;AAAA,UAEvD,CAAC;AAAA,QACH;AAGA,cAAM,UAAU,SAAS,OAAO,UAAU,YAAY,CAAC,MAAM,QAAQ,KAAK,IACrE,MAAiB,UAClB;AACJ,YAAI,WAAW,MAAM;AACnB,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN;AAAA,YACA,MAAM,GAAG,KAAK;AAAA,YACd,SACE,GAAG,QAAQ,YAAY,SAAS,GAAG,2BAA2B,OAAO,OAAO,CAAC;AAAA,YAG/E,MACE;AAAA,UAEJ,CAAC;AAAA,QACH;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;;;AC5HO,IAAM,8BAA8B;AACpC,IAAM,6BAA6B;AAmC1C,IAAM,YAAY;AAClB,IAAM,UAAU,CAAC,aAAa,YAAY;AAG1C,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAGA,SAAS,gBAAgB,GAAgC;AACvD,MAAI,OAAO,MAAM,SAAU,QAAO;AAClC,MAAI,KAAK,OAAO,MAAM,YAAY,OAAQ,EAAa,WAAW,UAAU;AAC1E,WAAQ,EAAa;AAAA,EACvB;AACA,SAAO;AACT;AAGA,SAAS,SAAS,QAAgB,MAAuB;AAIvD,SAAO,IAAI,OAAO,eAAe,IAAI,QAAQ,EAAE,KAAK,MAAM;AAC5D;AAOA,IAAM,oBAGF;AAAA,EACF,SAAS;AAAA,IACP,eAAe;AAAA,IACf,SACE;AAAA,IAIF,MACE;AAAA,EAGJ;AAAA,EACA,UAAU;AAAA,IACR,eAAe;AAAA,IACf,SACE;AAAA,IAIF,MACE;AAAA,EAEJ;AACF;AAOA,SAAS,aACP,IACA,OACA,MACA,OACA,UACM;AAEN,aAAW,SAAS,SAAS;AAC3B,QAAI,GAAG,KAAK,MAAM,QAAW;AAC3B,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA,MAAM,GAAG,IAAI,IAAI,KAAK;AAAA,QACtB,SACE,KAAK,KAAK;AAAA,QAGZ,MAAM,oBAAoB,KAAK;AAAA,MACjC,CAAC;AAAA,IACH;AAAA,EACF;AAIA,QAAM,MAAM,GAAG,SAAS,KAAK,GAAG,aAAa,GAAG;AAChD,QAAM,SAAS,gBAAgB,GAAG;AAClC,QAAM,OAAO,kBAAkB,KAAK;AACpC,MAAI,UAAU,SAAS,QAAQ,KAAK,aAAa,GAAG;AAClD,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MACV,MAAM;AAAA,MACN;AAAA,MACA;AAAA,MACA,SAAS,KAAK;AAAA,MACd,MAAM,KAAK;AAAA,IACb,CAAC;AAAA,EACH;AACF;AAGA,SAAS,cAAc,OAAiC;AACtD,SAAO,CAAC,CAAC,SAAS,OAAO,UAAU,YAAY,CAAC,MAAM,QAAQ,KAAK;AACrE;AAgBO,SAAS,6BACd,OACA,OAA0B,CAAC,GACN;AACrB,QAAM,QAAyB,KAAK,SAAS;AAC7C,QAAM,WAAgC,CAAC;AAGvC,QAAM,QAAQA,UAAQ,MAAM,KAAK;AACjC,WAAS,IAAI,GAAG,IAAI,MAAM,QAAQ,KAAK;AACrC,UAAM,OAAO,MAAM,CAAC;AACpB,QAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,UAAM,WAAW,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO,SAAS,CAAC;AACvE,UAAM,QAAQ,SAAS,QAAQ;AAI/B,eAAW,UAAU,CAAC,YAAY,QAAQ,GAAY;AACpD,YAAM,WAAW,MAAM,QAAQ,KAAK,MAAM,CAAC,IAAK,KAAK,MAAM,IAAkB,CAAC;AAC9E,eAAS,IAAI,GAAG,IAAI,SAAS,QAAQ,KAAK;AACxC,cAAM,MAAM,SAAS,CAAC;AACtB,YAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,cAAM,UAAU,SAAS,CAAC,KAAK,MAAM,IAAI,CAAC;AAC1C,qBAAa,KAAe,OAAO,SAAS,OAAO,QAAQ;AAE3D,cAAM,YAAY,MAAM,QAAS,IAAe,MAAM,IAAM,IAAe,SAAuB,CAAC;AACnG,iBAAS,IAAI,GAAG,IAAI,UAAU,QAAQ,KAAK;AACzC,gBAAM,QAAQ,UAAU,CAAC;AACzB,cAAI,cAAc,KAAK,GAAG;AACxB,yBAAa,OAAO,OAAO,GAAG,OAAO,WAAW,CAAC,KAAK,OAAO,QAAQ;AAAA,UACvE;AAAA,QACF;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAGA,QAAM,QAAQA,UAAQ,MAAM,KAAK;AACjC,WAAS,IAAI,GAAG,IAAI,MAAM,QAAQ,KAAK;AACrC,UAAM,OAAO,MAAM,CAAC;AACpB,QAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,UAAM,WAAW,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO,SAAS,CAAC;AACvE,UAAM,QAAQ,SAAS,QAAQ;AAC/B,UAAM,UAAU,MAAM,QAAQ,KAAK,OAAO,IAAK,KAAK,UAAwB,CAAC;AAC7E,aAAS,IAAI,GAAG,IAAI,QAAQ,QAAQ,KAAK;AACvC,YAAM,SAAS,QAAQ,CAAC;AACxB,YAAM,aAAa,UAAU,OAAO,WAAW,YAAY,MAAM,QAAS,OAAkB,UAAU,IAChG,OAAkB,aACpB,CAAC;AACL,eAAS,IAAI,GAAG,IAAI,WAAW,QAAQ,KAAK;AAC1C,cAAM,OAAO,WAAW,CAAC;AACzB,YAAI,QAAQ,OAAO,SAAS,UAAU;AACpC,uBAAa,MAAgB,OAAO,SAAS,CAAC,aAAa,CAAC,gBAAgB,CAAC,KAAK,OAAO,QAAQ;AAAA,QACnG;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;;;ACnOA,SAAS,iCAAiC;AAEnC,IAAM,+BAA+B;AAsB5C,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAGA,SAAS,WAAW,GAAsB;AACxC,SAAO,MAAM,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,MAAmB,OAAO,MAAM,YAAY,EAAE,SAAS,CAAC,IAAI,CAAC;AACnG;AAQA,SAAS,sBAAsB,GAAkD;AAC/E,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO,WAAW,CAAC,EAAE,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE;AACjE,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,UAAM,MAA4C,CAAC;AACnD,eAAW,CAAC,KAAK,GAAG,KAAK,OAAO,QAAQ,CAAW,GAAG;AACpD,iBAAW,OAAO,WAAW,GAAG,EAAG,KAAI,KAAK,EAAE,KAAK,IAAI,CAAC;AAAA,IAC1D;AACA,WAAO;AAAA,EACT;AACA,SAAO,CAAC;AACV;AAMO,SAAS,6BAA6B,OAAuC;AAClF,QAAM,WAAmC,CAAC;AAC1C,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAGhD,QAAM,QAAQ,IAAI,IAAY,yBAAyB;AAEvD,aAAW,OAAOA,UAAQ,MAAM,YAAY,GAAG;AAC7C,QAAI,OAAO,IAAI,SAAS,YAAY,IAAI,KAAK,SAAS,EAAG,OAAM,IAAI,IAAI,IAAI;AAAA,EAC7E;AACA,aAAW,MAAMA,UAAQ,MAAM,WAAW,GAAG;AAC3C,eAAW,OAAO,WAAW,GAAG,iBAAiB,EAAG,OAAM,IAAI,GAAG;AAAA,EACnE;AACA,aAAW,QAAQA,UAAQ,MAAM,IAAI,GAAG;AACtC,QAAI,KAAK,WAAW,iBAAkB;AACtC,eAAW,OAAO,MAAM,QAAQ,KAAK,OAAO,IAAI,KAAK,UAAU,CAAC,GAAG;AACjE,YAAM,OAAQ,KAAuB;AACrC,UAAI,OAAO,SAAS,YAAY,KAAK,SAAS,EAAG,OAAM,IAAI,IAAI;AAAA,IACjE;AAAA,EACF;AAEA,QAAM,OACJ;AAKF,QAAM,OAAO,CAAC,KAAa,OAAe,SAAiB;AACzD,QAAI,MAAM,IAAI,GAAG,EAAG;AACpB,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MACV,MAAM;AAAA,MACN;AAAA,MACA;AAAA,MACA,SACE,8CAA8C,GAAG;AAAA,MAGnD;AAAA,IACF,CAAC;AAAA,EACH;AAGA,QAAM,UAAUA,UAAQ,MAAM,OAAO;AACrC,WAAS,IAAI,GAAG,IAAI,QAAQ,QAAQ,KAAK;AACvC,UAAM,MAAM,QAAQ,CAAC;AACrB,QAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,UAAM,UAAU,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO,WAAW,CAAC;AACtE,UAAM,UAAU,WAAW,CAAC;AAE5B,eAAW,EAAE,KAAK,IAAI,KAAK,sBAAsB,IAAI,mBAAmB,GAAG;AACzE,WAAK,KAAK,WAAW,OAAO,KAAK,GAAG,OAAO,uBAAuB,MAAM,IAAI,GAAG,KAAK,EAAE,EAAE;AAAA,IAC1F;AAEA,UAAM,SAASA,UAAQ,IAAI,MAAM;AACjC,eAAW,KAAK,QAAQ;AACtB,YAAM,QAAQ,OAAO,EAAE,SAAS,WAAW,EAAE,OAAO;AACpD,iBAAW,OAAO,WAAW,EAAE,mBAAmB,GAAG;AACnD,aAAK,KAAK,UAAU,OAAO,IAAI,KAAK,KAAK,GAAG,OAAO,WAAW,KAAK,sBAAsB;AAAA,MAC3F;AAAA,IACF;AAEA,eAAW,CAAC,IAAI,MAAM,KAAKA,UAAQ,IAAI,OAAO,EAAE,QAAQ,GAAG;AACzD,YAAM,QAAQ,OAAO,OAAO,SAAS,WAAW,OAAO,OAAO,WAAW,EAAE;AAC3E,iBAAW,OAAO,WAAW,OAAO,mBAAmB,GAAG;AACxD,aAAK,KAAK,WAAW,OAAO,IAAI,KAAK,KAAK,GAAG,OAAO,YAAY,EAAE,uBAAuB;AAAA,MAC3F;AAAA,IACF;AAAA,EACF;AAGA,aAAW,CAAC,GAAG,MAAM,KAAKA,UAAQ,MAAM,OAAO,EAAE,QAAQ,GAAG;AAC1D,UAAM,QAAQ,OAAO,OAAO,SAAS,WAAW,OAAO,OAAO,WAAW,CAAC;AAC1E,eAAW,OAAO,WAAW,OAAO,mBAAmB,GAAG;AACxD,WAAK,KAAK,WAAW,KAAK,KAAK,WAAW,CAAC,uBAAuB;AAAA,IACpE;AAAA,EACF;AAIA,QAAM,OAAOA,UAAQ,MAAM,IAAI;AAC/B,WAAS,IAAI,GAAG,IAAI,KAAK,QAAQ,KAAK;AACpC,UAAM,MAAM,KAAK,CAAC;AAClB,QAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,UAAM,UAAU,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO,QAAQ,CAAC;AACnE,UAAM,OAAO,CAAC,MAAe,SAAiB;AAC5C,UAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,UAAI,MAAM,QAAQ,IAAI,GAAG;AACvB,aAAK,QAAQ,CAAC,OAAO,OAAO,KAAK,OAAO,GAAG,IAAI,IAAI,EAAE,GAAG,CAAC;AACzD;AAAA,MACF;AACA,YAAM,MAAM;AACZ,iBAAW,OAAO,WAAW,IAAI,mBAAmB,GAAG;AACrD,aAAK,KAAK,QAAQ,OAAO,KAAK,GAAG,IAAI,sBAAsB;AAAA,MAC7D;AAEA,UAAI,IAAI,WAAY,MAAK,IAAI,YAAY,GAAG,IAAI,aAAa;AAC7D,UAAI,IAAI,MAAO,MAAK,IAAI,OAAO,GAAG,IAAI,QAAQ;AAC9C,UAAI,IAAI,KAAM,MAAK,IAAI,MAAM,GAAG,IAAI,OAAO;AAC3C,UAAI,IAAI,SAAU,MAAK,IAAI,UAAU,GAAG,IAAI,WAAW;AACvD,UAAI,IAAI,MAAO,MAAK,IAAI,OAAO,GAAG,IAAI,QAAQ;AAAA,IAChD;AACA,SAAK,KAAK,QAAQ,CAAC,GAAG;AAAA,EACxB;AAEA,SAAO;AACT;;;AC5JA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,gCAAgC;AACzC,SAAS,iCAAiC;AAEnC,IAAM,wCAAwC;AAC9C,IAAM,oCAAoC;AAC1C,IAAM,iCAAiC;AACvC,IAAM,qCAAqC;AAC3C,IAAM,yCAAyC;AAC/C,IAAM,uCAAuC;AAC7C,IAAM,8BAA8B;AACpC,IAAM,sCAAsC;AAC5C,IAAM,qCAAqC;AAC3C,IAAM,0CAA0C;AASvD,IAAM,mBAAmB,oBAAI,IAAI,CAAC,WAAW,WAAW,MAAM,CAAC;AAG/D,IAAM,uBAAuB,oBAAI,IAAI,CAAC,YAAY,WAAW,CAAC;AAY9D,IAAM,qBAAqB,oBAAI,IAAI,CAAC,YAAY,QAAQ,YAAY,CAAC;AAiCrE,IAAM,mBAAwC,IAAI,IAAY,wBAAwB;AAGtF,IAAM,uBAAuB,yBAAyB,KAAK,GAAG;AAG9D,IAAM,WAAmC;AAAA,EACvC,eAAe;AAAA,EACf,IAAI;AACN;AAGA,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAMO,SAAS,0BAA0B,OAA0C;AAClF,QAAM,WAAsC,CAAC;AAC7C,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAEhD,QAAM,QAAQA,UAAQ,MAAM,KAAK;AACjC,QAAM,aAAa,IAAI,IAAY,aAAa,OAAO;AAEvD,WAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,UAAM,OAAO,MAAM,EAAE;AACrB,QAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,UAAM,WAAW,OAAO,KAAK,SAAS,WAAW,KAAK,OAAO,SAAS,EAAE;AACxE,UAAM,QAAQ,MAAM,QAAQ,KAAK,KAAK,IAAK,KAAK,QAAqB,CAAC;AAEtE,aAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,YAAM,OAAO,MAAM,EAAE;AACrB,UAAI,CAAC,QAAQ,KAAK,SAAS,mBAAoB;AAC/C,YAAM,SAAS,OAAO,KAAK,OAAO,WAAW,KAAK,KAAK,SAAS,EAAE;AAClE,YAAM,MAAO,KAAK,UAAU,CAAC;AAC7B,YAAM,YAAY,MAAM,QAAQ,IAAI,SAAS,IAAK,IAAI,YAAyB,CAAC;AAChF,YAAM,QAAQ,SAAS,QAAQ,gBAAa,MAAM;AAElD,eAAS,KAAK,GAAG,KAAK,UAAU,QAAQ,MAAM;AAC5C,cAAM,IAAI,UAAU,EAAE;AACtB,YAAI,CAAC,KAAK,OAAO,MAAM,SAAU;AACjC,cAAM,OAAO,OAAO,EAAE,SAAS,WAAW,EAAE,OAAO;AACnD,cAAM,QAAQ,OAAO,EAAE,UAAU,WAAW,EAAE,QAAQ;AACtD,cAAM,OAAO,SAAS,EAAE,WAAW,EAAE,sBAAsB,EAAE;AAE7D,YAAI,QAAQ,CAAC,WAAW,IAAI,IAAI,GAAG;AACjC,gBAAM,MAAM,SAAS,IAAI;AACzB,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN;AAAA,YACA,MAAM,GAAG,IAAI;AAAA,YACb,SACE,kBAAkB,IAAI,6BAA6B,aAAa,QAAQ,KAAK,KAAK,CAAC;AAAA,YACrF,MAAM,MACF,gCAAgC,GAAG,cAAc,KAAK,SACtD,oEAAoE,IAAI,IAAI,KAAK;AAAA,UACvF,CAAC;AACD;AAAA,QACF;AAEA,cAAM,YAAY,sBAAsB,IAAI;AAO5C,YAAI,cAAc,cAAc;AAC9B,gBAAM,SAAS,MAAM,KAAK;AAC1B,cAAI,CAAC,QAAQ;AACX,qBAAS,KAAK;AAAA,cACZ,UAAU;AAAA,cACV,MAAM;AAAA,cACN;AAAA,cACA,MAAM,GAAG,IAAI;AAAA,cACb,SAAS;AAAA,cACT,MACE;AAAA,YAGJ,CAAC;AAAA,UACH,OAAO;AACL,kBAAM,SAAS,0BAA0B,MAAM;AAC/C,gBAAI,CAAC,OAAO,IAAI;AACd,uBAAS,KAAK;AAAA,gBACZ,UAAU;AAAA,gBACV,MAAM;AAAA,gBACN;AAAA,gBACA,MAAM,GAAG,IAAI;AAAA,gBACb,SAAS,8CAA8C,OAAO,KAAK;AAAA,gBACnE,MACE;AAAA,cAEJ,CAAC;AAAA,YACH,OAAO;AACL,oBAAM,UAAU,OAAO,MAAM,OAAO,CAAC,MAAM,CAAC,iBAAiB,IAAI,CAAC,CAAC;AACnE,kBAAI,QAAQ,QAAQ;AAClB,sBAAM,cAAc,QAAQ,SAAS,QAAQ,KAAK,QAAQ,SAAS,UAAU;AAC7E,yBAAS,KAAK;AAAA,kBACZ,UAAU;AAAA,kBACV,MAAM;AAAA,kBACN;AAAA,kBACA,MAAM,GAAG,IAAI;AAAA,kBACb,SACE,oCAAoC,QAAQ,KAAK,MAAM,CAAC;AAAA,kBAE1D,MAAM,cACF,+SAIA;AAAA,gBAEN,CAAC;AAAA,cACH;AAAA,YACF;AAAA,UACF;AAAA,QACF,WAAW,EAAE,aAAa,MAAM;AAG9B,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN;AAAA,YACA,MAAM,GAAG,IAAI;AAAA,YACb,SAAS,iCAAiC,IAAI;AAAA,YAC9C,MAAM,2FAA2F,OAAO,EAAE,SAAS,CAAC;AAAA,UACtH,CAAC;AAAA,QACH;AAOA,YAAI,cAAc,0BAA0B,SAAS,CAAC,iBAAiB,IAAI,MAAM,YAAY,CAAC,GAAG;AAC/F,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN;AAAA,YACA,MAAM,GAAG,IAAI;AAAA,YACb,SACE,qBAAqB,IAAI,cAAc,KAAK,8EACH,oBAAoB,aAAQ,KAAK;AAAA,YAE5E,MACE,OAAO,KAAK,4DAA4D,KAAK,kHAE/C,oBAAoB;AAAA,UAEtD,CAAC;AAAA,QACH,WAAW,QAAQ,2BAA2B;AAC5C,gBAAM,MAAM,sBAAsB,IAAI;AACtC,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN;AAAA,YACA,MAAM,GAAG,IAAI;AAAA,YACb,SACE,kBAAkB,IAAI,oCAAoC,GAAG;AAAA,YAE/D,MAAM,mBAAmB,GAAG,cAAc,KAAK;AAAA,UACjD,CAAC;AAAA,QACH,WACG,wBAA+D,SAAS,GAAG,WAAW,eACvF;AAKA,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN;AAAA,YACA,MAAM,GAAG,IAAI;AAAA,YACb,SACE,kBAAkB,IAAI;AAAA,YAExB,MACE;AAAA,UAEJ,CAAC;AAAA,QACH;AASA,cAAM,cAAe,EAAa;AAClC,YAAI,OAAO,gBAAgB,YAAY,YAAY,KAAK,MAAM,MACzD,aAAa,QAAQ,SAAS,SAAkB,KAChD,CAAC,wBAAwB,SAAS,GAAG;AACxC,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN;AAAA,YACA,MAAM,GAAG,IAAI;AAAA,YACb,SACE,kBAAkB,IAAI,2EACJ,WAAW;AAAA,YAC/B,MACE;AAAA,UAEJ,CAAC;AAAA,QACH;AAAA,MACF;AASA,YAAM,WAAW,UAAU;AAAA,QACzB,CAAC,MAAM,KAAK,OAAO,MAAM,YAAY,OAAQ,EAAa,SAAS;AAAA,MACrE;AACA,UACE,SAAS,SAAS,KAClB,SAAS,MAAM,CAAC,MAAM,mBAAmB,IAAI,sBAAsB,OAAQ,EAAa,IAAI,CAAC,CAAC,CAAC,GAC/F;AACA,cAAM,QAAS,IAAe,eAAe;AAC7C,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN;AAAA,UACA,MAAM,SAAS,EAAE,WAAW,EAAE;AAAA,UAC9B,SACE,iMAGC,QAAQ,4EAA4E;AAAA,UACvF,MACE;AAAA,QAGJ,CAAC;AAAA,MACH;AAOA,YAAM,gBAAgB,UAAU;AAAA,QAC9B,CAAC,MAAM,KAAK,OAAO,MAAM,YAAY,sBAAsB,OAAQ,EAAa,QAAQ,EAAE,CAAC,MAAM;AAAA,MACnG;AACA,UAAI,iBAAkB,IAAe,oBAAoB,MAAM;AAC7D,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN;AAAA,UACA,MAAM,SAAS,EAAE,WAAW,EAAE;AAAA,UAC9B,SACE;AAAA,UAGF,MACE;AAAA,QAGJ,CAAC;AAAA,MACH;AAOA,YAAM,kBAAkB,yBAA0B,IAAe,eAAe,EAAE,IAAI,CAAC,MAAM,EAAE,GAAG;AAClG,YAAM,WAAW,gBAAgB,OAAO,CAAC,MAAM,qBAAqB,IAAI,CAAC,CAAC;AAC1E,UAAI,SAAS,QAAQ;AACnB,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN;AAAA,UACA,MAAM,SAAS,EAAE,WAAW,EAAE;AAAA,UAC9B,SACE,8CAA8C,SAAS,KAAK,MAAM,CAAC;AAAA,UAErE,MAAM;AAAA,QACR,CAAC;AAAA,MACH;AAKA,YAAM,aAAc,IAAI,cAAc;AACtC,UAAI,cAAc,OAAO,eAAe,YAAY,WAAW,WAAW,YAAY;AACpF,cAAM,SAAS,OAAO,WAAW,eAAe,WAAW,WAAW,WAAW,KAAK,IAAI;AAC1F,YAAI,CAAC,QAAQ;AACX,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN;AAAA,YACA,MAAM,SAAS,EAAE,WAAW,EAAE;AAAA,YAC9B,SACE;AAAA,YAEF,MACE;AAAA,UAEJ,CAAC;AAAA,QACH;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;;;AClZO,IAAM,wCAAwC;AAa9C,SAAS,yBAAyB,OAA0C;AACjF,QAAM,MAAiC,CAAC;AACxC,QAAM,QAAQ,MAAM,QAAQ,MAAM,IAAI,IAAK,MAAM,OAAoB,CAAC;AAEtE,QAAM,QAAQ,CAAC,MAAM,MAAM;AACzB,QAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,QAAI,KAAK,SAAS,SAAU;AAE5B,UAAM,SAAS,OAAO,KAAK,WAAW,WAAW,KAAK,SAAS;AAC/D,UAAM,QAAQ,SAAS,SAAS,MAAM,MAAM,QAAQ,CAAC;AAErD,QAAI,KAAK;AAAA,MACP,UAAU;AAAA,MACV,MAAM;AAAA,MACN;AAAA,MACA,MAAM,QAAQ,CAAC;AAAA,MACf,SACE;AAAA,MAGF,MACE;AAAA,IAIJ,CAAC;AAAA,EACH,CAAC;AAED,SAAO;AACT;;;ACtCO,IAAM,mCAAmC;AAiBhD,SAAS,iBAAiB,SAA2C;AACnE,QAAM,MAAM,oBAAI,IAAuB;AACvC,aAAW,OAAO,SAAS;AACzB,QAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,UAAM,OAAO,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO;AACvD,QAAI,CAAC,KAAM;AACX,UAAM,cAAc,MAAM,QAAQ,IAAI,WAAW,IAAK,IAAI,cAA2B,CAAC;AACtF,UAAM,QAAmB,CAAC;AAC1B,eAAW,KAAK,aAAa;AAC3B,UAAI,CAAC,KAAK,OAAO,MAAM,YAAY,EAAE,SAAS,gBAAiB;AAC/D,YAAM,QAAQ,OAAO,EAAE,UAAU,WAAW,EAAE,QAAQ;AACtD,UAAI,CAAC,MAAO;AACZ,YAAM,cACJ,EAAE,eAAe,OAAO,EAAE,gBAAgB,WAAY,EAAE,cAA0C,CAAC;AACrG,YAAM,SAAS,oBAAI,IAAY;AAC/B,iBAAW,KAAK,MAAM,QAAQ,EAAE,aAAa,IAAI,EAAE,gBAAgB,CAAC,EAAG,QAAO,IAAI,OAAO,CAAC,CAAC;AAC3F,iBAAW,QAAQ,OAAO,KAAK,WAAW,GAAG;AAC3C,eAAO,IAAI,OAAO,IAAI,CAAC;AACvB,cAAM,UAAU,YAAY,IAAI;AAChC,mBAAW,MAAM,MAAM,QAAQ,OAAO,IAAI,UAAU,CAAC,EAAG,QAAO,IAAI,OAAO,EAAE,CAAC;AAAA,MAC/E;AAGA,UAAI,OAAO,OAAO,EAAG,OAAM,KAAK,EAAE,OAAO,OAAO,CAAC;AAAA,IACnD;AACA,QAAI,MAAM,SAAS,EAAG,KAAI,IAAI,MAAM,KAAK;AAAA,EAC3C;AACA,SAAO;AACT;AAGA,SAAS,YAAY,QAAgB,YAAqB,OAAuB;AAC/E,QAAM,OAAO,MAAM,QAAQ,UAAU,IAChC,WAAyB,IAAI,MAAM,IACpC,OAAO,eAAe,WACpB,CAAC,UAAU,IACX,CAAC,MAAM;AACb,QAAM,QAAQ,KAAK,IAAI,CAAC,MAAM,OAAO,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,KAAK,QAAQ,MAAM,EAAE;AAC5E,SAAO,MAAM,SAAS,IAAI,MAAM,IAAI,MAAM,EAAE,KAAK,QAAK,IAAI,IAAI,KAAK;AACrE;AAcO,SAAS,yBAAyB,OAA0C;AACjF,QAAM,MAAiC,CAAC;AACxC,QAAM,UAAU,MAAM,QAAQ,MAAM,OAAO,IAAK,MAAM,UAAuB,CAAC;AAC9E,QAAM,QAAQ,MAAM,QAAQ,MAAM,IAAI,IAAK,MAAM,OAAoB,CAAC;AACtE,MAAI,QAAQ,WAAW,KAAK,MAAM,WAAW,EAAG,QAAO;AAEvD,QAAM,gBAAgB,iBAAiB,OAAO;AAC9C,MAAI,cAAc,SAAS,EAAG,QAAO;AAErC,QAAM,QAAQ,CAAC,MAAM,MAAM;AACzB,QAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,UAAM,aAAa,OAAO,KAAK,WAAW,WAAW,KAAK,SAAS;AACnE,QAAI,CAAC,WAAY;AACjB,UAAM,QAAQ,cAAc,IAAI,UAAU;AAC1C,QAAI,CAAC,MAAO;AACZ,UAAM,UAAU,MAAM,QAAQ,KAAK,OAAO,IAAK,KAAK,UAAuB,CAAC;AAE5E,YAAQ,QAAQ,CAAC,QAAQ,MAAM;AAC7B,UAAI,CAAC,UAAU,OAAO,WAAW,SAAU;AAC3C,iBAAW,QAAQ,OAAO;AACxB,cAAM,QAAQ,OAAO,KAAK,KAAK;AAG/B,YAAI,SAAS,QAAQ,UAAU,GAAI;AACnC,YAAI,OAAO,UAAU,SAAU;AAC/B,YAAI,KAAK,OAAO,IAAI,KAAK,EAAG;AAE5B,YAAI,KAAK;AAAA,UACP,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,SAAS,UAAU,MAAM,YAAY,QAAQ,KAAK,YAAY,CAAC,CAAC;AAAA,UACvE,MAAM,QAAQ,CAAC,aAAa,CAAC,KAAK,KAAK,KAAK;AAAA,UAC5C,SACE,UAAU,KAAK,KAAK,IAAI,KAAK,iBAAiB,UAAU,mDACtC,CAAC,GAAG,KAAK,MAAM,EAAE,KAAK,EAAE,KAAK,IAAI,CAAC;AAAA,UAEtD,MACE,OAAO,KAAK;AAAA,QAGhB,CAAC;AAAA,MACH;AAAA,IACF,CAAC;AAAA,EACH,CAAC;AAED,SAAO;AACT;;;ACzHA,SAAS,mCAAmC;AAErC,IAAM,qBAAqB;AAC3B,IAAM,qBAAqB;AAC3B,IAAM,0BAA0B;AAChC,IAAM,yBAAyB;AAC/B,IAAM,iCAAiC;AACvC,IAAM,qBAAqB;AAC3B,IAAM,qCAAqC;AAC3C,IAAM,gCAAgC;AACtC,IAAM,mCAAmC;AACzC,IAAM,+BAA+B;AACrC,IAAM,sCAAsC;AAC5C,IAAM,qCAAqC;AAoBlD,IAAM,gBAAgB,CAAC,WAAW,eAAe,qBAAqB,sBAAsB;AAE5F,IAAM,gBAAwC;AAAA,EAC5C,MAAM;AAAA,EACN,YAAY;AAAA,EACZ,MAAM;AAAA,EACN,QAAQ;AACV;AAEA,IAAM,YAAoC;AAAA,EACxC,SAAS;AAAA,EACT,aAAa;AAAA,EACb,mBAAmB;AACrB;AAGA,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAAS,MAAM,KAAsB;AACnC,SAAO,IAAI,gBAAiB,IAAI,UAAiC;AACnE;AAEA,SAAS,eAAe,KAAsB;AAC5C,SAAO,IAAI,aAAa,QAAQ,OAAO,IAAI,QAAQ,EAAE,EAAE,WAAW,MAAM;AAC1E;AAGA,SAAS,uBAAuB,MAAwB;AACtD,MAAI,OAAO,SAAS,SAAU,QAAO;AACrC,SAAO,KACJ,YAAY,EACZ,MAAM,YAAY,EAClB,KAAK,CAAC,QAAQ,QAAQ,UAAU,QAAQ,OAAO;AACpD;AAGA,SAAS,iBAAiBC,QAAyB;AACjD,MAAI,OAAOA,WAAU,SAAU,QAAO;AACtC,SAAO,gBAAgB,KAAKA,MAAK;AACnC;AAGA,SAAS,MAAM,KAAiC;AAC9C,QAAM,IAAK,IAAI,aAAa,IAAI;AAChC,SAAO,OAAO,MAAM,YAAY,IAAI,IAAI;AAC1C;AAQA,SAAS,uBAAuB,KAA4D;AAC1F,aAAW,KAAKD,UAAQ,IAAI,MAAM,GAAG;AACnC,QAAI,EAAE,SAAS,iBAAiB;AAC9B,aAAO,EAAE,MAAM,OAAO,EAAE,QAAQ,GAAG,GAAG,QAAQ,MAAM,CAAC,EAAE;AAAA,IACzD;AAAA,EACF;AACA,SAAO;AACT;AAQA,SAAS,mBAAmB,GAAoB;AAC9C,SACE,EAAE,cAAc,QAChB,EAAE,gBAAgB,QAClB,EAAE,cAAc,QAChB,EAAE,gBAAgB,QAClB,EAAE,mBAAmB,QACrB,EAAE,qBAAqB;AAE3B;AASO,SAAS,wBAAwB,OAAe,MAA8C;AACnG,QAAM,WAA8B,CAAC;AACrC,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAEhD,QAAM,UAAUA,UAAQ,MAAM,OAAO;AACrC,QAAM,iBAAiBA,UAAQ,MAAM,WAAW;AAGhD,WAAS,IAAI,GAAG,IAAI,QAAQ,QAAQ,KAAK;AACvC,UAAM,MAAM,QAAQ,CAAC;AACrB,QAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,UAAM,UAAU,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO,WAAW,CAAC;AACtE,UAAM,UAAU,WAAW,CAAC;AAC5B,UAAM,MAAM,MAAM,GAAG;AACrB,UAAM,WAAW,IAAI;AAErB,QAAI,CAAC,eAAe,GAAG,GAAG;AACxB,UAAI,OAAO,MAAM;AACf,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,WAAW,OAAO;AAAA,UACzB,MAAM,GAAG,OAAO;AAAA,UAChB,SACE,kBAAkB,OAAO;AAAA,UAG3B,MACE;AAAA,QAEJ,CAAC;AAAA,MACH,WAAW,OAAO,QAAQ,YAAY,cAAc,GAAG,GAAG;AACxD,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,WAAW,OAAO;AAAA,UACzB,MAAM,GAAG,OAAO;AAAA,UAChB,SACE,iBAAiB,GAAG,sHACqC,QAAQ,SAAS,aAAa,UAAU;AAAA,UACnG,MAAM,oDAAoD,cAAc,GAAG,CAAC;AAAA,QAC9E,CAAC;AAAA,MACH,WAAW,OAAO,QAAQ,YAAY,CAAE,cAAoC,SAAS,GAAG,GAAG;AACzF,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,WAAW,OAAO;AAAA,UACzB,MAAM,GAAG,OAAO;AAAA,UAChB,SACE,iBAAiB,GAAG;AAAA,UACtB,MAAM,eAAe,cAAc,KAAK,IAAI,CAAC;AAAA,QAC/C,CAAC;AAAA,MACH;AAAA,IACF;AAIA,QAAI,OAAO,aAAa,UAAU;AAChC,UAAI,cAAc,QAAQ,GAAG;AAC3B,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,WAAW,OAAO;AAAA,UACzB,MAAM,GAAG,OAAO;AAAA,UAChB,SAAS,yBAAyB,QAAQ;AAAA,UAC1C,MAAM,4DAA4D,cAAc,QAAQ,CAAC;AAAA,QAC3F,CAAC;AAAA,MACH,WACE,OAAO,QAAQ,YACf,YAAY,aACZ,OAAO,aACP,UAAU,QAAQ,IAAI,UAAU,GAAG,GACnC;AACA,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,WAAW,OAAO;AAAA,UACzB,MAAM,GAAG,OAAO;AAAA,UAChB,SACE,yBAAyB,QAAQ,8CAA8C,GAAG;AAAA,UAEpF,MAAM,mCAAmC,GAAG;AAAA,QAC9C,CAAC;AAAA,MACH;AAAA,IACF;AAAA,EACF;AAGA,WAAS,IAAI,GAAG,IAAI,eAAe,QAAQ,KAAK;AAC9C,UAAM,KAAK,eAAe,CAAC;AAC3B,QAAI,CAAC,MAAM,OAAO,OAAO,SAAU;AACnC,UAAM,SAAS,OAAO,GAAG,SAAS,WAAW,GAAG,OAAO,mBAAmB,CAAC;AAC3E,UAAM,SAAS,eAAe,CAAC;AAC/B,UAAM,aAAc,GAAG,WAAW,OAAO,GAAG,YAAY,WAAW,GAAG,UAAU,CAAC;AAQjF,UAAM,SAAU,GAAG,UAAU,OAAO,GAAG,WAAW,WAAW,GAAG,SAAS,CAAC;AAC1E,eAAW,UAAU,OAAO,KAAK,MAAM,GAAG;AACxC,UAAI,OAAO,SAAS,GAAG,EAAG;AAC1B,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,mBAAmB,MAAM;AAAA,QAChC,MAAM,GAAG,MAAM,YAAY,MAAM;AAAA,QACjC,SACE,yBAAyB,MAAM;AAAA,QAEjC,MAAM,0DAA0D,MAAM;AAAA,MACxE,CAAC;AAAA,IACH;AAEA,UAAM,WAAW,WAAW,GAAG;AAC/B,QAAI,aAAa,SAAS,mBAAmB,QAAQ,SAAS,qBAAqB,OAAO;AACxF,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,mBAAmB,MAAM;AAAA,QAChC,MAAM,GAAG,MAAM;AAAA,QACf,SACE;AAAA,QAEF,MACE;AAAA,MAGJ,CAAC;AAAA,IACH;AAKA,QAAI,GAAG,cAAc,MAAM;AACzB,YAAM,YAAY,4BAA4B,IAAI,UAAU;AAC5D,UAAI,WAAW;AACb,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,mBAAmB,MAAM;AAAA,UAChC,MAAM,GAAG,MAAM;AAAA,UACf,SACE,8FACW,SAAS;AAAA,UACtB,MACE;AAAA,QAEJ,CAAC;AAAA,MACH;AAAA,IACF;AAAA,EACF;AAQA,QAAM,WAAW,CAAC,MAAc,MAAeC,QAAgB,OAAe,SAAiB;AAC7F,QAAI,uBAAuB,IAAI,GAAG;AAChC,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA;AAAA,QACA,SACE,GAAG,IAAI,UAAU,OAAO,IAAI,CAAC;AAAA,QAE/B,MAAM;AAAA,MACR,CAAC;AAAA,IACH,WAAW,iBAAiBA,MAAK,GAAG;AAClC,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA,MAAM,GAAG,KAAK,QAAQ,WAAW,EAAE,CAAC;AAAA,QACpC,SAAS,GAAG,IAAI,WAAW,OAAOA,MAAK,CAAC;AAAA,QACxC,MAAM;AAAA,MACR,CAAC;AAAA,IACH;AAAA,EACF;AAEA,WAAS,IAAI,GAAG,IAAI,QAAQ,QAAQ,KAAK;AACvC,UAAM,MAAM,QAAQ,CAAC;AACrB,QAAI,CAAC,OAAO,OAAO,QAAQ,YAAY,eAAe,GAAG,EAAG;AAC5D,UAAM,UAAU,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO,WAAW,CAAC;AACtE,aAAS,UAAU,IAAI,MAAM,IAAI,OAAO,WAAW,OAAO,KAAK,WAAW,CAAC,QAAQ;AACnF,eAAW,KAAKD,UAAQ,IAAI,MAAM,GAAG;AACnC,eAAS,SAAS,EAAE,MAAM,EAAE,OAAO,UAAU,OAAO,IAAI,OAAO,EAAE,QAAQ,GAAG,CAAC,KAAK,WAAW,CAAC,YAAY,OAAO,EAAE,QAAQ,GAAG,CAAC,OAAO;AAAA,IACxI;AACA,eAAW,CAAC,IAAI,MAAM,KAAKA,UAAQ,IAAI,OAAO,EAAE,QAAQ,GAAG;AACzD,eAAS,UAAU,OAAO,MAAM,OAAO,OAAO,WAAW,OAAO,IAAI,OAAO,OAAO,QAAQ,GAAG,CAAC,KAAK,WAAW,CAAC,aAAa,EAAE,QAAQ;AAAA,IACxI;AAAA,EACF;AACA,WAAS,IAAI,GAAG,IAAI,eAAe,QAAQ,KAAK;AAC9C,UAAM,KAAK,eAAe,CAAC;AAC3B,QAAI,CAAC,MAAM,OAAO,OAAO,SAAU;AACnC,aAAS,kBAAkB,GAAG,MAAM,GAAG,OAAO,mBAAmB,OAAO,GAAG,QAAQ,CAAC,CAAC,KAAK,eAAe,CAAC,QAAQ;AAAA,EACpH;AACA,aAAW,CAAC,GAAG,GAAG,KAAKA,UAAQ,MAAM,SAAS,EAAE,QAAQ,GAAG;AACzD,aAAS,YAAY,IAAI,MAAM,IAAI,OAAO,aAAa,OAAO,IAAI,QAAQ,CAAC,CAAC,KAAK,aAAa,CAAC,QAAQ;AAAA,EACzG;AACA,aAAW,CAAC,GAAG,GAAG,KAAKA,UAAQ,MAAM,IAAI,EAAE,QAAQ,GAAG;AACpD,aAAS,OAAO,IAAI,MAAM,IAAI,OAAO,QAAQ,OAAO,IAAI,QAAQ,CAAC,CAAC,KAAK,QAAQ,CAAC,QAAQ;AAAA,EAC1F;AACA,aAAW,CAAC,GAAG,IAAI,KAAKA,UAAQ,MAAM,KAAK,EAAE,QAAQ,GAAG;AAItD,aAAS,QAAQ,KAAK,MAAM,KAAK,OAAO,SAAS,OAAO,KAAK,QAAQ,CAAC,CAAC,KAAK,SAAS,CAAC,QAAQ;AAAA,EAChG;AAUA,QAAM,gBAAgB,IAAI;AAAA,IACxB,eACG,IAAI,CAAC,OAAQ,OAAO,GAAG,SAAS,WAAW,GAAG,OAAO,MAAU,EAC/D,OAAO,CAAC,MAAmB,CAAC,CAAC,CAAC;AAAA,EACnC;AACA,aAAW,CAAC,GAAG,IAAI,KAAKA,UAAQ,MAAM,KAAK,EAAE,QAAQ,GAAG;AACtD,UAAM,WAAY,KAAgB;AAClC,QAAI,CAAC,YAAY,OAAO,aAAa,SAAU;AAC/C,UAAM,UAAW,SAAoB;AACrC,QAAI,OAAO,YAAY,YAAY,QAAQ,WAAW,EAAG;AACzD,QAAI,CAAC,cAAc,IAAI,OAAO,GAAG;AAC/B,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,SAAS,OAAO,KAAK,QAAQ,CAAC,CAAC;AAAA,QACtC,MAAM,SAAS,CAAC;AAAA,QAChB,SACE,4CAA4C,OAAO;AAAA,QAErD,MACE;AAAA,MAEJ,CAAC;AAAA,IACH;AAAA,EACF;AAQA,QAAM,iBAAiB,IAAI;AAAA,IACzB,QACG,OAAO,CAAC,MAAM,KAAK,OAAO,MAAM,YAAY,CAAC,eAAe,CAAC,CAAC,EAC9D,OAAO,CAAC,MAAM;AACb,YAAM,MAAM,MAAM,CAAC;AACnB,aAAO,OAAO,QAAQ,QAAQ;AAAA,IAChC,CAAC,EACA,IAAI,CAAC,MAAM,OAAO,EAAE,QAAQ,EAAE,CAAC;AAAA,EACpC;AACA,MAAI,eAAe,OAAO,GAAG;AAC3B,aAAS,IAAI,GAAG,IAAI,eAAe,QAAQ,KAAK;AAC9C,YAAM,KAAK,eAAe,CAAC;AAC3B,UAAI,CAAC,MAAM,OAAO,OAAO,SAAU;AACnC,YAAM,SAAS,OAAO,GAAG,SAAS,WAAW,GAAG,OAAO,mBAAmB,CAAC;AAC3E,YAAM,aAAc,GAAG,WAAW,OAAO,GAAG,YAAY,WAAW,GAAG,UAAU,CAAC;AACjF,iBAAW,CAAC,SAAS,OAAO,KAAK,OAAO,QAAQ,UAAU,GAAG;AAC3D,YAAI,CAAC,eAAe,IAAI,OAAO,EAAG;AAClC,cAAM,IAAK,WAAW,CAAC;AACvB,YAAI,EAAE,cAAc,QAAQ,EAAE,aAAa,QAAQ,EAAE,mBAAmB,MAAM;AAC5E,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN,OAAO,mBAAmB,MAAM;AAAA,YAChC,MAAM,eAAe,CAAC,aAAa,OAAO;AAAA,YAC1C,SACE,IAAI,OAAO;AAAA,YAEb,MACE;AAAA,UAEJ,CAAC;AAAA,QACH;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAoBA,MAAI,eAAe,SAAS,GAAG;AAC7B,UAAM,oBAAoB,eAAe;AAAA,MAAK,CAAC,OAC7C,mBAAqB,GAAG,UAAiC,GAAG,KAAK,CAAC,CAAY;AAAA,IAChF;AACA,QAAI,CAAC,mBAAmB;AACtB,YAAM,iBAAiB,oBAAI,IAAY;AACvC,iBAAW,MAAM,gBAAgB;AAC/B,cAAM,aAAc,GAAG,WAAW,OAAO,GAAG,YAAY,WAAW,GAAG,UAAU,CAAC;AACjF,mBAAW,CAAC,SAAS,OAAO,KAAK,OAAO,QAAQ,UAAU,GAAG;AAC3D,cAAI,YAAY,IAAK;AACrB,cAAI,mBAAoB,WAAW,CAAC,CAAY,EAAG,gBAAe,IAAI,OAAO;AAAA,QAC/E;AAAA,MACF;AACA,eAAS,IAAI,GAAG,IAAI,QAAQ,QAAQ,KAAK;AACvC,cAAM,MAAM,QAAQ,CAAC;AACrB,YAAI,CAAC,OAAO,OAAO,QAAQ,YAAY,eAAe,GAAG,EAAG;AAC5D,cAAM,UAAU,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO;AAC1D,YAAI,CAAC,WAAW,eAAe,IAAI,OAAO,EAAG;AAC7C,cAAM,KAAK,uBAAuB,GAAG;AACrC,YAAI,CAAC,GAAI;AACT,cAAM,aAAa,GAAG,SAAS,YAAO,GAAG,MAAM,MAAM;AACrD,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,WAAW,OAAO;AAAA,UACzB,MAAM,WAAW,CAAC,YAAY,GAAG,IAAI;AAAA,UACrC,SACE,kBAAkB,OAAO,qBAAqB,GAAG,IAAI,IAAI,UAAU;AAAA,UAKrE,MACE,UAAU,OAAO,kEACd,GAAG,SAAS,KAAK,GAAG,MAAM,MAAM,EAAE,uCAAkC,OAAO;AAAA,QAGlF,CAAC;AAAA,MACH;AAAA,IACF;AAAA,EACF;AAOA,QAAM,qBAAqB,oBAAI,IAAI,CAAC,qBAAqB,yBAAyB,CAAC;AACnF,QAAM,QAAQ,MAAM,SAAS,KAAK,IAAI;AACtC,aAAW,CAAC,GAAG,IAAI,KAAKA,UAAQ,MAAM,IAAI,EAAE,QAAQ,GAAG;AACrD,UAAM,aAAa,OAAO,KAAK,WAAW,WAAW,KAAK,SAAS;AACnE,QAAI,CAAC,mBAAmB,IAAI,UAAU,EAAG;AACzC,UAAM,UAAU,MAAM,QAAQ,KAAK,OAAO,IAAK,KAAK,UAAuB,CAAC;AAC5E,aAAS,IAAI,GAAG,IAAI,QAAQ,QAAQ,KAAK;AACvC,YAAM,MAAO,QAAQ,CAAC,KAAK,CAAC;AAC5B,YAAM,QAAQ,SAAS,UAAU,aAAa,CAAC;AAI/C,YAAM,QAAQ,IAAI;AAClB,UAAI,SAAS,QAAQ,UAAU,IAAI;AACjC,cAAM,KACJ,OAAO,UAAU,WACZ,QAAQ,OAAO,QAAQ,MAAO,QAC/B,iBAAiB,OACf,MAAM,QAAQ,IACd,OAAO,UAAU,WACf,KAAK,MAAM,KAAK,IAChB,OAAO;AACjB,YAAI,OAAO,MAAM,EAAE,KAAK,MAAM,OAAO;AACnC,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN;AAAA,YACA,MAAM,QAAQ,CAAC,aAAa,CAAC;AAAA,YAC7B,SAAS,OAAO,MAAM,EAAE,IACpB,eAAe,KAAK,UAAU,KAAK,CAAC,sHAEpC,eAAe,KAAK,UAAU,KAAK,CAAC;AAAA,YAExC,MACE;AAAA,UAEJ,CAAC;AAAA,QACH;AAAA,MACF;AAIA,YAAM,gBAAgB,IAAI;AAC1B,UAAI,iBAAiB,QAAQ,kBAAkB,IAAI;AACjD,cAAM,SAAS,IAAI;AACnB,YAAI,OAAO,WAAW,YAAY,OAAO,KAAK,EAAE,WAAW,GAAG;AAC5D,mBAAS,KAAK;AAAA,YACZ,UAAU;AAAA,YACV,MAAM;AAAA,YACN;AAAA,YACA,MAAM,QAAQ,CAAC,aAAa,CAAC;AAAA,YAC7B,SACE,oCAAoC,KAAK,UAAU,aAAa,CAAC;AAAA,YAGnE,MAAM;AAAA,UACR,CAAC;AAAA,QACH;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;;;AC3hBO,IAAM,kCAAkC;AACxC,IAAM,8BAA8B;AAqB3C,IAAM,mBAAmB;AAGzB,SAASE,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAAS,IAAI,GAAoB;AAC/B,SAAO,OAAO,MAAM,WAAW,IAAI;AACrC;AAGA,SAAS,kBAAkB,QAAyB;AAClD,QAAM,UAAU,OAAO;AACvB,MAAI,WAAW,OAAO,YAAY,YAAY,QAAQ,YAAY,MAAO,QAAO;AAChF,QAAM,eAAe,OAAO;AAC5B,MAAI,gBAAgB,OAAO,iBAAiB,YAAY,aAAa,WAAW,MAAO,QAAO;AAC9F,SAAO;AACT;AAEA,IAAM,mBACJ,cAAc,gBAAgB;AAUzB,SAAS,wBAAwB,OAAkC;AACxE,QAAM,WAA6B,CAAC;AACpC,QAAM,MAAO,SAAS,CAAC;AAMvB,QAAM,iBAAiBA,UAAQ,IAAI,eAAe,IAAI,cAAc;AACpE,iBAAe,QAAQ,CAAC,IAAI,YAAY;AACtC,IAAAA,UAAQ,GAAG,gBAAgB,EAAE,QAAQ,CAAC,QAAQ,WAAW;AACvD,iBAAW,UAAU,CAAC,SAAS,OAAO,GAAY;AAChD,YAAI,CAAC,IAAI,OAAO,MAAM,CAAC,EAAE,SAAS,gBAAgB,EAAG;AACrD,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,mBAAmB,IAAI,GAAG,IAAI,KAAK,OAAO,aAAa,IAAI,OAAO,IAAI,KAAK,MAAM;AAAA,UACxF,MAAM,eAAe,OAAO,sBAAsB,MAAM,KAAK,MAAM;AAAA,UACnE,SACE,OAAO,MAAM,YAAY,gBAAgB;AAAA,UAE3C,MAAM;AAAA,QACR,CAAC;AAAA,MACH;AAAA,IACF,CAAC;AAAA,EACH,CAAC;AAED,QAAM,UAAUA,UAAQ,IAAI,OAAO;AACnC,UAAQ,QAAQ,CAAC,QAAQ,WAAW;AAClC,UAAM,aAAa,IAAI,OAAO,IAAI,KAAK,OAAO,MAAM;AAEpD,IAAAA,UAAQ,OAAO,oBAAoB,OAAO,GAAG,EAAE,QAAQ,CAAC,QAAQ,WAAW;AACzE,iBAAW,UAAU,CAAC,SAAS,OAAO,GAAY;AAChD,YAAI,CAAC,IAAI,OAAO,MAAM,CAAC,EAAE,SAAS,gBAAgB,EAAG;AACrD,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,WAAW,UAAU,aAAa,IAAI,OAAO,IAAI,KAAK,MAAM;AAAA,UACnE,MAAM,WAAW,MAAM,sBAAsB,MAAM,KAAK,MAAM;AAAA,UAC9D,SACE,OAAO,MAAM,YAAY,gBAAgB;AAAA,UAE3C,MAAM;AAAA,QACR,CAAC;AAAA,MACH;AAAA,IACF,CAAC;AAAA,EACH,CAAC;AAGD,EAAAA,UAAQ,IAAI,gBAAgB,IAAI,OAAO,EAAE,QAAQ,CAAC,MAAM,WAAW;AACjE,UAAM,WAAW,KAAK,UAAU,KAAK,YAAY,KAAK,UAAU,EAAE;AAClE,UAAM,WAAW,KAAK,UAAU,KAAK,YAAY,KAAK,aAAa,EAAE;AACrE,QAAI,SAAS,SAAS,gBAAgB,KAAK,SAAS,SAAS,gBAAgB,GAAG;AAC9E,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,iBAAiB,IAAI,KAAK,IAAI,KAAK,MAAM;AAAA,QAChD,MAAM,gBAAgB,MAAM;AAAA,QAC5B,SACE,wBAAwB,gBAAgB;AAAA,QAE1C,MAAM;AAAA,MACR,CAAC;AAAA,IACH;AAAA,EACF,CAAC;AAMD,QAAM,yBAAyB,IAAI;AAAA,IACjC,QAAQ,OAAO,CAAC,MAAM,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,IAAI,EAAE,IAAI,CAAC,EAAE,OAAO,OAAO;AAAA,EACpF;AACA,EAAAA,UAAQ,IAAI,gBAAgB,IAAI,OAAO,EAAE,QAAQ,CAAC,MAAM,WAAW;AACjE,UAAM,SAAS,IAAI,KAAK,UAAU,KAAK,UAAU;AACjD,QAAI,CAAC,UAAU,CAAC,uBAAuB,IAAI,MAAM,EAAG;AACpD,UAAM,WAAY,KAAK,YAAY,KAAK;AACxC,UAAM,gBAAgB,IAAI,UAAU,IAAI;AACxC,QAAI,kBAAkB,gBAAiB;AACvC,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MACV,MAAM;AAAA,MACN,OAAO,iBAAiB,IAAI,KAAK,IAAI,KAAK,MAAM,gBAAgB,MAAM;AAAA,MACtE,MAAM,gBAAgB,MAAM;AAAA,MAC5B,SACE,yCAAyC,MAAM;AAAA,MAIjD,MACE;AAAA,IAGJ,CAAC;AAAA,EACH,CAAC;AAED,SAAO;AACT;;;ACxIO,IAAM,oCAAoC;AAC1C,IAAM,oCAAoC;AAwBjD,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAAS,QAAQ,GAAgC;AAC/C,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAKA,IAAM,gBAAgB;AAMtB,IAAM,8BAAwG;AAAA,EAC5G,QAAQ;AAAA,EACR,SAAS;AAAA,EACT,QAAQ;AAAA,EACR,SAAS;AAAA,EACT,WAAW;AAAA,EACX,YAAY;AAAA,EACZ,MAAM;AAAA,EACN,OAAO;AAAA,EACP,MAAM;AAAA,EACN,OAAO;AACT;AAIA,SAAS,kBAAkB,MAAkC;AAC3D,SACE,QAAQ,KAAK,IAAI,KACjB,QAAQ,KAAK,EAAE,KACf,QAAQ,KAAK,MAAM,KACnB,QAAS,KAAK,MAA6B,QAAU,KAAK,KAAgB,KAAgB,MAAM,KAChG,QAAS,KAAK,MAA6B,QAAU,KAAK,KAAgB,KAAgB,MAAM;AAEpG;AAeA,SAAS,oBAAoB,OAA6B;AACxD,QAAM,UAAU,oBAAI,IAAY;AAChC,QAAM,UAAU,oBAAI,IAAY;AAChC,QAAM,UAAU,oBAAI,IAAY;AAChC,QAAM,aAAa,oBAAI,IAAY;AACnC,QAAM,QAAQ,oBAAI,IAAY;AAC9B,QAAM,QAAQ,oBAAI,IAAY;AAE9B,QAAM,eAAe,CAAC,GAAY,MAAmB,SAA8C;AACjG,eAAW,QAAQA,UAAQ,CAAC,GAAG;AAC7B,UAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,YAAM,IAAI,KAAK,IAAI;AACnB,UAAI,EAAG,MAAK,IAAI,CAAC;AAAA,IACnB;AAAA,EACF;AAEA,eAAa,MAAM,SAAS,SAAS,CAAC,MAAM,QAAQ,EAAE,IAAI,CAAC;AAC3D,aAAW,OAAOA,UAAQ,MAAM,OAAO,GAAG;AACxC,QAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,UAAM,IAAI,QAAQ,IAAI,IAAI;AAC1B,QAAI,EAAG,SAAQ,IAAI,CAAC;AACpB,iBAAa,IAAI,SAAS,SAAS,CAAC,MAAM,QAAQ,EAAE,IAAI,CAAC;AAAA,EAC3D;AACA,eAAa,MAAM,SAAS,SAAS,CAAC,MAAM,QAAQ,EAAE,IAAI,CAAC;AAC3D,eAAa,MAAM,YAAY,YAAY,CAAC,MAAM,QAAQ,EAAE,IAAI,CAAC;AACjE,eAAa,MAAM,OAAO,OAAO,CAAC,MAAM,QAAQ,EAAE,IAAI,CAAC;AACvD,eAAa,MAAM,OAAO,OAAO,iBAAiB;AAElD,aAAW,KAAK,QAAS,OAAM,IAAI,CAAC;AAEpC,SAAO,EAAE,SAAS,SAAS,SAAS,YAAY,OAAO,MAAM;AAC/D;AAGA,SAAS,oBACP,YACA,QACA,OACS;AACT,MAAI,MAAM,QAAQ,IAAI,MAAM,EAAG,QAAO;AACtC,MAAI,eAAe,SAAS;AAG1B,QAAI,MAAM,QAAQ,IAAI,MAAM,EAAG,QAAO;AACtC,UAAM,IAAI,cAAc,KAAK,MAAM;AACnC,QAAI,KAAK,MAAM,QAAQ,IAAI,EAAE,CAAC,CAAC,EAAG,QAAO;AAAA,EAC3C;AACA,SAAO;AACT;AAUA,SAAS,gBACP,QACA,OACyD;AAEzD,MAAI,2BAA2B,KAAK,MAAM,KAAK,OAAO,WAAW,IAAI,EAAG,QAAO;AAE/E,MAAI,OAAO,SAAS,IAAI,EAAG,QAAO;AAElC,MAAI,CAAC,OAAO,WAAW,GAAG,EAAG,QAAO;AAGpC,QAAM,WAAW,OAAO,MAAM,QAAQ,CAAC,EAAE,CAAC;AAC1C,QAAM,WAAW,SAAS,MAAM,GAAG,EAAE,OAAO,OAAO;AAEnD,WAAS,IAAI,GAAG,IAAI,SAAS,SAAS,GAAG,KAAK;AAC5C,UAAM,WAAW,4BAA4B,SAAS,CAAC,CAAC;AACxD,QAAI,CAAC,SAAU;AACf,UAAM,OAAO,SAAS,IAAI,CAAC;AAC3B,QAAI,MAAM,QAAQ,EAAE,IAAI,IAAI,EAAG,QAAO;AACtC,WAAO,EAAE,YAAY,SAAS,CAAC,GAAG,KAAK;AAAA,EACzC;AACA,SAAO;AACT;AAaO,SAAS,4BAA4B,OAA4C;AACtF,QAAM,WAAwC,CAAC;AAC/C,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAEhD,QAAM,aAAaA,UAAQ,MAAM,UAAU;AAC3C,MAAI,WAAW,WAAW,EAAG,QAAO;AAEpC,QAAM,QAAQ,oBAAoB,KAAK;AAEvC,QAAM,WAAW,CACf,QACA,OACA,SACG;AACH,UAAM,SAAS,QAAQ,OAAO,SAAS;AACvC,QAAI,CAAC,OAAQ;AACb,QAAI,OAAO,SAAS,IAAI,EAAG;AAI3B,UAAM,aAAa,QAAQ,OAAO,UAAU,KAAK;AAEjD,QAAI,eAAe,YAAY,eAAe,SAAS;AACrD,UAAI,oBAAoB,YAAY,QAAQ,KAAK,EAAG;AACpD,YAAM,WAAW,eAAe,WAAW,WAAW;AACtD,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA;AAAA,QACA,SACE,GAAG,QAAQ,mBAAmB,MAAM,qCACnC,eAAe,UAAU,eAAe,MACzC;AAAA,QAEF,MACE,eAAe,UACX,2BAA2B,MAAM,iMAGjC,iCAAiC,MAAM;AAAA,MAE/C,CAAC;AACD;AAAA,IACF;AAEA,QAAI,eAAe,OAAO;AACxB,YAAM,QAAQ,gBAAgB,QAAQ,KAAK;AAC3C,UAAI,CAAC,MAAO;AACZ,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA;AAAA,QACA,SACE,sBAAsB,MAAM,eAAe,MAAM,UAAU,IAAI,MAAM,IAAI,YAC/D,MAAM,WAAW,QAAQ,MAAM,EAAE,CAAC,WAAW,MAAM,IAAI;AAAA,QAEnE,MACE,oDAAoD,MAAM,WAAW,QAAQ,MAAM,EAAE,CAAC;AAAA,MAE1F,CAAC;AACD;AAAA,IACF;AAAA,EAEF;AAEA,WAAS,KAAK,GAAG,KAAK,WAAW,QAAQ,MAAM;AAC7C,UAAM,OAAO,WAAW,EAAE;AAC1B,QAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,UAAM,WAAW,QAAQ,KAAK,IAAI,KAAK,cAAc,EAAE;AACvD,UAAM,WAAW,cAAc,EAAE;AAGjC,UAAM,gBAAgBA,UAAS,KAAK,QAA+B,OAAO;AAC1E,aAAS,KAAK,GAAG,KAAK,cAAc,QAAQ,MAAM;AAChD,YAAM,SAAS,cAAc,EAAE;AAC/B,UAAI,CAAC,UAAU,OAAO,WAAW,SAAU;AAC3C,YAAMC,SAAQ,QAAQ,OAAO,KAAK,KAAK,QAAQ,OAAO,SAAS,KAAK,IAAI,EAAE;AAC1E;AAAA,QACE;AAAA,QACA,cAAc,QAAQ,yBAAsBA,MAAK;AAAA,QACjD,GAAG,QAAQ,mBAAmB,EAAE;AAAA,MAClC;AAAA,IACF;AAGA,UAAM,UAAUD,UAAQ,KAAK,OAAO;AACpC,aAAS,KAAK,GAAG,KAAK,QAAQ,QAAQ,MAAM;AAC1C,YAAM,SAAS,QAAQ,EAAE;AACzB,UAAI,CAAC,UAAU,OAAO,WAAW,SAAU;AAC3C,UAAI,CAAC,QAAQ,OAAO,SAAS,EAAG;AAChC,YAAM,WAAW,QAAQ,OAAO,EAAE,KAAK,IAAI,EAAE;AAC7C;AAAA,QACE,EAAE,YAAY,OAAO,YAAkC,WAAW,OAAO,UAAgC;AAAA,QACzG,cAAc,QAAQ,kBAAe,QAAQ;AAAA,QAC7C,GAAG,QAAQ,YAAY,EAAE;AAAA,MAC3B;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;;;AChVA,SAAS,qBAAqB,sBAAsB;AAyD7C,IAAM,uBAAuB;AAsBpC,IAAM,cAAc,oBAAI,IAAI,CAAC,UAAU,WAAW,eAAe,CAAC;AAQlE,SAASE,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAAS,MAAM,GAAY,UAA0B;AACnD,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAEA,IAAM,aAAa,eAAe,KAAK,MAAM;AAY7C,SAAS,iBACP,MACA,MACA,OACA,KACA,MACM;AACN,MAAI,SAAS,QAAQ,SAAS,OAAW;AAEzC,MAAI,OAAO,SAAS,UAAU;AAC5B,UAAM,MAAM,oBAAoB,IAAI;AACpC,QAAI,KAAK,SAAS,WAAW;AAC3B,YAAM,aAAa,IAAI;AACvB,UAAI,KAAK;AAAA,QACP,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA;AAAA,QACA,SACE,iBAAiB,IAAI;AAAA,QAEvB,MAAM,aACF,kBAAkB,UAAU,2BAA2B,UAAU,2EAEjE,mDAAmD,UAAU;AAAA,MAInE,CAAC;AAAA,IACH;AACA;AAAA,EACF;AAEA,MAAI,OAAO,SAAS,SAAU;AAE9B,MAAI,KAAK,IAAI,IAAI,EAAG;AACpB,OAAK,IAAI,IAAI;AAEb,MAAI,MAAM,QAAQ,IAAI,GAAG;AACvB,SAAK,QAAQ,CAAC,GAAG,MAAM,iBAAiB,GAAG,GAAG,IAAI,IAAI,CAAC,KAAK,OAAO,KAAK,IAAI,CAAC;AAC7E;AAAA,EACF;AAEA,aAAW,CAAC,GAAG,CAAC,KAAK,OAAO,QAAQ,IAAc,GAAG;AACnD,qBAAiB,GAAG,GAAG,IAAI,IAAI,CAAC,IAAI,OAAO,KAAK,IAAI;AAAA,EACtD;AACF;AAaA,SAAS,eACP,MACA,MACA,OACA,KACA,MACM;AACN,MAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,MAAI,KAAK,IAAI,IAAI,EAAG;AACpB,OAAK,IAAI,IAAI;AAEb,MAAI,MAAM,QAAQ,IAAI,GAAG;AACvB,SAAK,QAAQ,CAAC,GAAG,MAAM,eAAe,GAAG,GAAG,IAAI,IAAI,CAAC,KAAK,OAAO,KAAK,IAAI,CAAC;AAC3E;AAAA,EACF;AAEA,aAAW,CAAC,GAAG,CAAC,KAAK,OAAO,QAAQ,IAAc,GAAG;AACnD,UAAM,YAAY,GAAG,IAAI,IAAI,CAAC;AAC9B,QAAI,YAAY,IAAI,CAAC,GAAG;AACtB,uBAAiB,GAAG,WAAW,OAAO,KAAK,oBAAI,IAAI,CAAC;AACpD;AAAA,IACF;AACA,mBAAe,GAAG,WAAW,OAAO,KAAK,IAAI;AAAA,EAC/C;AACF;AASO,SAAS,qBAAqB,OAAyE;AAC5G,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO,CAAC;AACjD,QAAM,MAA4B,CAAC;AAEnC,QAAM,WAA+C;AAAA,IACnD,CAAC,cAAc,WAAW;AAAA,IAC1B,CAAC,WAAW,QAAQ;AAAA,IACpB,CAAC,SAAS,MAAM;AAAA,IAChB,CAAC,WAAW,QAAQ;AAAA,IACpB,CAAC,YAAY,SAAS;AAAA,IACtB,CAAC,SAAS,MAAM;AAAA,IAChB,CAAC,QAAQ,KAAK;AAAA,EAChB;AAEA,aAAW,CAAC,KAAK,IAAI,KAAK,UAAU;AAClC,UAAM,QAAQA,UAAS,MAAiB,GAAG,CAAC;AAC5C,UAAM,QAAQ,CAAC,MAAM,MAAM;AACzB,YAAM,OAAO,MAAM,KAAK,QAAQ,KAAK,IAAI,IAAI,CAAC,EAAE;AAGhD,UAAI,SAAS,aAAa;AACxB,cAAM,UAAU,MAAM,QAAQ,KAAK,OAAO,IAAK,KAAK,UAAuB,CAAC;AAC5E,gBAAQ,QAAQ,CAAC,GAAG,OAAO;AACzB,gBAAM,QAAQ,MAAM,EAAE,MAAM,EAAE,OAAO,IAAI,EAAE,EAAE;AAC7C;AAAA,YACE;AAAA,YACA,GAAG,GAAG,IAAI,CAAC,aAAa,EAAE;AAAA,YAC1B,cAAc,IAAI,kBAAe,KAAK;AAAA,YACtC;AAAA,YACA,oBAAI,IAAI;AAAA,UACV;AAAA,QACF,CAAC;AAGD,cAAM,EAAE,SAAS,OAAO,GAAG,KAAK,IAAI;AACpC,uBAAe,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,cAAc,IAAI,KAAK,KAAK,oBAAI,IAAI,CAAC;AAC1E;AAAA,MACF;AACA,qBAAe,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,KAAK,IAAI,KAAK,KAAK,oBAAI,IAAI,CAAC;AAAA,IAC1E,CAAC;AAAA,EACH;AAEA,SAAO;AACT;;;AC9LA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAGP,IAAM,iBAAoC,CAAC,GAAG,8BAA8B;AAErE,IAAM,2BAA2B;AACjC,IAAM,yCAAyC;AAwBtD,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAASC,SAAQ,GAAgC;AAC/C,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAWA,SAAS,eAAe,QAAyB;AAC/C,MAAI,OAAO,SAAS,IAAI,EAAG,QAAO;AAClC,QAAM,OAAO,OAAO,QAAQ,GAAG;AAG/B,SAAO,SAAS,MAAM,OAAO,QAAQ,KAAK,OAAO,CAAC,MAAM;AAC1D;AAGA,SAASC,SAAQ,QAAgB,OAAiC;AAChE,MAAI;AACJ,MAAI,YAAY;AAChB,aAAW,aAAa,OAAO;AAC7B,UAAM,IAAI,SAAS,QAAQ,SAAS;AACpC,QAAI,IAAI,WAAW;AACjB,kBAAY;AACZ,aAAO;AAAA,IACT;AAAA,EACF;AAEA,QAAM,QAAQ,KAAK,IAAI,GAAG,KAAK,MAAM,OAAO,SAAS,CAAC,CAAC;AACvD,SAAO,QAAQ,aAAa,QAAQ,kBAAkB,IAAI,OAAO;AACnE;AAEA,SAAS,SAAS,GAAW,GAAmB;AAC9C,QAAM,IAAI,EAAE;AACZ,QAAM,IAAI,EAAE;AACZ,MAAI,MAAM,EAAG,QAAO;AACpB,MAAI,MAAM,EAAG,QAAO;AACpB,MAAI,OAAO,MAAM,KAAK,EAAE,QAAQ,IAAI,EAAE,GAAG,CAAC,GAAG,MAAM,CAAC;AACpD,WAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,UAAM,OAAO,CAAC,GAAG,GAAG,IAAI,MAAc,CAAC,EAAE,KAAK,CAAC,CAAC;AAChD,aAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,YAAM,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,IAAI,IAAI;AACzC,WAAK,CAAC,IAAI,KAAK,IAAI,KAAK,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,GAAG,KAAK,IAAI,CAAC,IAAI,IAAI;AAAA,IACrE;AACA,WAAO;AAAA,EACT;AACA,SAAO,KAAK,CAAC;AACf;AAMO,SAAS,yBAAyB,OAAmC;AAC1E,QAAM,WAA+B,CAAC;AACtC,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAEhD,QAAM,UAAUF,UAAQ,MAAM,OAAO;AACrC,QAAM,aAAa,oBAAI,IAAY;AACnC,aAAW,OAAO,SAAS;AACzB,UAAM,IAAIC,SAAQ,IAAI,IAAI;AAC1B,QAAI,EAAG,YAAW,IAAI,CAAC;AAAA,EACzB;AAMA,QAAM,QAAQ,CACZ,QACA,OACA,MACA,SACA,QACG;AACH,UAAM,OAAOA,SAAQ,MAAM;AAC3B,QAAI,CAAC,KAAM;AACX,QAAI,eAAe,IAAI,EAAG;AAC1B,QAAI,WAAW,IAAI,IAAI,EAAG;AAC1B,QAAI,6BAA6B,IAAI,EAAG;AAExC,QAAI,wBAAwB,IAAI,GAAG;AAEjC,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN;AAAA,QACA;AAAA,QACA,SACE,GAAG,OAAO,KAAK,IAAI,0QAInBC,SAAQ,MAAM,cAAc;AAAA,QAC9B,MACE,wSAG4D,GAAG;AAAA,MACnE,CAAC;AACD;AAAA,IACF;AAIA,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MACV,MAAM;AAAA,MACN;AAAA,MACA;AAAA,MACA,SACE,GAAG,OAAO,KAAK,IAAI,sHAEnBA,SAAQ,MAAM,UAAU;AAAA,MAC1B,MACE,2IAC8D,GAAG,MAChE,WAAW,OAAO,IAAI,qBAAqB,CAAC,GAAG,UAAU,EAAE,KAAK,EAAE,KAAK,IAAI,CAAC,MAAM;AAAA,IACvF,CAAC;AAAA,EACH;AAGA,QAAMC,qBAAoB,CAAC,QAAgB,YAAoB,gBAAwB;AACrF,UAAM,SAASH,UAAQ,OAAO,MAAM;AACpC,aAAS,KAAK,GAAG,KAAK,OAAO,QAAQ,MAAM;AACzC,YAAM,QAAQ,OAAO,EAAE;AACvB,UAAI,CAAC,SAAS,OAAO,UAAU,SAAU;AACzC,YAAM,aAAaC,SAAQ,MAAM,IAAI,KAAKA,SAAQ,MAAM,KAAK,KAAK,IAAI,EAAE;AACxE,YAAM,QAAQ,GAAG,WAAW,gBAAa,UAAU;AACnD;AAAA,QACEA,SAAQ,MAAM,SAAS;AAAA,QACvB;AAAA,QACA,GAAG,UAAU,WAAW,EAAE;AAAA,QAC1B;AAAA,QACA;AAAA,MACF;AACA;AAAA,QACEA,SAAQ,MAAM,cAAc;AAAA,QAC5B;AAAA,QACA,GAAG,UAAU,WAAW,EAAE;AAAA,QAC1B;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEA,QAAM,gBAAgBD,UAAQ,MAAM,OAAO;AAC3C,WAAS,KAAK,GAAG,KAAK,cAAc,QAAQ,MAAM;AAChD,UAAM,SAAS,cAAc,EAAE;AAC/B,QAAI,CAAC,UAAU,OAAO,WAAW,SAAU;AAC3C,IAAAG,mBAAkB,QAAQ,WAAW,EAAE,KAAK,WAAWF,SAAQ,OAAO,IAAI,KAAK,IAAI,EAAE,EAAE,GAAG;AAAA,EAC5F;AAEA,WAAS,KAAK,GAAG,KAAK,QAAQ,QAAQ,MAAM;AAC1C,UAAM,MAAM,QAAQ,EAAE;AACtB,QAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,UAAM,UAAUA,SAAQ,IAAI,IAAI,KAAK,IAAI,EAAE;AAC3C,UAAM,aAAaD,UAAQ,IAAI,OAAO;AACtC,aAAS,KAAK,GAAG,KAAK,WAAW,QAAQ,MAAM;AAC7C,YAAM,SAAS,WAAW,EAAE;AAC5B,UAAI,CAAC,UAAU,OAAO,WAAW,SAAU;AAC3C,MAAAG;AAAA,QACE;AAAA,QACA,WAAW,EAAE,aAAa,EAAE;AAAA,QAC5B,WAAW,OAAO,kBAAeF,SAAQ,OAAO,IAAI,KAAK,IAAI,EAAE,EAAE;AAAA,MACnE;AAAA,IACF;AAAA,EACF;AAGA,QAAM,aAAaD,UAAQ,MAAM,UAAU;AAC3C,WAAS,KAAK,GAAG,KAAK,WAAW,QAAQ,MAAM;AAC7C,UAAM,OAAO,WAAW,EAAE;AAC1B,QAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,UAAM,WAAWC,SAAQ,KAAK,IAAI,KAAK,IAAI,EAAE;AAC7C,UAAM,UAAUD,UAAQ,KAAK,aAAa;AAC1C,aAAS,KAAK,GAAG,KAAK,QAAQ,QAAQ,MAAM;AAC1C,YAAM,SAAS,QAAQ,EAAE;AACzB,UAAI,CAAC,UAAU,OAAO,WAAW,SAAU;AAC3C,YAAM,cAAc,OAAO;AAC3B,UAAI,CAAC,eAAe,OAAO,gBAAgB,SAAU;AACrD;AAAA,QACEC,SAAQ,YAAY,MAAM;AAAA,QAC1B,cAAc,QAAQ,kBAAeA,SAAQ,OAAO,IAAI,KAAK,IAAI,EAAE,EAAE;AAAA,QACrE,cAAc,EAAE,mBAAmB,EAAE;AAAA,QACrC;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAGA,QAAM,OAAOD,UAAQ,MAAM,IAAI;AAC/B,WAAS,KAAK,GAAG,KAAK,KAAK,QAAQ,MAAM;AACvC,UAAM,MAAM,KAAK,EAAE;AACnB,QAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,UAAM,UAAUC,SAAQ,IAAI,IAAI,KAAK,IAAI,EAAE;AAE3C,UAAM,UAAU,CAAC,OAAgB,aAAqB;AACpD,YAAM,WAAWD,UAAQ,KAAK;AAC9B,eAAS,KAAK,GAAG,KAAK,SAAS,QAAQ,MAAM;AAC3C,cAAM,MAAM,SAAS,EAAE;AACvB,YAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,cAAM,QAAQC,SAAQ,IAAI,EAAE,KAAK,IAAI,EAAE;AACvC,cAAM,QAAQ,QAAQ,OAAO,eAAY,KAAK;AAC9C,cAAM,UAAU,GAAG,QAAQ,IAAI,EAAE;AAEjC;AAAA,UACEA,SAAQ,IAAI,cAAc;AAAA,UAC1B;AAAA,UACA,GAAG,OAAO;AAAA,UACV;AAAA,UACA;AAAA,QAEF;AAIA,YAAI,IAAI,kBAAkBA,SAAQ,IAAI,UAAU,GAAG;AACjD;AAAA,YACEA,SAAQ,IAAI,UAAU;AAAA,YACtB;AAAA,YACA,GAAG,OAAO;AAAA,YACV;AAAA,YACA;AAAA,UACF;AAAA,QACF;AAEA,YAAI,MAAM,QAAQ,IAAI,QAAQ,EAAG,SAAQ,IAAI,UAAU,GAAG,OAAO,WAAW;AAAA,MAC9E;AAAA,IACF;AAEA,YAAQ,IAAI,YAAY,QAAQ,EAAE,cAAc;AAChD,UAAM,QAAQD,UAAQ,IAAI,KAAK;AAC/B,aAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,cAAQ,MAAM,EAAE,GAAG,YAAY,QAAQ,EAAE,WAAW,EAAE,cAAc;AAAA,IACtE;AAAA,EACF;AAEA,SAAO;AACT;;;AC9SA,SAASI,OAAM,GAAyB;AACtC,SAAO,CAAC,CAAC,KAAK,OAAO,MAAM,YAAY,CAAC,MAAM,QAAQ,CAAC;AACzD;AAEA,SAASC,SAAQ,GAAgC;AAC/C,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAGA,IAAM,wBAAwB,oBAAI,IAAI,CAAC,QAAQ,SAAS,KAAK,CAAC;AAGvD,SAAS,qBAAqB,MAAuB;AAC1D,QAAM,OAAOA,SAAQ,KAAK,IAAI;AAC9B,SAAO,SAAS,UAAa,sBAAsB,IAAI,IAAI;AAC7D;AAQO,SAAS,mBAAmB,MAAc,UAAqC;AACpF,QAAM,MAAyB,CAAC;AAChC,MAAI,CAACD,OAAM,IAAI,KAAK,qBAAqB,IAAI,EAAG,QAAO;AAEvD,QAAM,aAAaC,SAAQ,KAAK,MAAM;AAEtC,QAAM,QAAQ,CAAC,MAAe,MAAc,oBAA6B;AACvE,QAAI,CAACD,OAAM,IAAI,EAAG;AAKlB,UAAM,QAAQA,OAAM,KAAK,UAAU,IAAI,KAAK,aAAa;AACzD,UAAM,aAAaA,OAAM,KAAK,UAAU,IAAI,KAAK,aAAa;AAC9D,UAAM,aACJC,SAAQ,YAAY,MAAM,KAAKA,SAAQ,OAAO,MAAM,KAAK;AAE3D,QAAI,KAAK,EAAE,WAAW,MAAM,MAAM,WAAW,CAAC;AAE9C,QAAI,CAAC,MAAO;AAGZ,QAAI,MAAM,QAAQ,MAAM,KAAK,GAAG;AAC9B,eAAS,IAAI,GAAG,IAAI,MAAM,MAAM,QAAQ,KAAK;AAC3C,cAAM,OAAO,MAAM,MAAM,CAAC;AAC1B,YAAI,CAACD,OAAM,IAAI,KAAK,CAAC,MAAM,QAAQ,KAAK,QAAQ,EAAG;AACnD,iBAAS,IAAI,GAAG,IAAI,KAAK,SAAS,QAAQ,KAAK;AAC7C,gBAAM,KAAK,SAAS,CAAC,GAAG,GAAG,IAAI,qBAAqB,CAAC,cAAc,CAAC,KAAK,UAAU;AAAA,QACrF;AAAA,MACF;AAAA,IACF;AAKA,QAAI,MAAM,QAAQ,MAAM,QAAQ,GAAG;AACjC,eAAS,IAAI,GAAG,IAAI,MAAM,SAAS,QAAQ,KAAK;AAC9C,cAAM,MAAM,SAAS,CAAC,GAAG,GAAG,IAAI,wBAAwB,CAAC,KAAK,UAAU;AAAA,MAC1E;AAAA,IACF;AAEA,eAAW,OAAO,CAAC,QAAQ,QAAQ,GAAY;AAC7C,YAAM,WAAW,MAAM,GAAG;AAC1B,UAAI,CAAC,MAAM,QAAQ,QAAQ,EAAG;AAC9B,eAAS,IAAI,GAAG,IAAI,SAAS,QAAQ,KAAK;AACxC,cAAM,SAAS,CAAC,GAAG,GAAG,IAAI,eAAe,GAAG,IAAI,CAAC,KAAK,UAAU;AAAA,MAClE;AAAA,IACF;AAAA,EACF;AAEA,QAAM,UAAU,MAAM,QAAQ,KAAK,OAAO,IAAI,KAAK,UAAU,CAAC;AAC9D,WAAS,IAAI,GAAG,IAAI,QAAQ,QAAQ,KAAK;AACvC,UAAM,SAAS,QAAQ,CAAC;AACxB,QAAI,CAACA,OAAM,MAAM,KAAK,CAAC,MAAM,QAAQ,OAAO,UAAU,EAAG;AACzD,aAAS,IAAI,GAAG,IAAI,OAAO,WAAW,QAAQ,KAAK;AACjD,YAAM,OAAO,WAAW,CAAC,GAAG,GAAG,QAAQ,YAAY,CAAC,gBAAgB,CAAC,KAAK,UAAU;AAAA,IACtF;AAAA,EACF;AAEA,QAAM,QAAQA,OAAM,KAAK,KAAK,IAAI,KAAK,QAAQ;AAC/C,MAAI,OAAO;AACT,eAAW,CAAC,MAAM,KAAK,KAAK,OAAO,QAAQ,KAAK,GAAG;AAEjD,YAAME,QAAO,MAAM,QAAQ,KAAK,IAAI,QAAQ,CAAC,KAAK;AAClD,YAAM,UAAU,MAAM,QAAQ,KAAK;AACnC,eAAS,IAAI,GAAG,IAAIA,MAAK,QAAQ,KAAK;AACpC,cAAMA,MAAK,CAAC,GAAG,GAAG,QAAQ,UAAU,IAAI,GAAG,UAAU,IAAI,CAAC,MAAM,EAAE,IAAI,UAAU;AAAA,MAClF;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;;;AClGO,IAAM,wBAAwB;AAqBrC,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAASC,SAAQ,GAAgC;AAC/C,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAEA,SAAS,QAAQ,GAAsB;AACrC,SAAO,MAAM,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,MAAmB,OAAO,MAAM,YAAY,EAAE,SAAS,CAAC,IAAI,CAAC;AACnG;AAEA,SAASC,UAAS,GAAW,GAAmB;AAC9C,QAAM,IAAI,EAAE;AACZ,QAAM,IAAI,EAAE;AACZ,MAAI,MAAM,EAAG,QAAO;AACpB,MAAI,MAAM,EAAG,QAAO;AACpB,MAAI,OAAO,MAAM,KAAK,EAAE,QAAQ,IAAI,EAAE,GAAG,CAAC,GAAG,MAAM,CAAC;AACpD,WAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,UAAM,OAAO,CAAC,GAAG,GAAG,IAAI,MAAc,CAAC,EAAE,KAAK,CAAC,CAAC;AAChD,aAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,YAAM,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,IAAI,IAAI;AACzC,WAAK,CAAC,IAAI,KAAK,IAAI,KAAK,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,GAAG,KAAK,IAAI,CAAC,IAAI,IAAI;AAAA,IACrE;AACA,WAAO;AAAA,EACT;AACA,SAAO,KAAK,CAAC;AACf;AAEA,SAASC,SAAQ,QAAgB,OAAiC;AAChE,MAAI;AACJ,MAAI,YAAY;AAChB,aAAW,aAAa,OAAO;AAC7B,UAAM,IAAID,UAAS,QAAQ,SAAS;AACpC,QAAI,IAAI,WAAW;AACjB,kBAAY;AACZ,aAAO;AAAA,IACT;AAAA,EACF;AACA,QAAM,QAAQ,KAAK,IAAI,GAAG,KAAK,MAAM,OAAO,SAAS,CAAC,CAAC;AACvD,SAAO,QAAQ,aAAa,QAAQ,kBAAkB,IAAI,OAAO;AACnE;AAGA,SAAS,mBAAmB,OAA4B;AACtD,QAAM,QAAQ,oBAAI,IAAY;AAC9B,aAAW,UAAUF,UAAQ,MAAM,OAAO,GAAG;AAC3C,UAAM,IAAIC,SAAQ,QAAQ,IAAI;AAC9B,QAAI,EAAG,OAAM,IAAI,CAAC;AAAA,EACpB;AACA,aAAW,OAAOD,UAAQ,MAAM,OAAO,GAAG;AACxC,QAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,eAAW,UAAUA,UAAQ,IAAI,OAAO,GAAG;AACzC,YAAM,IAAIC,SAAQ,QAAQ,IAAI;AAC9B,UAAI,EAAG,OAAM,IAAI,CAAC;AAAA,IACpB;AAAA,EACF;AACA,SAAO;AACT;AAMO,SAAS,uBAAuB,OAAuC;AAC5E,QAAM,WAAmC,CAAC;AAC1C,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAEhD,QAAM,QAAQ,mBAAmB,KAAK;AAEtC,QAAM,QAAQ,CAAC,MAAc,OAAe,MAAc,YAAoB;AAC5E,QAAI,MAAM,IAAI,IAAI,EAAG;AACrB,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MACV,MAAM;AAAA,MACN;AAAA,MACA;AAAA,MACA,SACE,GAAG,OAAO,kBAAkB,IAAI,oNAGhCE,SAAQ,MAAM,KAAK;AAAA,MACrB,MACE,2BAA2B,IAAI,gMAG9B,MAAM,OAAO,IAAI,qBAAqB,CAAC,GAAG,KAAK,EAAE,KAAK,EAAE,KAAK,IAAI,CAAC,MAAM;AAAA,IAC7E,CAAC;AAAA,EACH;AAGA,QAAM,QAAQH,UAAQ,MAAM,KAAK;AACjC,WAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,UAAM,OAAO,MAAM,EAAE;AACrB,QAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,UAAM,WAAWC,SAAQ,KAAK,IAAI,KAAKA,SAAQ,KAAK,MAAM,KAAK,IAAI,EAAE;AAErE,UAAM,qBAAqB,CAAC,WAAoBG,QAAe,SAAiB;AAC9E,UAAI,CAAC,aAAa,OAAO,cAAc,SAAU;AACjD,YAAMC,QAAO;AACb,iBAAW,OAAO,CAAC,cAAc,aAAa,GAAY;AACxD,cAAM,QAAQ,QAAQA,MAAK,GAAG,CAAC;AAC/B,iBAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC;AAAA,YACE,MAAM,EAAE;AAAA,YACR,SAAS,QAAQ,UAAOD,MAAK,SAAM,GAAG;AAAA,YACtC,GAAG,IAAI,IAAI,GAAG,IAAI,EAAE;AAAA,YACpB,QAAQ,gBAAgB,qBAAqB;AAAA,UAC/C;AAAA,QACF;AAAA,MACF;AAAA,IACF;AAEA,uBAAmB,KAAK,MAAM,QAAQ,SAAS,EAAE,QAAQ;AACzD,UAAM,YAAY,KAAK;AACvB,QAAI,aAAa,OAAO,cAAc,YAAY,CAAC,MAAM,QAAQ,SAAS,GAAG;AAC3E,iBAAW,CAAC,KAAK,EAAE,KAAK,OAAO,QAAQ,SAAmB,GAAG;AAC3D,2BAAmB,IAAI,aAAa,GAAG,IAAI,SAAS,EAAE,eAAe,GAAG,EAAE;AAAA,MAC5E;AAAA,IACF;AAAA,EACF;AAGA,QAAM,QAAQJ,UAAQ,MAAM,KAAK;AACjC,WAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,UAAM,OAAO,MAAM,EAAE;AACrB,QAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,UAAM,WAAWC,SAAQ,KAAK,IAAI,KAAK,IAAI,EAAE;AAM7C,eAAW,EAAE,WAAW,KAAK,KAAK,mBAAmB,MAAM,SAAS,EAAE,GAAG,GAAG;AAC1E,YAAM,QAAQ,UAAU;AACxB,UAAI,CAAC,SAAS,OAAO,UAAU,SAAU;AACzC,YAAM,QAAQ,QAAQ,MAAM,WAAW;AACvC,eAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC;AAAA,UACE,MAAM,EAAE;AAAA,UACR,SAAS,QAAQ,qBAAkBA,SAAQ,UAAU,IAAI,KAAK,GAAG;AAAA,UACjE,GAAG,IAAI,2BAA2B,EAAE;AAAA,UACpC;AAAA,QACF;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAGA,QAAM,OAAOD,UAAQ,MAAM,IAAI;AAC/B,WAAS,KAAK,GAAG,KAAK,KAAK,QAAQ,MAAM;AACvC,UAAM,MAAM,KAAK,EAAE;AACnB,QAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,UAAM,UAAUC,SAAQ,IAAI,IAAI,KAAK,IAAI,EAAE;AAE3C,UAAM,UAAU,CAAC,OAAgB,aAAqB;AACpD,YAAM,WAAWD,UAAQ,KAAK;AAC9B,eAAS,KAAK,GAAG,KAAK,SAAS,QAAQ,MAAM;AAC3C,cAAM,MAAM,SAAS,EAAE;AACvB,YAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,cAAM,UAAU,GAAG,QAAQ,IAAI,EAAE;AACjC,cAAM,YAAY,IAAI;AACtB,cAAM,aAAaC,SAAQ,WAAW,UAAU;AAChD,YAAI,IAAI,SAAS,YAAY,YAAY;AACvC;AAAA,YACE;AAAA,YACA,QAAQ,OAAO,eAAYA,SAAQ,IAAI,EAAE,KAAK,IAAI,EAAE,EAAE;AAAA,YACtD,GAAG,OAAO;AAAA,YACV;AAAA,UACF;AAAA,QACF;AACA,YAAI,MAAM,QAAQ,IAAI,QAAQ,EAAG,SAAQ,IAAI,UAAU,GAAG,OAAO,WAAW;AAAA,MAC9E;AAAA,IACF;AAEA,YAAQ,IAAI,YAAY,QAAQ,EAAE,cAAc;AAChD,UAAM,QAAQD,UAAQ,IAAI,KAAK;AAC/B,aAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,cAAQ,MAAM,EAAE,GAAG,YAAY,QAAQ,EAAE,WAAW,EAAE,cAAc;AAAA,IACtE;AAAA,EACF;AAEA,SAAO;AACT;;;AC/MO,IAAM,qBAAqB;AA8BlC,IAAMM,iBAAgB,oBAAI,IAAY;AAAA,EACpC;AAAA,EACA;AAAA,EAAc;AAAA,EAAc;AAAA,EAAc;AAAA,EAC1C;AAAA,EAAY;AAAA,EAAmB;AAAA,EAAa;AAAA,EAC5C;AACF,CAAC;AAED,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAASC,SAAQ,GAAgC;AAC/C,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAEA,SAASC,OAAM,GAAyB;AACtC,SAAO,CAAC,CAAC,KAAK,OAAO,MAAM,YAAY,CAAC,MAAM,QAAQ,CAAC;AACzD;AAcA,SAAS,cAAc,OAAgB,UAA8B;AACnE,QAAM,MAAkB,CAAC;AACzB,QAAM,MAAM,CAAC,GAAY,SAAiB;AACxC,UAAM,OAAOD,SAAQ,CAAC;AACtB,QAAI,MAAM;AACR,UAAI,KAAK,EAAE,MAAM,MAAM,KAAK,CAAC;AAC7B;AAAA,IACF;AACA,QAAI,CAACC,OAAM,CAAC,EAAG;AACf,UAAM,QAAQD,SAAQ,EAAE,KAAK,KAAKA,SAAQ,EAAE,IAAI;AAChD,QAAI,MAAO,KAAI,KAAK,EAAE,MAAM,OAAO,MAAM,GAAG,IAAI,IAAIA,SAAQ,EAAE,KAAK,IAAI,UAAU,MAAM,GAAG,CAAC;AAAA,EAC7F;AACA,MAAI,MAAM,QAAQ,KAAK,GAAG;AACxB,aAAS,IAAI,GAAG,IAAI,MAAM,QAAQ,IAAK,KAAI,MAAM,CAAC,GAAG,GAAG,QAAQ,IAAI,CAAC,GAAG;AAAA,EAC1E,OAAO;AACL,QAAI,OAAO,QAAQ;AAAA,EACrB;AACA,SAAO;AACT;AAiBA,IAAM,wBAAsE;AAAA,EAC1E,qBAAqB,EAAE,OAAO,CAAC,QAAQ,EAAE;AAAA;AAAA;AAAA,EAGzC,kBAAkB,EAAE,OAAO,CAAC,UAAU,YAAY,GAAG,gBAAgB,CAAC,UAAU,EAAE;AAAA,EAClF,eAAe,EAAE,OAAO,CAAC,aAAa,EAAE;AAAA,EACxC,kBAAkB,EAAE,OAAO,CAAC,OAAO,EAAE;AAAA,EACrC,kBAAkB,EAAE,OAAO,CAAC,QAAQ,EAAE;AAAA,EACtC,gBAAgB,EAAE,OAAO,CAAC,QAAQ,EAAE;AAAA;AAAA,EAEpC,yBAAyB,EAAE,OAAO,CAAC,gBAAgB,cAAc,cAAc,EAAE;AACnF;AAOA,IAAM,oBAAoB;AAEnB,SAAS,0BAA0B,OAAmC;AAC3E,QAAM,WAA+B,CAAC;AACtC,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAIhD,QAAM,eAAe,oBAAI,IAAyB;AAClD,aAAW,OAAOD,UAAQ,MAAM,OAAO,GAAG;AACxC,UAAM,OAAOC,SAAQ,IAAI,IAAI;AAC7B,QAAI,CAAC,KAAM;AACX,UAAM,QAAQ,oBAAI,IAAY;AAC9B,eAAW,KAAKD,UAAQ,IAAI,MAAM,GAAG;AACnC,YAAM,KAAKC,SAAQ,EAAE,IAAI;AACzB,UAAI,GAAI,OAAM,IAAI,EAAE;AAAA,IACtB;AACA,iBAAa,IAAI,MAAM,KAAK;AAAA,EAC9B;AAEA,QAAM,QAAQD,UAAQ,MAAM,KAAK;AACjC,WAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,UAAM,OAAO,MAAM,EAAE;AACrB,QAAI,CAAC,QAAQ,OAAO,SAAS,SAAU;AACvC,UAAM,WAAWC,SAAQ,KAAK,IAAI,KAAK,IAAI,EAAE;AAQ7C,UAAM,YAAY,CAAC,MAAkB,YAAgC,UAAkB;AACrF,UAAI,CAAC,WAAY;AACjB,YAAM,QAAQ,aAAa,IAAI,UAAU;AACzC,UAAI,CAAC,MAAO;AACZ,iBAAW,OAAO,MAAM;AAGtB,YAAI,IAAI,KAAK,SAAS,GAAG,EAAG;AAC5B,YAAI,MAAM,IAAI,IAAI,IAAI,KAAKF,eAAc,IAAI,IAAI,IAAI,EAAG;AACxD,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN;AAAA,UACA,MAAM,IAAI;AAAA,UACV,SACE,UAAU,IAAI,IAAI,+BAA+B,UAAU;AAAA,UAE7D,MACE,+BAA+B,IAAI,IAAI,QAAQ,UAAU,+DAExD,MAAM,OAAO,IAAI,mBAAmB,CAAC,GAAG,KAAK,EAAE,KAAK,EAAE,KAAK,IAAI,CAAC,MAAM;AAAA,QAC3E,CAAC;AAAA,MACH;AAAA,IACF;AAEA,eAAW,EAAE,WAAW,MAAM,WAAW,KAAK,mBAAmB,MAAM,SAAS,EAAE,GAAG,GAAG;AACtF,YAAM,OAAOE,SAAQ,UAAU,IAAI;AACnC,YAAM,QAAQC,OAAM,UAAU,UAAU,IAAI,UAAU,aAAa;AACnE,UAAI,CAAC,QAAQ,CAAC,MAAO;AACrB,YAAM,QAAQ,SAAS,QAAQ,UAAO,IAAI;AAE1C,UAAI,SAAS,mBAAmB;AAE9B,cAAM,gBAAgBD,SAAQ,MAAM,UAAU;AAC9C,cAAM,cAA0B;AAAA,UAC9B,GAAG,cAAc,MAAM,SAAS,GAAG,IAAI,qBAAqB;AAAA,UAC5D,GAAG,cAAc,MAAM,MAAM,GAAG,IAAI,kBAAkB;AAAA,UACtD,GAAG,cAAc,MAAM,QAAQ,GAAG,IAAI,oBAAoB;AAAA,UAC1D,GAAG,cAAc,MAAM,mBAAmB,GAAG,IAAI,+BAA+B;AAAA,QAClF;AACA,kBAAU,aAAa,eAAe,KAAK;AAE3C;AAAA,UACE,cAAc,MAAM,wBAAwB,GAAG,IAAI,oCAAoC;AAAA,UACvF;AAAA,UACA;AAAA,QACF;AAEA,cAAM,MAAMC,OAAM,MAAM,GAAG,IAAI,MAAM,MAAM;AAC3C,cAAM,SAAS,OAAOA,OAAM,IAAI,MAAM,IAAI,IAAI,SAAS;AACvD,YAAI,QAAQ;AACV;AAAA,YACE;AAAA,cACE,GAAG,cAAc,OAAO,YAAY,GAAG,IAAI,mCAAmC;AAAA,cAC9E,GAAG,cAAc,OAAO,YAAY,GAAG,IAAI,mCAAmC;AAAA,YAChF;AAAA,YACAD,SAAQ,OAAO,MAAM;AAAA,YACrB;AAAA,UACF;AAAA,QACF;AACA,YAAI,KAAK;AACP;AAAA,YACE,cAAc,IAAI,WAAW,GAAG,IAAI,2BAA2B;AAAA,YAC/D;AAAA,YACA;AAAA,UACF;AAAA,QACF;AACA;AAAA,MACF;AAEA,YAAM,OAAO,sBAAsB,IAAI;AACvC,UAAI,CAAC,KAAM;AAEX,YAAM,OAAmB,CAAC;AAC1B,iBAAW,OAAO,KAAK,SAAS,CAAC,GAAG;AAClC,aAAK,KAAK,GAAG,cAAc,MAAM,GAAG,GAAG,GAAG,IAAI,eAAe,GAAG,EAAE,CAAC;AAAA,MACrE;AACA,iBAAW,OAAO,KAAK,kBAAkB,CAAC,GAAG;AAC3C,cAAM,WAAW,MAAM,QAAQ,MAAM,GAAG,CAAC,IAAK,MAAM,GAAG,IAAkB,CAAC;AAC1E,iBAAS,KAAK,GAAG,KAAK,SAAS,QAAQ,MAAM;AAC3C,gBAAM,UAAU,SAAS,EAAE;AAC3B,cAAI,CAACC,OAAM,OAAO,EAAG;AACrB,eAAK;AAAA,YACH,GAAG,cAAc,QAAQ,QAAQ,GAAG,IAAI,eAAe,GAAG,IAAI,EAAE,UAAU;AAAA,UAC5E;AAAA,QACF;AAAA,MACF;AACA,gBAAU,MAAM,YAAY,KAAK;AAAA,IACnC;AAIA,UAAM,MAAMA,OAAM,KAAK,eAAe,IAAI,KAAK,kBAAkB;AACjE,QAAI,KAAK;AACP,YAAM,YAAYD,SAAQ,IAAI,MAAM,KAAKA,SAAQ,KAAK,MAAM;AAC5D,YAAM,OAAO,SAAS,EAAE;AACxB,YAAM,OAAmB;AAAA,QACvB,GAAG,cAAc,IAAI,SAAS,GAAG,IAAI,UAAU;AAAA,QAC/C,GAAG,cAAc,IAAI,MAAM,GAAG,IAAI,OAAO;AAAA,QACzC,GAAG,cAAc,IAAI,UAAU,GAAG,IAAI,WAAW;AAAA,MACnD;AACA,YAAM,cAAcC,OAAM,IAAI,WAAW,IAAI,IAAI,cAAc;AAC/D,UAAI,aAAa;AACf,aAAK,KAAK,GAAG,cAAc,YAAY,QAAQ,GAAG,IAAI,qBAAqB,CAAC;AAAA,MAC9E;AACA,gBAAU,MAAM,WAAW,SAAS,QAAQ,wBAAqB;AAAA,IACnE;AAAA,EACF;AAEA,SAAO;AACT;;;ACtQO,IAAM,0BAA0B;AAChC,IAAM,wBAAwB;AAC9B,IAAM,wBAAwB;AAC9B,IAAM,0BAA0B;AAoBvC,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAASC,SAAQ,GAAgC;AAC/C,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAEA,SAASC,SAAQ,GAAsB;AACrC,SAAO,MAAM,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,MAAmB,OAAO,MAAM,YAAY,EAAE,SAAS,CAAC,IAAI,CAAC;AACnG;AAEA,SAASC,OAAM,GAAyB;AACtC,SAAO,CAAC,CAAC,KAAK,OAAO,MAAM,YAAY,CAAC,MAAM,QAAQ,CAAC;AACzD;AAEA,SAASC,UAAS,GAAW,GAAmB;AAC9C,QAAM,IAAI,EAAE;AACZ,QAAM,IAAI,EAAE;AACZ,MAAI,MAAM,EAAG,QAAO;AACpB,MAAI,MAAM,EAAG,QAAO;AACpB,MAAI,OAAO,MAAM,KAAK,EAAE,QAAQ,IAAI,EAAE,GAAG,CAAC,GAAG,MAAM,CAAC;AACpD,WAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,UAAM,OAAO,CAAC,GAAG,GAAG,IAAI,MAAc,CAAC,EAAE,KAAK,CAAC,CAAC;AAChD,aAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,YAAM,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,IAAI,IAAI;AACzC,WAAK,CAAC,IAAI,KAAK,IAAI,KAAK,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,GAAG,KAAK,IAAI,CAAC,IAAI,IAAI;AAAA,IACrE;AACA,WAAO;AAAA,EACT;AACA,SAAO,KAAK,CAAC;AACf;AAEA,SAASC,SAAQ,QAAgB,OAAiC;AAChE,MAAI;AACJ,MAAI,YAAY;AAChB,aAAW,KAAK,OAAO;AACrB,UAAM,IAAID,UAAS,QAAQ,CAAC;AAC5B,QAAI,IAAI,WAAW;AACjB,kBAAY;AACZ,aAAO;AAAA,IACT;AAAA,EACF;AACA,QAAM,QAAQ,KAAK,IAAI,GAAG,KAAK,MAAM,OAAO,SAAS,CAAC,CAAC;AACvD,SAAO,QAAQ,aAAa,QAAQ,kBAAkB,IAAI,OAAO;AACnE;AAEA,SAASE,MAAK,OAAiC;AAC7C,QAAM,MAAM,CAAC,GAAG,KAAK,EAAE,KAAK;AAC5B,SAAO,IAAI,SAAS,IAAI,KAAK,IAAI,IAAI;AACvC;AAQA,SAAS,cAAc,OAA0C;AAC/D,QAAM,MAAM,oBAAI,IAA0B;AAC1C,aAAW,MAAMN,UAAQ,MAAM,QAAQ,GAAG;AACxC,UAAM,OAAOC,SAAQ,GAAG,IAAI;AAC5B,QAAI,CAAC,KAAM;AACX,UAAM,aAAa,oBAAI,IAAY;AACnC,eAAW,KAAKD,UAAQ,GAAG,UAAU,GAAG;AACtC,YAAM,IAAIC,SAAQ,EAAE,IAAI;AACxB,UAAI,EAAG,YAAW,IAAI,CAAC;AAAA,IACzB;AACA,UAAM,WAAW,oBAAI,IAAY;AACjC,eAAW,KAAKD,UAAQ,GAAG,QAAQ,GAAG;AACpC,YAAM,IAAIC,SAAQ,EAAE,IAAI;AACxB,UAAI,EAAG,UAAS,IAAI,CAAC;AAAA,IACvB;AACA,QAAI,IAAI,MAAM,EAAE,YAAY,SAAS,CAAC;AAAA,EACxC;AACA,SAAO;AACT;AAwBO,SAAS,sBAAsB,OAAsC;AAC1E,QAAM,WAAkC,CAAC;AACzC,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAEhD,QAAM,WAAW,cAAc,KAAK;AACpC,MAAI,SAAS,SAAS,KAAK,CAAC,MAAM,WAAW,CAAC,MAAM,SAAS,CAAC,MAAM,MAAO,QAAO;AAElF,QAAM,QAAQ,CAAC,YAA0B;AACvC,UAAM,SAAS,QAAQ;AACvB,QAAI,CAAC,OAAQ;AACb,UAAM,KAAK,SAAS,IAAI,MAAM;AAC9B,QAAI,CAAC,IAAI;AACP,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,QAAQ;AAAA,QACf,MAAM,GAAG,QAAQ,IAAI;AAAA,QACrB,SACE,kBAAkB,MAAM;AAAA,QAE1B,MACE,sBAAsBK,MAAK,SAAS,KAAK,CAAC,CAAC,IAAID,SAAQ,QAAQ,SAAS,KAAK,CAAC,CAAC;AAAA,MAEnF,CAAC;AACD;AAAA,IACF;AAEA,UAAM,eAAe,CAAC,MAAc,SAAiB;AACnD,UAAI,GAAG,WAAW,IAAI,IAAI,EAAG;AAC7B,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,QAAQ;AAAA,QACf;AAAA,QACA,SACE,IAAI,IAAI,6CAA6C,MAAM;AAAA,QAG7D,MACE,uBAAuBC,MAAK,GAAG,UAAU,CAAC,IAAID,SAAQ,MAAM,GAAG,UAAU,CAAC;AAAA,MAE9E,CAAC;AAAA,IACH;AAEA,UAAM,aAAa,CAAC,MAAc,MAAcE,cAA2B;AACzE,UAAI,CAAC,GAAG,SAAS,IAAI,IAAI,GAAG;AAC1B,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,QAAQ;AAAA,UACf;AAAA,UACA,SACE,IAAI,IAAI,2CAA2C,MAAM;AAAA,UAG3D,MACE,qBAAqBD,MAAK,GAAG,QAAQ,CAAC,IAAID,SAAQ,MAAM,GAAG,QAAQ,CAAC;AAAA,QAExE,CAAC;AACD;AAAA,MACF;AAIA,UAAIE,aAAYA,UAAS,OAAO,KAAK,CAACA,UAAS,IAAI,IAAI,GAAG;AACxD,iBAAS,KAAK;AAAA,UACZ,UAAU;AAAA,UACV,MAAM;AAAA,UACN,OAAO,QAAQ;AAAA,UACf;AAAA,UACA,SACE,IAAI,IAAI,+BAA+B,MAAM,iDACzBD,MAAKC,SAAQ,CAAC;AAAA,UAEpC,MAAM,QAAQ,IAAI;AAAA,QACpB,CAAC;AAAA,MACH;AAAA,IACF;AAEA,UAAM,SAAS,QAAQ;AACvB,QAAI,QAAQ;AACV,eAAS,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,KAAK;AAC5C,qBAAa,OAAO,MAAM,CAAC,GAAG,GAAG,OAAO,IAAI,IAAI,CAAC,GAAG;AAAA,MACtD;AAAA,IACF;AACA,UAAM,SAAS,QAAQ;AACvB,UAAM,WAAW,IAAI,IAAI,QAAQ,SAAS,CAAC,CAAC;AAC5C,QAAI,QAAQ;AACV,eAAS,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,KAAK;AAC5C,mBAAW,OAAO,MAAM,CAAC,GAAG,GAAG,OAAO,IAAI,IAAI,CAAC,GAAG;AAAA,MACpD;AAAA,IACF;AACA,QAAI,QAAQ,MAAO,cAAa,QAAQ,MAAM,MAAM,QAAQ,MAAM,IAAI;AACtE,QAAI,QAAQ,MAAO,YAAW,QAAQ,MAAM,MAAM,QAAQ,MAAM,MAAM,QAAQ;AAC9E,eAAW,KAAK,QAAQ,UAAU,CAAC,EAAG,YAAW,EAAE,MAAM,EAAE,MAAM,QAAQ;AAAA,EAC3E;AAGA,QAAM,UAAUP,UAAQ,MAAM,OAAO;AACrC,WAAS,KAAK,GAAG,KAAK,QAAQ,QAAQ,MAAM;AAC1C,UAAM,SAAS,QAAQ,EAAE;AACzB,QAAI,CAACG,OAAM,MAAM,EAAG;AACpB,UAAM,aAAaF,SAAQ,OAAO,IAAI,KAAK,IAAI,EAAE;AAEjD,UAAM,mBAAmB,CACvB,OACA,SACA,QACA,OACA,SACG;AACH,UAAI,CAACE,OAAM,KAAK,EAAG;AACnB,YAAM;AAAA,QACJ;AAAA;AAAA;AAAA;AAAA,QAIA,QAAQ,EAAE,OAAO,QAAQ,MAAM,GAAG,IAAI,UAAU;AAAA,QAChD,OAAOF,SAAQ,MAAM,KAAK,IAAI,EAAE,MAAMA,SAAQ,MAAM,KAAK,GAAI,MAAM,GAAG,IAAI,eAAe,IAAI;AAAA,QAC7F,OAAOA,SAAQ,MAAM,KAAK,IAAI,EAAE,MAAMA,SAAQ,MAAM,KAAK,GAAI,MAAM,GAAG,IAAI,eAAe,IAAI;AAAA,QAC7F,QAAQD,UAAQ,MAAM,MAAM,EACzB,IAAI,CAAC,GAAG,QAAQ,EAAE,MAAMC,SAAQ,EAAE,IAAI,GAAG,MAAM,GAAG,IAAI,iBAAiB,EAAE,SAAS,EAAE,EACpF,OAAO,CAAC,MAA2C,CAAC,CAAC,EAAE,IAAI;AAAA,QAC9D;AAAA,QACA,MAAM,GAAG,IAAI;AAAA,MACf,CAAC;AAAA,IACH;AAEA;AAAA,MACE,OAAO;AAAA,MACPA,SAAQ,OAAO,OAAO;AAAA,MACtBC,SAAQ,OAAO,MAAM;AAAA,MACrB,WAAW,UAAU;AAAA,MACrB,WAAW,EAAE;AAAA,IACf;AAEA,UAAM,SAAS,MAAM,QAAQ,OAAO,MAAM,IAAI,OAAO,SAAS,CAAC;AAC/D,aAAS,KAAK,GAAG,KAAK,OAAO,QAAQ,MAAM;AACzC,YAAM,QAAQ,OAAO,EAAE;AACvB,UAAI,CAACC,OAAM,KAAK,EAAG;AACnB;AAAA,QACE,MAAM;AAAA,QACNF,SAAQ,MAAM,OAAO;AAAA,QACrBC,SAAQ,MAAM,MAAM;AAAA,QACpB,WAAW,UAAU,iBAAcD,SAAQ,MAAM,IAAI,KAAK,IAAI,EAAE,EAAE;AAAA,QAClE,WAAW,EAAE,YAAY,EAAE;AAAA,MAC7B;AAAA,IACF;AAAA,EACF;AAGA,QAAM,iBAAiB,CAAC,WAAoB,OAAe,SAAiB;AAC1E,QAAI,CAACE,OAAM,SAAS,EAAG;AACvB,UAAM,QAAQ,UAAU;AACxB,QAAI,CAACA,OAAM,KAAK,EAAG;AACnB,UAAM;AAAA,MACJ,SAASF,SAAQ,MAAM,OAAO;AAAA,MAC9B,YAAY,EAAE,OAAOC,SAAQ,MAAM,UAAU,GAAG,MAAM,GAAG,IAAI,oBAAoB;AAAA,MACjF,QAAQ,EAAE,OAAOA,SAAQ,MAAM,MAAM,GAAG,MAAM,GAAG,IAAI,gBAAgB;AAAA,MACrE;AAAA,MACA,MAAM,GAAG,IAAI;AAAA,IACf,CAAC;AAAA,EACH;AAEA,QAAM,QAAQF,UAAQ,MAAM,KAAK;AACjC,WAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,UAAM,OAAO,MAAM,EAAE;AACrB,QAAI,CAACG,OAAM,IAAI,EAAG;AAClB,UAAM,WAAWF,SAAQ,KAAK,IAAI,KAAKA,SAAQ,KAAK,UAAU,KAAK,IAAI,EAAE;AACzE,mBAAe,KAAK,MAAM,SAAS,QAAQ,qBAAkB,SAAS,EAAE,QAAQ;AAChF,QAAIE,OAAM,KAAK,SAAS,GAAG;AACzB,iBAAW,CAAC,KAAK,EAAE,KAAK,OAAO,QAAQ,KAAK,SAAS,GAAG;AACtD,uBAAe,IAAI,SAAS,QAAQ,oBAAiB,GAAG,UAAU,SAAS,EAAE,eAAe,GAAG,EAAE;AAAA,MACnG;AAAA,IACF;AAAA,EACF;AAEA,QAAM,UAAUH,UAAQ,MAAM,OAAO;AACrC,WAAS,KAAK,GAAG,KAAK,QAAQ,QAAQ,MAAM;AAC1C,UAAM,MAAM,QAAQ,EAAE;AACtB,QAAI,CAACG,OAAM,GAAG,KAAK,CAACA,OAAM,IAAI,SAAS,EAAG;AAC1C,UAAM,UAAUF,SAAQ,IAAI,IAAI,KAAK,IAAI,EAAE;AAC3C,eAAW,CAAC,KAAK,EAAE,KAAK,OAAO,QAAQ,IAAI,SAAS,GAAG;AACrD;AAAA,QACE;AAAA,QACA,WAAW,OAAO,oBAAiB,GAAG;AAAA,QACtC,WAAW,EAAE,eAAe,GAAG;AAAA,MACjC;AAAA,IACF;AAAA,EACF;AAMA,QAAM,QAAQD,UAAQ,MAAM,KAAK;AACjC,WAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,UAAM,OAAO,MAAM,EAAE;AACrB,QAAI,CAACG,OAAM,IAAI,EAAG;AAClB,UAAM,WAAWF,SAAQ,KAAK,IAAI,KAAK,IAAI,EAAE;AAC7C,eAAW,EAAE,WAAW,KAAK,KAAK,mBAAmB,MAAM,SAAS,EAAE,GAAG,GAAG;AAC1E,YAAM,QAAQE,OAAM,UAAU,UAAU,IAAI,UAAU,aAAa;AACnE,UAAI,CAAC,SAAS,CAACF,SAAQ,MAAM,OAAO,EAAG;AAIvC,YAAM,WAAWD,UAAQ,MAAM,KAAK,EACjC,IAAI,CAAC,GAAG,QAAQ,EAAE,MAAMC,SAAQ,EAAE,KAAK,GAAG,MAAM,GAAG,IAAI,qBAAqB,EAAE,UAAU,EAAE,EAC1F,OAAO,CAAC,MAA2C,CAAC,CAAC,EAAE,IAAI;AAC9D,YAAM,aAAaD,UAAQ,MAAM,MAAM,EACpC,IAAI,CAAC,GAAG,QAAQ,EAAE,MAAMC,SAAQ,EAAE,IAAI,GAAG,MAAM,GAAG,IAAI,sBAAsB,EAAE,SAAS,EAAE,EACzF,OAAO,CAAC,MAA2C,CAAC,CAAC,EAAE,IAAI;AAC9D,YAAM;AAAA,QACJ,SAASA,SAAQ,MAAM,OAAO;AAAA,QAC9B,YAAY,EAAE,OAAOC,SAAQ,MAAM,UAAU,GAAG,MAAM,GAAG,IAAI,yBAAyB;AAAA,QACtF,QAAQ,EAAE,OAAOA,SAAQ,MAAM,MAAM,GAAG,MAAM,GAAG,IAAI,qBAAqB;AAAA,QAC1E,QAAQ,CAAC,GAAG,UAAU,GAAG,UAAU;AAAA,QACnC,OAAO,SAAS,QAAQ,UAAOD,SAAQ,UAAU,IAAI,KAAK,OAAO;AAAA,QACjE,MAAM,GAAG,IAAI;AAAA,MACf,CAAC;AAAA,IACH;AAAA,EACF;AAEA,SAAO;AACT;;;AChWA,SAAS,gCAAAO,qCAAoC;;;ACjB7C,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAGO,SAAS,kBAAkB,OAA6B;AAC7D,QAAM,UAA+B,CAAC;AACtC,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO,EAAE,SAAS,GAAG,QAAQ;AAEtE,QAAM,cAAc,oBAAI,IAAoB;AAC5C,aAAW,OAAOA,UAAQ,MAAM,OAAO,GAAG;AACxC,UAAM,OAAO,OAAO,IAAI,SAAS,WAAW,IAAI,OAAO;AACvD,QAAI,CAAC,KAAM;AACX,UAAM,MAAO,IAAI,gBAAiB,IAAI,UAAiC;AACvE,QAAI,OAAO,QAAQ,SAAU,aAAY,IAAI,MAAM,GAAG;AAAA,EACxD;AAEA,aAAW,MAAMA,UAAQ,MAAM,WAAW,GAAG;AAC3C,UAAM,SAAS,OAAO,GAAG,SAAS,WAAW,GAAG,OAAO;AACvD,QAAI,CAAC,OAAQ;AACb,UAAM,UAAW,GAAG,WAAW,OAAO,GAAG,YAAY,WAAW,GAAG,UAAU,CAAC;AAC9E,eAAW,CAAC,SAAS,OAAO,KAAK,OAAO,QAAQ,OAAO,GAAG;AACxD,YAAM,IAAK,WAAW,CAAC;AACvB,YAAM,QAA2B;AAAA,QAC/B,eAAe;AAAA,QACf,QAAQ;AAAA,QACR,QAAQ,EAAE,gBAAgB;AAAA,QAC1B,MAAM,EAAE,cAAc,QAAQ,EAAE,mBAAmB,QAAQ,EAAE,qBAAqB;AAAA,QAClF,MAAM,EAAE,cAAc,QAAQ,EAAE,qBAAqB;AAAA,QACrD,QAAQ,EAAE,gBAAgB,QAAQ,EAAE,qBAAqB;AAAA,QACzD,gBAAgB,EAAE,mBAAmB;AAAA,QACrC,kBAAkB,EAAE,qBAAqB;AAAA,MAC3C;AACA,UAAI,OAAO,EAAE,cAAc,SAAU,OAAM,YAAY,EAAE;AACzD,UAAI,OAAO,EAAE,eAAe,SAAU,OAAM,aAAa,EAAE;AAC3D,YAAM,MAAM,YAAY,IAAI,OAAO;AACnC,UAAI,IAAK,OAAM,eAAe;AAC9B,cAAQ,KAAK,KAAK;AAAA,IACpB;AAAA,EACF;AAEA,UAAQ;AAAA,IAAK,CAAC,GAAG,MACf,EAAE,kBAAkB,EAAE,gBAClB,EAAE,OAAO,cAAc,EAAE,MAAM,IAC/B,EAAE,cAAc,cAAc,EAAE,aAAa;AAAA,EACnD;AACA,SAAO,EAAE,SAAS,GAAG,QAAQ;AAC/B;AAEA,IAAM,aAAuD;AAAA,EAC3D,CAAC,UAAU,QAAQ;AAAA,EACnB,CAAC,QAAQ,MAAM;AAAA,EACf,CAAC,QAAQ,MAAM;AAAA,EACf,CAAC,UAAU,QAAQ;AAAA,EACnB,CAAC,kBAAkB,eAAe;AAAA,EAClC,CAAC,oBAAoB,iBAAiB;AACxC;AAMO,SAAS,iBAAiB,QAAsB,OAA+B;AACpF,QAAM,QAAkB,CAAC;AACzB,QAAM,MAAM,CAAC,MAAyB,GAAG,EAAE,aAAa,KAAS,EAAE,MAAM;AACzE,QAAM,YAAY,IAAI,KAAK,QAAQ,WAAW,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACzE,QAAM,WAAW,IAAI,KAAK,OAAO,WAAW,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AAEvE,aAAW,CAAC,GAAG,CAAC,KAAK,WAAW;AAC9B,QAAI,CAAC,SAAS,IAAI,CAAC,GAAG;AACpB,YAAM,KAAK,IAAI,EAAE,aAAa,0BAA0B,EAAE,MAAM,mBAAmB;AAAA,IACrF;AAAA,EACF;AACA,aAAW,CAAC,GAAG,CAAC,KAAK,UAAU;AAC7B,UAAM,IAAI,UAAU,IAAI,CAAC;AACzB,QAAI,CAAC,GAAG;AACN,YAAM,SAAS,WAAW,OAAO,CAAC,CAAC,GAAG,MAAM,EAAE,GAAG,MAAM,IAAI,EAAE,IAAI,CAAC,CAAC,EAAEC,MAAK,MAAMA,MAAK;AACrF,YAAM,KAAK,IAAI,EAAE,aAAa,sBAAsB,EAAE,MAAM,MAAM,OAAO,KAAK,IAAI,KAAK,aAAa,GAAG;AACvG;AAAA,IACF;AACA,eAAW,CAAC,KAAKA,MAAK,KAAK,YAAY;AACrC,UAAI,EAAE,GAAG,MAAM,EAAE,GAAG,GAAG;AACrB,cAAM,KAAK,IAAI,EAAE,aAAa,KAAK,EAAE,GAAG,IAAI,UAAU,OAAO,IAAIA,MAAK,QAAQ,EAAE,MAAM,GAAG;AAAA,MAC3F;AAAA,IACF;AACA,SAAK,EAAE,aAAa,YAAY,EAAE,aAAa,QAAQ;AACrD,YAAM,KAAK,IAAI,EAAE,aAAa,oBAAoB,EAAE,MAAM,MAAM,EAAE,aAAa,KAAK,WAAM,EAAE,aAAa,KAAK,EAAE;AAAA,IAClH;AACA,SAAK,EAAE,cAAc,YAAY,EAAE,cAAc,QAAQ;AACvD,YAAM,KAAK,IAAI,EAAE,aAAa,qBAAqB,EAAE,MAAM,MAAM,EAAE,cAAc,KAAK,WAAM,EAAE,cAAc,KAAK,EAAE;AAAA,IACrH;AACA,SAAK,EAAE,gBAAgB,SAAS,EAAE,gBAAgB,KAAK;AACrD,YAAM,KAAK,IAAI,EAAE,MAAM,4BAA4B,EAAE,gBAAgB,SAAS,WAAM,EAAE,gBAAgB,SAAS,4BAA4B;AAAA,IAC7I;AAAA,EACF;AACA,SAAO;AACT;;;ADhFO,IAAM,uBAAuB;AAqBpC,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAASC,SAAQ,GAAgC;AAC/C,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAUA,SAAS,oBAAoB,OAA8B;AACzD,QAAM,MAAqB,CAAC;AAC5B,QAAM,OAAOD,UAAQ,MAAM,IAAI;AAE/B,WAAS,KAAK,GAAG,KAAK,KAAK,QAAQ,MAAM;AACvC,UAAM,MAAM,KAAK,EAAE;AACnB,QAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,UAAM,UAAUC,SAAQ,IAAI,IAAI,KAAK,IAAI,EAAE;AAE3C,UAAM,OAAO,CAAC,OAAgB,aAAqB;AACjD,YAAM,WAAWD,UAAQ,KAAK;AAC9B,eAAS,KAAK,GAAG,KAAK,SAAS,QAAQ,MAAM;AAC3C,cAAM,MAAM,SAAS,EAAE;AACvB,YAAI,CAAC,OAAO,OAAO,QAAQ,SAAU;AACrC,cAAM,UAAU,GAAG,QAAQ,IAAI,EAAE;AACjC,cAAM,aAAaC,SAAQ,IAAI,UAAU;AACzC,YAAI,IAAI,SAAS,YAAY,YAAY;AACvC,cAAI,KAAK;AAAA,YACP;AAAA,YACA,OAAO,QAAQ,OAAO,eAAYA,SAAQ,IAAI,EAAE,KAAK,IAAI,EAAE,EAAE;AAAA,YAC7D,MAAM,GAAG,OAAO;AAAA,UAClB,CAAC;AAAA,QACH;AACA,YAAI,MAAM,QAAQ,IAAI,QAAQ,EAAG,MAAK,IAAI,UAAU,GAAG,OAAO,WAAW;AAAA,MAC3E;AAAA,IACF;AAEA,SAAK,IAAI,YAAY,QAAQ,EAAE,cAAc;AAC7C,UAAM,QAAQD,UAAQ,IAAI,KAAK;AAC/B,aAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,WAAK,MAAM,EAAE,GAAG,YAAY,QAAQ,EAAE,WAAW,EAAE,cAAc;AAAA,IACnE;AAAA,EACF;AAEA,SAAO;AACT;AAMO,SAAS,kBAAkB,OAAmC;AACnE,QAAM,WAA+B,CAAC;AACtC,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAGhD,QAAM,iBAAiBA,UAAQ,MAAM,WAAW;AAChD,MAAI,eAAe,WAAW,EAAG,QAAO;AAExC,QAAM,YAAY,oBAAoB,KAAK;AAC3C,MAAI,UAAU,WAAW,EAAG,QAAO;AAKnC,QAAM,aAAa,oBAAI,IAAY;AACnC,aAAW,OAAOA,UAAQ,MAAM,OAAO,GAAG;AACxC,UAAM,IAAIC,SAAQ,IAAI,IAAI;AAC1B,QAAI,EAAG,YAAW,IAAI,CAAC;AAAA,EACzB;AAGA,QAAM,WAAW,oBAAI,IAAY;AACjC,aAAW,SAAS,kBAAkB,KAAK,EAAE,SAAS;AACpD,QAAI,MAAM,KAAM,UAAS,IAAI,MAAM,MAAM;AAAA,EAC3C;AAMA,MAAI,SAAS,IAAI,GAAG,EAAG,QAAO;AAG9B,QAAM,WAAW,oBAAI,IAAY;AAEjC,aAAW,YAAY,WAAW;AAChC,UAAM,EAAE,WAAW,IAAI;AACvB,QAAI,SAAS,IAAI,UAAU,EAAG;AAC9B,QAAIC,8BAA6B,UAAU,EAAG;AAC9C,QAAI,CAAC,WAAW,IAAI,UAAU,EAAG;AACjC,QAAI,SAAS,IAAI,UAAU,EAAG;AAE9B,aAAS,IAAI,UAAU;AACvB,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MACV,MAAM;AAAA,MACN,OAAO,SAAS;AAAA,MAChB,MAAM,SAAS;AAAA,MACf,SACE,8BAA8B,UAAU;AAAA,MAK1C,MACE,QAAQ,UAAU;AAAA,IAItB,CAAC;AAAA,EACH;AAEA,SAAO;AACT;;;AEvHA,SAAS,2BAAAC,0BAAyB,gCAAAC,qCAAoC;AAG/D,IAAM,6BAA6B;AACnC,IAAM,iCAAiC;AAqB9C,SAASC,OAAM,GAAyB;AACtC,SAAO,CAAC,CAAC,KAAK,OAAO,MAAM,YAAY,CAAC,MAAM,QAAQ,CAAC;AACzD;AAKA,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO;AAC7B,MAAID,OAAM,CAAC,EAAG,QAAO,OAAO,QAAQ,CAAC,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAIA,OAAM,GAAG,IAAI,MAAM,CAAC,EAAG,EAAE;AAClG,SAAO,CAAC;AACV;AAEA,SAASE,SAAQ,GAAgC;AAC/C,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAEA,SAASC,UAAS,GAAW,GAAmB;AAC9C,QAAM,IAAI,EAAE;AACZ,QAAM,IAAI,EAAE;AACZ,MAAI,MAAM,EAAG,QAAO;AACpB,MAAI,MAAM,EAAG,QAAO;AACpB,MAAI,OAAO,MAAM,KAAK,EAAE,QAAQ,IAAI,EAAE,GAAG,CAAC,GAAG,MAAM,CAAC;AACpD,WAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,UAAM,OAAO,CAAC,GAAG,GAAG,IAAI,MAAc,CAAC,EAAE,KAAK,CAAC,CAAC;AAChD,aAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,YAAM,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,IAAI,IAAI;AACzC,WAAK,CAAC,IAAI,KAAK,IAAI,KAAK,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,GAAG,KAAK,IAAI,CAAC,IAAI,IAAI;AAAA,IACrE;AACA,WAAO;AAAA,EACT;AACA,SAAO,KAAK,CAAC;AACf;AAYA,SAASC,SAAQ,QAAgB,OAAiC;AAChE,QAAM,QAAQ,CAAC,GAAG,KAAK;AACvB,QAAM,eAAe,MAAM;AAAA,IACzB,CAAC,cAAc,UAAU,SAAS,IAAI,MAAM,EAAE,KAAK,UAAU,WAAW,GAAG,MAAM,GAAG;AAAA,EACtF;AACA,MAAI,aAAc,QAAO,kBAAkB,YAAY;AAEvD,MAAI;AACJ,MAAI,YAAY;AAChB,aAAW,aAAa,OAAO;AAC7B,UAAM,IAAID,UAAS,QAAQ,SAAS;AACpC,QAAI,IAAI,WAAW;AACjB,kBAAY;AACZ,aAAO;AAAA,IACT;AAAA,EACF;AACA,QAAM,QAAQ,KAAK,IAAI,GAAG,KAAK,MAAM,OAAO,SAAS,CAAC,CAAC;AACvD,SAAO,QAAQ,aAAa,QAAQ,kBAAkB,IAAI,OAAO;AACnE;AAGA,SAAS,UAAU,OAAyB,MAAM,IAAY;AAC5D,QAAM,MAAM,CAAC,GAAG,KAAK,EAAE,KAAK;AAC5B,MAAI,IAAI,WAAW,EAAG,QAAO;AAC7B,QAAM,QAAQ,IAAI,MAAM,GAAG,GAAG,EAAE,KAAK,IAAI;AACzC,SAAO,IAAI,SAAS,MAAM,GAAG,KAAK,aAAQ,IAAI,MAAM,YAAY;AAClE;AAOA,IAAME,iBAAqC,oBAAI,IAAI;AAAA,EACjD;AAAA,EAAM;AAAA,EAAO;AAAA,EACb;AAAA,EAAc;AAAA,EAAc;AAAA,EAAc;AAAA,EAC1C;AAAA,EAAY;AAAA,EAAmB;AAAA,EAAa;AAAA,EAC5C;AAAA,EAAc;AAAA,EAAc;AAC9B,CAAC;AAqBD,SAAS,aAA0B;AACjC,SAAO,EAAE,QAAQ,oBAAI,IAAI,GAAG,OAAO,oBAAI,IAAI,GAAG,SAAS,oBAAI,IAAI,GAAG,UAAU,oBAAI,IAAI,EAAE;AACxF;AAqBA,SAAS,kBAAkB,MAAc,UAAqD;AAC5F,QAAM,eAAe,eAAe,IAAI;AACxC,QAAM,YAAY,CAAC,cACjB,eAAe,SAAS,KAAK;AAE/B,QAAM,UAAU,CAAC,YAAgC,SAA6B;AAC5E,QAAI,cAAc,KAAM,UAAS,UAAU,EAAE,MAAM,IAAI,IAAI;AAAA,EAC7D;AAEA,QAAM,cAAcL,OAAM,KAAK,IAAI,IAAI,UAAU,KAAK,IAAI,IAAI;AAC9D,MAAIA,OAAM,KAAK,IAAI,EAAG,SAAQ,aAAaE,SAAQ,KAAK,KAAK,IAAI,CAAC;AAClE,UAAQ,gBAAgB,aAAaA,SAAQ,KAAK,IAAI,CAAC;AAEvD,aAAW,OAAO,CAAC,aAAa,WAAW,GAAY;AACrD,UAAM,YAAY,KAAK,GAAG;AAC1B,QAAI,CAACF,OAAM,SAAS,EAAG;AACvB,eAAW,CAAC,QAAQ,GAAG,KAAK,OAAO,QAAQ,SAAS,GAAG;AACrD,UAAI,CAACA,OAAM,GAAG,EAAG;AACjB,YAAM,UAAU,UAAU,GAAG,KAAK;AAClC,cAAQ,SAAS,MAAM;AACvB,cAAQ,SAASE,SAAQ,IAAI,IAAI,CAAC;AAMlC,UAAI,SAAS;AACX,mBAAW,WAAWD,UAAQ,IAAI,QAAQ,GAAG;AAC3C,gBAAM,cAAcC,SAAQ,QAAQ,IAAI;AACxC,cAAI,YAAa,UAAS,OAAO,EAAE,SAAS,IAAI,WAAW;AAAA,QAC7D;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEA,QAAM,iBAAiB,gBAAgB;AACvC,MAAI,gBAAgB;AAClB,eAAW,WAAWD,UAAQ,KAAK,QAAQ,GAAG;AAC5C,YAAM,cAAcC,SAAQ,QAAQ,IAAI;AACxC,UAAI,YAAa,UAAS,cAAc,EAAE,SAAS,IAAI,WAAW;AAAA,IACpE;AAAA,EACF;AACF;AAGA,SAAS,eAAe,MAAkC;AACxD,SACEA,SAAQ,KAAK,UAAU,KACvBA,SAAQ,KAAK,MAAM,MAClBF,OAAM,KAAK,IAAI,IAAIE,SAAQ,KAAK,KAAK,MAAM,IAAI;AAEpD;AAQA,SAAS,YAAY,OAAkF;AACrG,QAAM,MAAM,MAAM;AAClB,QAAM,SAAS,oBAAI,IAAY;AAC/B,QAAM,UAAU,oBAAI,IAAoB;AACxC,MAAI,MAAM,QAAQ,GAAG,GAAG;AACtB,eAAW,OAAO,KAAK;AACrB,UAAI,OAAO,QAAQ,UAAU;AAC3B,eAAO,IAAI,GAAG;AACd;AAAA,MACF;AACA,UAAI,CAACF,OAAM,GAAG,EAAG;AACjB,YAAM,QAAQE,SAAQ,IAAI,KAAK;AAC/B,UAAI,CAAC,MAAO;AACZ,aAAO,IAAI,KAAK;AAChB,YAAMI,SAAQJ,SAAQ,IAAI,KAAK;AAC/B,UAAII,OAAO,SAAQ,IAAIA,OAAM,YAAY,GAAG,KAAK;AAAA,IACnD;AAAA,EACF,WAAWN,OAAM,GAAG,GAAG;AACrB,eAAW,CAAC,OAAOM,MAAK,KAAK,OAAO,QAAQ,GAAG,GAAG;AAChD,aAAO,IAAI,KAAK;AAChB,UAAI,OAAOA,WAAU,YAAYA,OAAM,SAAS,EAAG,SAAQ,IAAIA,OAAM,YAAY,GAAG,KAAK;AAAA,IAC3F;AAAA,EACF,OAAO;AACL,WAAO;AAAA,EACT;AACA,SAAO,OAAO,OAAO,IAAI,EAAE,QAAQ,QAAQ,IAAI;AACjD;AAMA,SAAS,cAAc,OAAyB;AAC9C,QAAM,UAAU,oBAAI,IAAyB;AAC7C,QAAM,WAAW,CAAC,SAA8B;AAC9C,QAAI,QAAQ,QAAQ,IAAI,IAAI;AAC5B,QAAI,CAAC,OAAO;AACV,cAAQ,WAAW;AACnB,cAAQ,IAAI,MAAM,KAAK;AAAA,IACzB;AACA,WAAO;AAAA,EACT;AAGA,aAAW,OAAOL,UAAQ,MAAM,OAAO,GAAG;AACxC,UAAM,aAAaC,SAAQ,IAAI,IAAI;AACnC,QAAI,CAAC,WAAY;AACjB,UAAM,QAAQ,SAAS,UAAU;AAEjC,eAAW,SAASD,UAAQ,IAAI,MAAM,GAAG;AACvC,YAAM,YAAYC,SAAQ,MAAM,IAAI;AACpC,UAAI,UAAW,OAAM,OAAO,IAAI,WAAW,KAAK;AAAA,IAClD;AACA,eAAW,UAAUD,UAAQ,IAAI,OAAO,GAAG;AACzC,YAAM,aAAaC,SAAQ,OAAO,IAAI;AACtC,UAAI,WAAY,OAAM,QAAQ,IAAI,YAAY,MAAM;AAAA,IACtD;AAKA,eAAW,QAAQD,UAAQ,IAAI,KAAK,GAAG;AACrC,wBAAkB,EAAE,GAAG,MAAM,QAAQC,SAAQ,KAAK,MAAM,KAAK,WAAW,GAAG,QAAQ;AAAA,IACrF;AACA,sBAAkB,EAAE,QAAQ,YAAY,WAAW,IAAI,UAAU,GAAG,QAAQ;AAE5E,eAAW,SAASD,UAAQ,IAAI,WAAW,GAAG;AAC5C,YAAM,MAAMC,SAAQ,MAAM,GAAG,KAAKA,SAAQ,MAAM,IAAI;AACpD,UAAI,IAAK,OAAM,SAAS,IAAI,GAAG;AAAA,IACjC;AAAA,EACF;AAGA,aAAW,QAAQD,UAAQ,MAAM,KAAK,GAAG;AACvC,sBAAkB,MAAM,QAAQ;AAAA,EAClC;AAGA,QAAM,QAAQA,UAAQ,MAAM,KAAK;AACjC,WAAS,KAAK,GAAG,KAAK,MAAM,QAAQ,MAAM;AACxC,eAAW,UAAU,mBAAmB,MAAM,EAAE,GAAG,SAAS,EAAE,GAAG,GAAG;AAClE,UAAI,CAAC,OAAO,WAAY;AACxB,YAAM,QAAQD,OAAM,OAAO,UAAU,UAAU,IAAI,OAAO,UAAU,aAAa;AACjF,UAAI,CAAC,MAAO;AACZ,iBAAW,WAAWC,UAAQ,MAAM,QAAQ,GAAG;AAC7C,cAAM,cAAcC,SAAQ,QAAQ,IAAI;AACxC,YAAI,YAAa,UAAS,OAAO,UAAU,EAAE,SAAS,IAAI,WAAW;AAAA,MACvE;AAAA,IACF;AAAA,EACF;AAGA,QAAM,gBAAgB,oBAAI,IAAoB;AAC9C,QAAM,eAAe,oBAAI,IAAoB;AAC7C,aAAW,UAAUD,UAAQ,MAAM,OAAO,GAAG;AAC3C,UAAM,aAAaC,SAAQ,OAAO,IAAI;AACtC,QAAI,CAAC,WAAY;AACjB,UAAM,QAAQA,SAAQ,OAAO,UAAU,KAAKA,SAAQ,OAAO,MAAM;AACjE,QAAI,OAAO;AACT,eAAS,KAAK,EAAE,QAAQ,IAAI,YAAY,MAAM;AAC9C,mBAAa,IAAI,YAAY,KAAK;AAAA,IACpC,OAAO;AACL,oBAAc,IAAI,YAAY,MAAM;AAAA,IACtC;AAAA,EACF;AACA,aAAW,CAAC,YAAY,KAAK,KAAK,SAAS;AACzC,eAAW,cAAc,MAAM,QAAQ,KAAK,GAAG;AAC7C,UAAI,CAAC,aAAa,IAAI,UAAU,EAAG,cAAa,IAAI,YAAY,UAAU;AAAA,IAC5E;AAAA,EACF;AAGA,QAAM,OAAO,oBAAI,IAAyB;AAC1C,aAAW,OAAOD,UAAQ,MAAM,IAAI,GAAG;AACrC,UAAM,UAAUC,SAAQ,IAAI,IAAI;AAChC,QAAI,CAAC,QAAS;AACd,UAAM,SAAS,KAAK,IAAI,OAAO,KAAK,oBAAI,IAAY;AACpD,UAAM,UAAU,CAAC,UAAmB;AAClC,iBAAW,QAAQD,UAAQ,KAAK,GAAG;AACjC,cAAM,KAAKC,SAAQ,KAAK,EAAE;AAC1B,YAAI,GAAI,QAAO,IAAI,EAAE;AACrB,YAAI,KAAK,SAAU,SAAQ,KAAK,QAAQ;AAAA,MAC1C;AAAA,IACF;AACA,YAAQ,IAAI,UAAU;AACtB,eAAW,QAAQD,UAAQ,IAAI,KAAK,GAAG;AACrC,YAAM,SAASC,SAAQ,KAAK,EAAE;AAC9B,UAAI,OAAQ,QAAO,IAAI,MAAM;AAC7B,cAAQ,KAAK,UAAU;AAAA,IACzB;AACA,SAAK,IAAI,SAAS,MAAM;AAAA,EAC1B;AAGA,QAAM,aAAa,oBAAI,IAA4D;AACnF,aAAW,QAAQD,UAAQ,MAAM,UAAU,GAAG;AAC5C,UAAM,WAAWC,SAAQ,KAAK,IAAI;AAClC,QAAI,CAAC,SAAU;AACf,UAAM,UAAU,oBAAI,IAAY;AAChC,eAAW,UAAUD,UAAQ,KAAK,OAAO,GAAG;AAC1C,YAAM,KAAKC,SAAQ,OAAO,EAAE,KAAKA,SAAQ,OAAO,IAAI;AACpD,UAAI,GAAI,SAAQ,IAAI,EAAE;AAAA,IACxB;AACA,UAAM,UAAU,oBAAI,IAAY;AAChC,UAAM,gBAAgB;AAAA,MACpB,GAAGD,UAAQD,OAAM,KAAK,MAAM,IAAI,KAAK,OAAO,UAAU,MAAS;AAAA,MAC/D,GAAGC,UAAQ,KAAK,OAAO;AAAA,IACzB;AACA,eAAW,UAAU,eAAe;AAClC,YAAM,MAAMC,SAAQ,OAAO,SAAS,KAAKA,SAAQ,OAAO,GAAG,KAAKA,SAAQ,OAAO,IAAI;AACnF,UAAI,IAAK,SAAQ,IAAI,GAAG;AAAA,IAC1B;AACA,eAAW,IAAI,UAAU,EAAE,SAAS,QAAQ,CAAC;AAAA,EAC/C;AAEA,SAAO,EAAE,SAAS,MAAM,YAAY,eAAe,aAAa;AAClE;AAGA,SAAS,WAAW,aAAqB,QAAwB;AAC/D,SAAO,6BAA6B,KAAK,MAAM,IAC3C,gBAAgB,WAAW,KAAK,MAAM,KACtC,gBAAgB,WAAW,MAAM,MAAM;AAC7C;AAMO,SAAS,8BAA8B,OAAwC;AACpF,QAAM,WAAoC,CAAC;AAC3C,MAAI,CAACF,OAAM,KAAK,EAAG,QAAO;AAE1B,QAAM,UAAU,MAAM,QAAQ,MAAM,YAAY,IAAI,MAAM,eAAe,CAAC;AAC1E,MAAI,QAAQ,WAAW,EAAG,QAAO;AAEjC,QAAM,WAAW,cAAc,KAAK;AAEpC,QAAM,SAAS,CAAC,OAAe,MAAc,SAAiB,SAAiB;AAC7E,aAAS,KAAK,EAAE,UAAU,WAAW,MAAM,4BAA4B,OAAO,MAAM,SAAS,KAAK,CAAC;AAAA,EACrG;AAEA,WAAS,KAAK,GAAG,KAAK,QAAQ,QAAQ,MAAM;AAC1C,UAAM,SAAS,QAAQ,EAAE;AACzB,QAAI,CAACA,OAAM,MAAM,EAAG;AAEpB,eAAW,CAAC,QAAQ,OAAO,KAAK,OAAO,QAAQ,MAAM,GAAG;AACtD,UAAI,CAACA,OAAM,OAAO,EAAG;AACrB,YAAM,OAAO,WAAW,IAAI,MAAM;AAClC,YAAM,WAAW,WAAW,MAAM;AAGlC,iBAAW,CAAC,YAAY,OAAO,KAAK,OAAO,QAAQ,SAAS,QAAQ,OAAO,CAAC,GAAG;AAC7E,YAAI,CAACA,OAAM,OAAO,EAAG;AACrB,cAAM,UAAU,GAAG,IAAI,YAAY,UAAU;AAC7C,cAAM,QAAQ,SAAS,QAAQ,IAAI,UAAU;AAE7C,YAAI,CAAC,OAAO;AAKV,cAAIO,8BAA6B,UAAU,EAAG;AAC9C;AAAA,YACE,GAAG,QAAQ,iBAAc,UAAU;AAAA,YACnC;AAAA,YACAC,yBAAwB,UAAU,IAC9B,8BAA8B,UAAU,kNAGxBJ,SAAQ,YAAY,SAAS,QAAQ,KAAK,CAAC,IAC3D,8BAA8B,UAAU,6LAGxCA,SAAQ,YAAY,SAAS,QAAQ,KAAK,CAAC;AAAA,YAC/C,yIAEG,SAAS,QAAQ,OAAO,IAAI,qBAAqB,UAAU,SAAS,QAAQ,KAAK,CAAC,CAAC,MAAM;AAAA,UAC9F;AACA;AAAA,QACF;AAGA,mBAAW,CAAC,WAAW,QAAQ,KAAK,OAAO,QAAQ,SAAS,QAAQ,MAAM,CAAC,GAAG;AAC5E,gBAAM,YAAY,GAAG,OAAO,WAAW,SAAS;AAChD,gBAAM,QAAQ,MAAM,OAAO,IAAI,SAAS;AACxC,cAAI,CAAC,OAAO;AACV,gBAAIC,eAAc,IAAI,SAAS,EAAG;AAClC;AAAA,cACE,GAAG,QAAQ,iBAAc,UAAU,iBAAc,SAAS;AAAA,cAC1D;AAAA,cACA,oCAAoC,SAAS,oBAAoB,UAAU,qMAGlCD,SAAQ,WAAW,MAAM,OAAO,KAAK,CAAC;AAAA,cAC/E,wFACG,MAAM,OAAO,OAAO,IAAI,qBAAqB,UAAU,MAAM,OAAO,KAAK,CAAC,CAAC,MAAM;AAAA,YACtF;AACA;AAAA,UACF;AACA,cAAI,CAACJ,OAAM,QAAQ,EAAG;AACtB,0BAAgB,UAAU;AAAA,YACxB,WAAW,SAAS;AAAA,YACpB;AAAA,YACA;AAAA,YACA;AAAA,YACA,MAAM,GAAG,SAAS;AAAA,YAClB,OAAO,GAAG,QAAQ,iBAAc,UAAU,iBAAc,SAAS;AAAA,UACnE,CAAC;AAAA,QACH;AAGA,mBAAW,YAAY,OAAO,KAAK,SAAS,QAAQ,MAAM,CAAC,GAAG;AAC5D,cAAI,MAAM,MAAM,IAAI,QAAQ,EAAG;AAC/B;AAAA,YACE,GAAG,QAAQ,iBAAc,UAAU,gBAAa,QAAQ;AAAA,YACxD,GAAG,OAAO,WAAW,QAAQ;AAAA,YAC7B,mCAAmC,QAAQ,+BACrC,UAAU,4DACdI,SAAQ,UAAU,MAAM,KAAK;AAAA,YAC/B,uEACG,MAAM,MAAM,OAAO,IAAI,oBAAoB,UAAU,MAAM,KAAK,CAAC,MAAM;AAAA,UAC5E;AAAA,QACF;AAGA,mBAAW,eAAe,OAAO,KAAK,SAAS,QAAQ,SAAS,CAAC,GAAG;AAClE,cAAI,MAAM,SAAS,IAAI,WAAW,EAAG;AACrC;AAAA,YACE,GAAG,QAAQ,iBAAc,UAAU,mBAAgB,WAAW;AAAA,YAC9D,GAAG,OAAO,cAAc,WAAW;AAAA,YACnC,sCAAsC,WAAW,+BAC3C,UAAU,iKAEdA,SAAQ,aAAa,MAAM,QAAQ;AAAA,YACrC,+IAEG,MAAM,SAAS,OAAO,IACnB,uBAAuB,UAAU,MAAM,QAAQ,CAAC,MAChD,YAAY,UAAU;AAAA,UAC9B;AAAA,QACF;AAGA,mBAAW,CAAC,YAAY,SAAS,KAAK,OAAO,QAAQ,SAAS,QAAQ,QAAQ,CAAC,GAAG;AAChF,gBAAM,aAAa,GAAG,OAAO,aAAa,UAAU;AACpD,gBAAM,SAAS,MAAM,QAAQ,IAAI,UAAU;AAC3C,cAAI,CAAC,QAAQ;AACX;AAAA,cACE,GAAG,QAAQ,iBAAc,UAAU,kBAAe,UAAU;AAAA,cAC5D;AAAA,cACA,qCAAqC,UAAU,0CAClC,UAAU,yGACyBA,SAAQ,YAAY,MAAM,QAAQ,KAAK,CAAC;AAAA,cACxF,wGAEG,MAAM,QAAQ,OAAO,IAAI,4BAA4B,UAAU,MAAM,QAAQ,KAAK,CAAC,CAAC,MAAM;AAAA,YAC/F;AACA;AAAA,UACF;AACA,4BAAkB,UAAU;AAAA,YAC1B;AAAA,YACA;AAAA,YACA,MAAM;AAAA,YACN,OAAO,GAAG,QAAQ,iBAAc,UAAU,kBAAe,UAAU;AAAA,YACnE,SAAS,WAAW,UAAU;AAAA,UAChC,CAAC;AAAA,QACH;AAAA,MACF;AAGA,iBAAW,CAAC,YAAY,SAAS,KAAK,OAAO,QAAQ,SAAS,QAAQ,aAAa,CAAC,GAAG;AACrF,cAAM,aAAa,GAAG,IAAI,kBAAkB,UAAU;AACtD,cAAM,SAAS,SAAS,cAAc,IAAI,UAAU;AACpD,YAAI,CAAC,QAAQ;AACX,gBAAM,QAAQ,SAAS,aAAa,IAAI,UAAU;AAClD;AAAA,YACE,GAAG,QAAQ,wBAAqB,UAAU;AAAA,YAC1C;AAAA,YACA,QACI,WAAW,UAAU,yBAAyB,KAAK,kDAC7B,KAAK,aAAa,UAAU,sHAGlD,4CAA4C,UAAU,oGAEtDA,SAAQ,YAAY,SAAS,cAAc,KAAK,CAAC;AAAA,YACrD,QACI,mCAAmC,KAAK,aAAa,UAAU,QAC/D,gEACC,SAAS,cAAc,OAAO,IAC3B,yBAAyB,UAAU,SAAS,cAAc,KAAK,CAAC,CAAC,MACjE;AAAA,UACV;AACA;AAAA,QACF;AACA,0BAAkB,UAAU;AAAA,UAC1B;AAAA,UACA;AAAA,UACA,MAAM;AAAA,UACN,OAAO,GAAG,QAAQ,wBAAqB,UAAU;AAAA,UACjD,SAAS,WAAW,UAAU;AAAA,QAChC,CAAC;AAAA,MACH;AAGA,iBAAW,CAAC,SAAS,MAAM,KAAK,OAAO,QAAQ,SAAS,QAAQ,IAAI,CAAC,GAAG;AACtE,cAAM,UAAU,GAAG,IAAI,SAAS,OAAO;AACvC,cAAM,SAAS,SAAS,KAAK,IAAI,OAAO;AACxC,YAAI,CAAC,QAAQ;AACX;AAAA,YACE,GAAG,QAAQ,cAAW,OAAO;AAAA,YAC7B;AAAA,YACA,kCAAkC,OAAO,yFACaA,SAAQ,SAAS,SAAS,KAAK,KAAK,CAAC;AAAA,YAC3F,qDACG,SAAS,KAAK,OAAO,IAAI,kBAAkB,UAAU,SAAS,KAAK,KAAK,CAAC,CAAC,MAAM;AAAA,UACrF;AACA;AAAA,QACF;AACA,YAAI,CAACJ,OAAM,MAAM,EAAG;AACpB,mBAAW,SAAS,OAAO,KAAK,SAAS,OAAO,UAAU,CAAC,GAAG;AAC5D,cAAI,OAAO,IAAI,KAAK,EAAG;AACvB;AAAA,YACE,GAAG,QAAQ,cAAW,OAAO,sBAAmB,KAAK;AAAA,YACrD,GAAG,OAAO,eAAe,KAAK;AAAA,YAC9B,8CAA8C,KAAK,iBAAiB,OAAO,sEAEzEI,SAAQ,OAAO,MAAM;AAAA,YACvB,gEACG,OAAO,OAAO,IAAI,6BAA6B,UAAU,MAAM,CAAC,MAAM;AAAA,UAC3E;AAAA,QACF;AAAA,MACF;AAGA,iBAAW,CAAC,UAAU,OAAO,KAAK,OAAO,QAAQ,SAAS,QAAQ,UAAU,CAAC,GAAG;AAC9E,cAAM,WAAW,GAAG,IAAI,eAAe,QAAQ;AAC/C,cAAM,OAAO,SAAS,WAAW,IAAI,QAAQ;AAC7C,YAAI,CAAC,MAAM;AACT;AAAA,YACE,GAAG,QAAQ,oBAAiB,QAAQ;AAAA,YACpC;AAAA,YACA,wCAAwC,QAAQ,yFAE9CA,SAAQ,UAAU,SAAS,WAAW,KAAK,CAAC;AAAA,YAC9C,0DACG,SAAS,WAAW,OAAO,IAAI,wBAAwB,UAAU,SAAS,WAAW,KAAK,CAAC,CAAC,MAAM;AAAA,UACvG;AACA;AAAA,QACF;AACA,YAAI,CAACJ,OAAM,OAAO,EAAG;AACrB,mBAAW,YAAY,OAAO,KAAK,SAAS,QAAQ,OAAO,CAAC,GAAG;AAC7D,cAAI,KAAK,QAAQ,IAAI,QAAQ,EAAG;AAChC;AAAA,YACE,GAAG,QAAQ,oBAAiB,QAAQ,kBAAe,QAAQ;AAAA,YAC3D,GAAG,QAAQ,YAAY,QAAQ;AAAA,YAC/B,qCAAqC,QAAQ,uBAAuB,QAAQ,qEAE1EI,SAAQ,UAAU,KAAK,OAAO;AAAA,YAChC,uDACG,KAAK,QAAQ,OAAO,IAAI,yBAAyB,UAAU,KAAK,OAAO,CAAC,MAAM;AAAA,UACnF;AAAA,QACF;AACA,mBAAW,aAAa,OAAO,KAAK,SAAS,QAAQ,OAAO,CAAC,GAAG;AAC9D,cAAI,KAAK,QAAQ,IAAI,SAAS,EAAG;AACjC;AAAA,YACE,GAAG,QAAQ,oBAAiB,QAAQ,kBAAe,SAAS;AAAA,YAC5D,GAAG,QAAQ,YAAY,SAAS;AAAA,YAChC,4CAA4C,SAAS,uBAC/C,QAAQ,kEACZA,SAAQ,WAAW,KAAK,OAAO;AAAA,YACjC,wFACG,KAAK,QAAQ,OAAO,IAAI,6BAA6B,UAAU,KAAK,OAAO,CAAC,MAAM;AAAA,UACvF;AAAA,QACF;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;AAGA,SAAS,SAAS,GAAqC;AACrD,SAAOJ,OAAM,CAAC,IAAI,IAAI,CAAC;AACzB;AAOA,SAAS,gBACP,UACA,KAQM;AACN,QAAM,aAAa,OAAO,KAAK,SAAS,IAAI,SAAS,CAAC;AACtD,MAAI,WAAW,WAAW,EAAG;AAE7B,QAAM,WAAW,YAAY,IAAI,KAAK;AACtC,MAAI,CAAC,UAAU;AACb,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MACV,MAAM;AAAA,MACN,OAAO,IAAI;AAAA,MACX,MAAM,IAAI;AAAA,MACV,SACE,8CAA8C,IAAI,SAAS,gBACvD,IAAI,UAAU,wDACdE,SAAQ,IAAI,MAAM,IAAI,KAAK,SAAS;AAAA,MAC1C,MACE;AAAA,IAEJ,CAAC;AACD;AAAA,EACF;AAEA,aAAW,OAAO,YAAY;AAC5B,QAAI,SAAS,OAAO,IAAI,GAAG,EAAG;AAC9B,UAAM,UAAU,SAAS,QAAQ,IAAI,IAAI,YAAY,CAAC;AACtD,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MACV,MAAM;AAAA,MACN,OAAO,IAAI;AAAA,MACX,MAAM,GAAG,IAAI,IAAI,IAAI,GAAG;AAAA,MACxB,SAAS,UACL,qDAAqD,GAAG,kCAC9C,OAAO,oIAEjB,mCAAmC,GAAG,wDACzB,IAAI,UAAU,IAAI,IAAI,SAAS,wCAC5CE,SAAQ,KAAK,SAAS,MAAM;AAAA,MAChC,MAAM,UACF,sBAAsB,OAAO,OAC7B,2IAC4D,UAAU,SAAS,MAAM,CAAC;AAAA,IAC5F,CAAC;AAAA,EACH;AACF;AAGA,SAAS,kBACP,UACA,KACM;AACN,QAAM,YAAY,OAAO,KAAK,SAASJ,OAAM,IAAI,SAAS,IAAI,IAAI,UAAU,SAAS,MAAS,CAAC;AAC/F,MAAI,UAAU,WAAW,EAAG;AAE5B,QAAM,WAAW,oBAAI,IAAY;AACjC,aAAW,SAASC,UAAQ,IAAI,OAAO,MAAM,GAAG;AAC9C,UAAM,OAAOC,SAAQ,MAAM,IAAI,KAAKA,SAAQ,MAAM,KAAK;AACvD,QAAI,KAAM,UAAS,IAAI,IAAI;AAAA,EAC7B;AAEA,aAAW,aAAa,WAAW;AACjC,QAAI,SAAS,IAAI,SAAS,EAAG;AAC7B,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MACV,MAAM;AAAA,MACN,OAAO,GAAG,IAAI,KAAK,gBAAa,SAAS;AAAA,MACzC,MAAM,GAAG,IAAI,IAAI,WAAW,SAAS;AAAA,MACrC,SACE,wCAAwC,SAAS,YAAY,IAAI,OAAO,qGAExEE,SAAQ,WAAW,QAAQ;AAAA,MAC7B,MACE,6DACC,SAAS,OAAO,IAAI,qBAAqB,UAAU,QAAQ,CAAC,MAAM;AAAA,IACvE,CAAC;AAAA,EACH;AACF;;;AC7vBO,IAAM,4BAA4B;AAqBzC,SAASK,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO,EAAE,OAAO,CAAC,MAAmB,CAAC,CAAC,KAAK,OAAO,MAAM,QAAQ;AACtF,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAASC,SAAQ,GAAgC;AAC/C,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAGA,SAAS,UAAU,GAAoB;AACrC,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAMO,SAAS,0BAA0B,OAA2C;AACnF,QAAM,WAAuC,CAAC;AAC9C,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAEhD,QAAM,eAAe,oBAAI,IAAoB;AAC7C,aAAW,SAASD,UAAQ,MAAM,MAAM,GAAG;AACzC,UAAM,IAAIC,SAAQ,MAAM,IAAI;AAC5B,QAAI,EAAG,cAAa,IAAI,GAAG,KAAK;AAAA,EAClC;AAEA,QAAM,SAASD,UAAQ,MAAM,MAAM;AACnC,WAAS,KAAK,GAAG,KAAK,OAAO,QAAQ,MAAM;AACzC,UAAM,QAAQ,OAAO,EAAE;AACvB,UAAM,YAAYC,SAAQ,MAAM,IAAI,KAAK,IAAI,EAAE;AAC/C,UAAM,eAAe,UAAU,MAAM,OAAO;AAC5C,UAAM,YAAY,MAAM,QAAQ,MAAM,MAAM,IAAI,MAAM,SAAS,CAAC;AAEhE,aAAS,KAAK,GAAG,KAAK,UAAU,QAAQ,MAAM;AAC5C,YAAM,MAAMA,SAAQ,UAAU,EAAE,CAAC;AACjC,UAAI,CAAC,IAAK;AACV,YAAM,QAAQ,aAAa,IAAI,GAAG;AAGlC,UAAI,CAAC,MAAO;AAEZ,YAAM,eAAe,UAAU,MAAM,OAAO;AAC5C,UAAI,iBAAiB,UAAU,iBAAiB,aAAc;AAE9D,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,UAAU,SAAS;AAAA,QAC1B,MAAM,UAAU,EAAE,YAAY,EAAE;AAAA,QAChC,SACE,UAAU,SAAS,gBAAgB,YAAY,wBAAwB,GAAG,gBAC5D,YAAY;AAAA,QAG5B,MACE,uEAAuE,GAAG,WACtE,YAAY,+CAA+C,YAAY;AAAA,MAE/E,CAAC;AAAA,IACH;AAAA,EACF;AAEA,SAAO;AACT;;;ACrFA,SAAS,8BAA8B,qCAAqC;AAErE,IAAM,2BAA2B;AAqBxC,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO,EAAE,OAAO,CAAC,MAAmB,CAAC,CAAC,KAAK,OAAO,MAAM,QAAQ;AACtF,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAASC,UAAQ,GAAgC;AAC/C,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAEA,SAASC,UAAS,GAAW,GAAmB;AAC9C,QAAM,IAAI,EAAE;AACZ,QAAM,IAAI,EAAE;AACZ,MAAI,MAAM,EAAG,QAAO;AACpB,MAAI,MAAM,EAAG,QAAO;AACpB,MAAI,OAAO,MAAM,KAAK,EAAE,QAAQ,IAAI,EAAE,GAAG,CAAC,GAAG,MAAM,CAAC;AACpD,WAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,UAAM,OAAO,CAAC,GAAG,GAAG,IAAI,MAAc,CAAC,EAAE,KAAK,CAAC,CAAC;AAChD,aAAS,IAAI,GAAG,KAAK,GAAG,KAAK;AAC3B,YAAM,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,IAAI,IAAI;AACzC,WAAK,CAAC,IAAI,KAAK,IAAI,KAAK,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,GAAG,KAAK,IAAI,CAAC,IAAI,IAAI;AAAA,IACrE;AACA,WAAO;AAAA,EACT;AACA,SAAO,KAAK,CAAC;AACf;AAEA,SAASC,SAAQ,QAAgB,OAA4B;AAK3D,aAAW,UAAU,+BAA+B;AAClD,QAAI,MAAM,IAAI,GAAG,MAAM,GAAG,MAAM,EAAE,EAAG,QAAO,kBAAkB,MAAM,GAAG,MAAM;AAAA,EAC/E;AAEA,MAAI;AACJ,MAAI,YAAY;AAChB,aAAW,aAAa,OAAO;AAC7B,UAAM,IAAID,UAAS,QAAQ,SAAS;AACpC,QAAI,IAAI,WAAW;AACjB,kBAAY;AACZ,aAAO;AAAA,IACT;AAAA,EACF;AACA,QAAM,QAAQ,KAAK,IAAI,GAAG,KAAK,MAAM,OAAO,SAAS,CAAC,CAAC;AACvD,SAAO,QAAQ,aAAa,QAAQ,kBAAkB,IAAI,OAAO;AACnE;AAOA,IAAM,wBAAwB,oBAAI,IAAI,CAAC,UAAU,OAAO,MAAM,CAAC;AAiB/D,SAAS,mBAAmB,QAAyB;AACnD,QAAM,KAAK,OAAO;AAClB,MAAI,CAAC,MAAM,OAAO,OAAO,SAAU,QAAO;AAC1C,QAAM,QAAQ;AAGd,MAAI,MAAM,YAAY,KAAM,QAAO;AACnC,MAAI,CAACD,UAAQ,MAAM,WAAW,EAAG,QAAO;AAExC,QAAM,OAAOA,UAAQ,OAAO,IAAI;AAChC,MAAI,CAAC,QAAQ,CAAC,sBAAsB,IAAI,IAAI,EAAG,QAAO;AAGtD,MAAI,SAAS,SAAU,QAAO,QAAQ,OAAO,UAAU,OAAO,IAAI;AAClE,SAAO,QAAQ,OAAO,MAAM;AAC9B;AAMA,SAAS,oBAAoB,OAA4B;AACvD,QAAM,WAAW,IAAI,IAAY,4BAA4B;AAE7D,aAAW,QAAQD,UAAQ,MAAM,KAAK,GAAG;AACvC,UAAM,IAAIC,UAAQ,KAAK,IAAI;AAC3B,QAAI,EAAG,UAAS,IAAI,CAAC;AAAA,EACvB;AAEA,QAAM,kBAAkB,CAAC,YAAqB;AAC5C,eAAW,UAAUD,UAAQ,OAAO,GAAG;AACrC,YAAM,IAAIC,UAAQ,OAAO,IAAI;AAC7B,UAAI,KAAK,mBAAmB,MAAM,EAAG,UAAS,IAAI,UAAU,CAAC,EAAE;AAAA,IACjE;AAAA,EACF;AACA,kBAAgB,MAAM,OAAO;AAC7B,aAAW,OAAOD,UAAQ,MAAM,OAAO,GAAG;AACxC,oBAAgB,IAAI,OAAO;AAAA,EAC7B;AAEA,SAAO;AACT;AAOA,SAAS,4BAA4B,OAA4B;AAC/D,QAAM,QAAQ,oBAAI,IAAY;AAC9B,QAAM,OAAO,CAAC,YAAqB;AACjC,eAAW,UAAUA,UAAQ,OAAO,GAAG;AACrC,YAAM,IAAIC,UAAQ,OAAO,IAAI;AAC7B,UAAI,KAAK,CAAC,mBAAmB,MAAM,EAAG,OAAM,IAAI,CAAC;AAAA,IACnD;AAAA,EACF;AACA,OAAK,MAAM,OAAO;AAClB,aAAW,OAAOD,UAAQ,MAAM,OAAO,EAAG,MAAK,IAAI,OAAO;AAC1D,SAAO;AACT;AAMO,SAAS,yBAAyB,OAAmC;AAC1E,QAAM,WAA+B,CAAC;AACtC,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAEhD,QAAM,WAAW,oBAAoB,KAAK;AAC1C,QAAM,mBAAmB,4BAA4B,KAAK;AAE1D,QAAM,WAAW,CAAC,QAAyB;AACzC,QAAI,IAAI,SAAS,GAAG,GAAG;AACrB,YAAM,SAAS,IAAI,MAAM,GAAG,EAAE;AAC9B,iBAAW,QAAQ,UAAU;AAC3B,YAAI,KAAK,WAAW,MAAM,EAAG,QAAO;AAAA,MACtC;AACA,aAAO;AAAA,IACT;AACA,WAAO,SAAS,IAAI,GAAG;AAAA,EACzB;AAEA,QAAM,SAASA,UAAQ,MAAM,MAAM;AACnC,WAAS,KAAK,GAAG,KAAK,OAAO,QAAQ,MAAM;AACzC,UAAM,QAAQ,OAAO,EAAE;AACvB,UAAM,YAAYC,UAAQ,MAAM,IAAI,KAAK,IAAI,EAAE;AAC/C,UAAM,OAAO,MAAM,QAAQ,MAAM,KAAK,IAAI,MAAM,QAAQ,CAAC;AAEzD,aAAS,KAAK,GAAG,KAAK,KAAK,QAAQ,MAAM;AACvC,YAAM,MAAMA,UAAQ,KAAK,EAAE,CAAC;AAC5B,UAAI,CAAC,OAAO,SAAS,GAAG,EAAG;AAE3B,YAAM,YAAY,IAAI,SAAS,GAAG;AAIlC,YAAM,YACJ,CAAC,aAAa,IAAI,WAAW,SAAS,KAAK,iBAAiB,IAAI,IAAI,MAAM,UAAU,MAAM,CAAC,IACvF,IAAI,MAAM,UAAU,MAAM,IAC1B;AAEN,eAAS,KAAK;AAAA,QACZ,UAAU;AAAA,QACV,MAAM;AAAA,QACN,OAAO,UAAU,SAAS;AAAA,QAC1B,MAAM,UAAU,EAAE,WAAW,EAAE;AAAA,QAC/B,SAAS,YACL,UAAU,SAAS,gCAAgC,GAAG,yMAGtD,YACE,UAAU,SAAS,sBAAsB,GAAG,sBAAsB,SAAS,sYAM3E,UAAU,SAAS,sBAAsB,GAAG,8VAK5CE,SAAQ,KAAK,QAAQ;AAAA,QAC3B,MAAM,YACF,eAAe,SAAS,wUAIxB,SAAS,GAAG,gbAKmB,GAAG,mDAC/B,8BAA8B,KAAK,IAAI,CAAC;AAAA,MACjD,CAAC;AAAA,IACH;AAAA,EACF;AAEA,SAAO;AACT;;;ACjPO,IAAM,4BAA4B;AAqBzC,SAASC,UAAQ,GAAsB;AACrC,MAAI,MAAM,QAAQ,CAAC,EAAG,QAAO,EAAE,OAAO,CAAC,MAAmB,CAAC,CAAC,KAAK,OAAO,MAAM,QAAQ;AACtF,MAAI,KAAK,OAAO,MAAM,UAAU;AAC9B,WAAO,OAAO,QAAQ,CAAW,EAAE,IAAI,CAAC,CAAC,MAAM,GAAG,OAAO,EAAE,MAAM,GAAI,IAAe,EAAE;AAAA,EACxF;AACA,SAAO,CAAC;AACV;AAEA,SAASC,UAAQ,GAAgC;AAC/C,SAAO,OAAO,MAAM,YAAY,EAAE,SAAS,IAAI,IAAI;AACrD;AAOA,IAAM,uBAAuB,oBAAI,IAAI,CAAC,OAAO,SAAS,aAAa,oBAAoB,CAAC;AAMjF,SAAS,yBAAyB,OAA0C;AACjF,QAAM,WAAsC,CAAC;AAC7C,MAAI,CAAC,SAAS,OAAO,UAAU,SAAU,QAAO;AAEhD,QAAM,SAASD,UAAQ,MAAM,MAAM;AACnC,WAAS,KAAK,GAAG,KAAK,OAAO,QAAQ,MAAM;AACzC,UAAM,QAAQ,OAAO,EAAE;AACvB,UAAM,OAAOC,UAAQ,MAAM,IAAI,KAAK,IAAI,EAAE;AAC1C,UAAM,iBAAiB,qBAAqB,IAAI,IAAI;AACpD,UAAM,aAAa,MAAM,QAAQ,MAAM,MAAM,IAAI,MAAM,OAAO,SAAS;AAEvE,aAAS,KAAK;AAAA,MACZ,UAAU;AAAA,MACV,MAAM;AAAA,MACN,OAAO,UAAU,IAAI;AAAA,MACrB,MAAM,UAAU,EAAE;AAAA,MAClB,SAAS,iBACL,uCAAuC,IAAI,8LAG3C,kCAAkC,IAAI;AAAA,MAK1C,MAAM,iBACF,8CAA8C,IAAI,sCAClD,4MAGC,aAAa,IACV,QAAQ,UAAU,SAAS,eAAe,IAAI,KAAK,GAAG,sKAGtD;AAAA,IACV,CAAC;AAAA,EACH;AAEA,SAAO;AACT;;;ACtBO,IAAM,4BAA+D;AAAA,EAC1E,EAAE,MAAM,4BAA4B,KAAK,yBAAyB;AAAA,EAClE,EAAE,MAAM,0BAA0B,KAAK,uBAAuB;AAAA,EAC9D,EAAE,MAAM,6BAA6B,KAAK,0BAA0B;AAAA,EACpE,EAAE,MAAM,yBAAyB,KAAK,sBAAsB;AAAA,EAC5D,EAAE,MAAM,qBAAqB,KAAK,kBAAkB;AAAA,EACpD,EAAE,MAAM,iCAAiC,KAAK,8BAA8B;AAAA,EAC5E,EAAE,MAAM,6BAA6B,KAAK,0BAA0B;AAAA,EACpE,EAAE,MAAM,6BAA6B,KAAK,0BAA0B;AAAA,EACpE,EAAE,MAAM,4BAA4B,KAAK,yBAAyB;AAAA,EAClE,EAAE,MAAM,4BAA4B,KAAK,yBAAyB;AACpE;AAOO,SAAS,2BAA2B,OAA6D;AACtG,QAAM,WAAwC,CAAC;AAC/C,aAAW,QAAQ,2BAA2B;AAC5C,aAAS,KAAK,GAAG,KAAK,IAAI,KAAK,CAAC;AAAA,EAClC;AACA,SAAO;AACT;","names":["label","asArray","asArray","label","asArray","isRecordTriggered","asArray","SYSTEM_FIELDS","asArray","label","asArray","asArray","asArray","createRequire","asArray","SYSTEM_FIELDS","asArray","asArray","asArray","asArray","asArray","asArray","asArray","asArray","label","asArray","asArray","label","asArray","asArray","strName","suggest","checkActionParams","isRec","strName","list","asArray","strName","distance","suggest","label","list","SYSTEM_FIELDS","asArray","strName","isRec","asArray","strName","strList","isRec","distance","suggest","list","selected","isPlatformProvidedObjectName","asArray","label","asArray","strName","isPlatformProvidedObjectName","hasPlatformObjectPrefix","isPlatformProvidedObjectName","isRec","asArray","strName","distance","suggest","SYSTEM_FIELDS","label","isPlatformProvidedObjectName","hasPlatformObjectPrefix","asArray","strName","asArray","strName","distance","suggest","asArray","strName"]}