From 285c0cfba65fd3b89f24fe71f8b24d9a342a49d9 Mon Sep 17 00:00:00 2001 From: Anton Staykov Date: Thu, 27 Aug 2026 15:14:27 +0200 Subject: [PATCH] Addressing #1346 from dependabot - updating vite version Vite 8 replaces esbuild/Rollup with Oxc/Rolldown. The esbuild minifyIdentifiers and keepNames options are no longer honoured, so the built template lost the reportData={ ... EndOfJson:"EndOfJson"} markers that Get-HtmlReport splices the assessment JSON into, and the classic build additionally failed to type check. Nothing in CI rebuilds the template, so this would only have surfaced at runtime as "Report template markers were not found in template". The placeholder is now emitted verbatim into the HTML by a transformIndexHtml plugin, which keeps it away from the JS minifier entirely. The demo dataset moves to a single shared demo-report-data.json instead of being duplicated in both report source trees, and still gets replaced wholesale by Get-HtmlReport. The marker strings are unchanged, so no PowerShell changes were required. Adds a Pester test covering both templates: marker counts, marker ordering, the single-file invariant, and a Get-HtmlReport round trip. --- .../commands/ReportTemplate.Markers.Tests.ps1 | 95 + .../assets/ReportTemplate.classic.html | 348 ++-- src/powershell/assets/ReportTemplate.html | 348 ++-- src/report/demo-report-data.json | 766 ++++++++ src/report/package-lock.json | 1738 +++++------------ src/report/package.json | 6 +- src/report/src-curent/config/report-data.ts | 772 +------- src/report/src/config/report-data.ts | 772 +------- src/report/tsconfig.node.json | 2 +- src/report/vite-plugin-report-data.ts | 32 + src/report/vite.config.current.ts | 9 +- src/report/vite.config.ts | 11 +- 12 files changed, 1752 insertions(+), 3147 deletions(-) create mode 100644 code-tests/commands/ReportTemplate.Markers.Tests.ps1 create mode 100644 src/report/demo-report-data.json create mode 100644 src/report/vite-plugin-report-data.ts diff --git a/code-tests/commands/ReportTemplate.Markers.Tests.ps1 b/code-tests/commands/ReportTemplate.Markers.Tests.ps1 new file mode 100644 index 0000000000..6701a49698 --- /dev/null +++ b/code-tests/commands/ReportTemplate.Markers.Tests.ps1 @@ -0,0 +1,95 @@ +Describe "ReportTemplate markers" { + # Defined at discovery time so the -ForEach cases below can be expanded. + $script:AssetRoot = Join-Path $PSScriptRoot "../../src/powershell/assets" + $script:TemplateCases = @( + @{ Name = 'ReportTemplate.html'; Path = (Join-Path $script:AssetRoot 'ReportTemplate.html'); IsDefault = $true } + @{ Name = 'ReportTemplate.classic.html'; Path = (Join-Path $script:AssetRoot 'ReportTemplate.classic.html'); IsDefault = $false } + ) + + BeforeAll { + $here = $PSScriptRoot + $srcRoot = Join-Path $here "../../src/powershell" + + if (-not (Get-Command Write-PSFMessage -ErrorAction SilentlyContinue)) { + function global:Write-PSFMessage { + param($Level, $Message, $StringValues, $ErrorRecord, $Tag) + } + } + + # Get-HtmlReport resolves the default template relative to $script:ModuleRoot. + $script:ModuleRoot = (Resolve-Path $srcRoot).Path + . (Join-Path $srcRoot "private/core/Get-HtmlReport.ps1") + + $script:StartMarker = 'reportData={' + $script:EndMarker = 'EndOfJson:"EndOfJson"}' + + function script:Measure-Marker { + param([string]$Content, [string]$Marker) + ([regex]::Matches($Content, [regex]::Escape($Marker))).Count + } + } + + Context "Template " -ForEach $script:TemplateCases { + BeforeAll { + $script:TemplateContent = if (Test-Path $Path -PathType Leaf) { Get-Content -Path $Path -Raw } else { '' } + } + + It "exists and is a fully built bundle" { + $Path | Should -Exist + (Get-Item $Path).Length | Should -BeGreaterThan 100KB + } + + It "contains exactly one JSON start marker" { + Measure-Marker -Content $script:TemplateContent -Marker $script:StartMarker | Should -Be 1 + } + + It "contains exactly one JSON end marker" { + Measure-Marker -Content $script:TemplateContent -Marker $script:EndMarker | Should -Be 1 + } + + It "has the end marker after the start marker" { + $script:TemplateContent.IndexOf($script:EndMarker) | + Should -BeGreaterThan $script:TemplateContent.IndexOf($script:StartMarker) + } + + It "is self-contained with no external script or stylesheet references" { + ([regex]::Matches($script:TemplateContent, ']+\ssrc=')).Count | Should -Be 0 + ([regex]::Matches($script:TemplateContent, ']+stylesheet')).Count | Should -Be 0 + } + } + + Context "Get-HtmlReport round trip" { + BeforeAll { + $script:FakeResults = @{ + TenantId = 'ffffffff-1111-2222-3333-444444444444' + TenantName = 'ZtMarkerRoundTripTenant' + Tests = @() + EndOfJson = 'EndOfJson' + } | ConvertTo-Json -Depth 5 -Compress + + $script:WorkPath = Join-Path $TestDrive 'report' + $null = New-Item -ItemType Directory -Path $script:WorkPath -Force + } + + It "injects the payload into " -ForEach $script:TemplateCases { + $html = if ($IsDefault) { + Get-HtmlReport -AssessmentResults $script:FakeResults -Path $script:WorkPath + } + else { + Get-HtmlReport -AssessmentResults $script:FakeResults -Path $script:WorkPath -TemplatePath $Path + } + + $html | Should -Match 'ZtMarkerRoundTripTenant' + # The placeholder payload is replaced wholesale, so its sentinel must be gone. + Measure-Marker -Content $html -Marker $script:EndMarker | Should -Be 0 + } + + It "throws a clear error when the markers are missing" { + $broken = Join-Path $script:WorkPath 'broken-template.html' + Set-Content -Path $broken -Value 'no markers here' -Encoding utf8NoBOM + + { Get-HtmlReport -AssessmentResults $script:FakeResults -Path $script:WorkPath -TemplatePath $broken } | + Should -Throw -ExpectedMessage '*markers were not found*' + } + } +} diff --git a/src/powershell/assets/ReportTemplate.classic.html b/src/powershell/assets/ReportTemplate.classic.html index efebafca5c..23d0c98471 100644 --- a/src/powershell/assets/ReportTemplate.classic.html +++ b/src/powershell/assets/ReportTemplate.classic.html @@ -1,6 +1,8 @@ - + + + @@ -11,216 +13,188 @@ - - +`});return r(),t(),o+` +`+(i===1?`=`:`-`).repeat(o.length-(Math.max(o.lastIndexOf(`\r`),o.lastIndexOf(` +`))+1))}let o=`#`.repeat(i),s=n.enter(`headingAtx`),c=n.enter(`phrasing`);a.move(o+` `);let l=n.containerPhrasing(e,{before:`# `,after:` +`,...a.current()});return/^[\t ]/.test(l)&&(l=M8(l.charCodeAt(0))+l.slice(1)),l=l?o+` `+l:o,n.options.closeAtx&&(l+=` `+o),c(),s(),l}F8.peek=Ole;function F8(e){return e.value||``}function Ole(){return`<`}I8.peek=kle;function I8(e,t,n,r){let i=j8(n),a=i===`"`?`Quote`:`Apostrophe`,o=n.enter(`image`),s=n.enter(`label`),c=n.createTracker(r),l=c.move(`![`);return l+=c.move(n.safe(e.alt,{before:l,after:`]`,...c.current()})),l+=c.move(`](`),s(),!e.url&&e.title||/[\0- \u007F]/.test(e.url)?(s=n.enter(`destinationLiteral`),l+=c.move(`<`),l+=c.move(n.safe(e.url,{before:l,after:`>`,...c.current()})),l+=c.move(`>`)):(s=n.enter(`destinationRaw`),l+=c.move(n.safe(e.url,{before:l,after:e.title?` `:`)`,...c.current()}))),s(),e.title&&(s=n.enter(`title${a}`),l+=c.move(` `+i),l+=c.move(n.safe(e.title,{before:l,after:i,...c.current()})),l+=c.move(i),s()),l+=c.move(`)`),o(),l}function kle(){return`!`}L8.peek=Ale;function L8(e,t,n,r){let i=e.referenceType,a=n.enter(`imageReference`),o=n.enter(`label`),s=n.createTracker(r),c=s.move(`![`),l=n.safe(e.alt,{before:c,after:`]`,...s.current()});c+=s.move(l+`][`),o();let u=n.stack;n.stack=[],o=n.enter(`reference`);let d=n.safe(n.associationId(e),{before:c,after:`]`,...s.current()});return o(),n.stack=u,a(),i===`full`||!l||l!==d?c+=s.move(d+`]`):i===`shortcut`?c=c.slice(0,-1):c+=s.move(`]`),c}function Ale(){return`!`}R8.peek=jle;function R8(e,t,n){let r=e.value||``,i="`",a=-1;for(;RegExp("(^|[^`])"+i+"([^`]|$)").test(r);)i+="`";for(/[^ \r\n]/.test(r)&&(/^[ \r\n]/.test(r)&&/[ \r\n]$/.test(r)||/^`|`$/.test(r))&&(r=` `+r+` `);++a\u007F]/.test(e.url))}B8.peek=Mle;function B8(e,t,n,r){let i=j8(n),a=i===`"`?`Quote`:`Apostrophe`,o=n.createTracker(r),s,c;if(z8(e,n)){let t=n.stack;n.stack=[],s=n.enter(`autolink`);let r=o.move(`<`);return r+=o.move(n.containerPhrasing(e,{before:r,after:`>`,...o.current()})),r+=o.move(`>`),s(),n.stack=t,r}s=n.enter(`link`),c=n.enter(`label`);let l=o.move(`[`);return l+=o.move(n.containerPhrasing(e,{before:l,after:`](`,...o.current()})),l+=o.move(`](`),c(),!e.url&&e.title||/[\0- \u007F]/.test(e.url)?(c=n.enter(`destinationLiteral`),l+=o.move(`<`),l+=o.move(n.safe(e.url,{before:l,after:`>`,...o.current()})),l+=o.move(`>`)):(c=n.enter(`destinationRaw`),l+=o.move(n.safe(e.url,{before:l,after:e.title?` `:`)`,...o.current()}))),c(),e.title&&(c=n.enter(`title${a}`),l+=o.move(` `+i),l+=o.move(n.safe(e.title,{before:l,after:i,...o.current()})),l+=o.move(i),c()),l+=o.move(`)`),s(),l}function Mle(e,t,n){return z8(e,n)?`<`:`[`}V8.peek=Nle;function V8(e,t,n,r){let i=e.referenceType,a=n.enter(`linkReference`),o=n.enter(`label`),s=n.createTracker(r),c=s.move(`[`),l=n.containerPhrasing(e,{before:c,after:`]`,...s.current()});c+=s.move(l+`][`),o();let u=n.stack;n.stack=[],o=n.enter(`reference`);let d=n.safe(n.associationId(e),{before:c,after:`]`,...s.current()});return o(),n.stack=u,a(),i===`full`||!l||l!==d?c+=s.move(d+`]`):i===`shortcut`?c=c.slice(0,-1):c+=s.move(`]`),c}function Nle(){return`[`}function H8(e){let t=e.options.bullet||`*`;if(t!==`*`&&t!==`+`&&t!==`-`)throw Error("Cannot serialize items with `"+t+"` for `options.bullet`, expected `*`, `+`, or `-`");return t}function Ple(e){let t=H8(e),n=e.options.bulletOther;if(!n)return t===`*`?`-`:`*`;if(n!==`*`&&n!==`+`&&n!==`-`)throw Error("Cannot serialize items with `"+n+"` for `options.bulletOther`, expected `*`, `+`, or `-`");if(n===t)throw Error("Expected `bullet` (`"+t+"`) and `bulletOther` (`"+n+"`) to be different");return n}function Fle(e){let t=e.options.bulletOrdered||`.`;if(t!==`.`&&t!==`)`)throw Error("Cannot serialize items with `"+t+"` for `options.bulletOrdered`, expected `.` or `)`");return t}function U8(e){let t=e.options.rule||`*`;if(t!==`*`&&t!==`-`&&t!==`_`)throw Error("Cannot serialize rules with `"+t+"` for `options.rule`, expected `*`, `-`, or `_`");return t}function Ile(e,t,n,r){let i=n.enter(`list`),a=n.bulletCurrent,o=e.ordered?Fle(n):H8(n),s=e.ordered?o===`.`?`)`:`.`:Ple(n),c=t&&n.bulletLastUsed?o===n.bulletLastUsed:!1;if(!e.ordered){let t=e.children?e.children[0]:void 0;if((o===`*`||o===`-`)&&t&&(!t.children||!t.children[0])&&n.stack[n.stack.length-1]===`list`&&n.stack[n.stack.length-2]===`listItem`&&n.stack[n.stack.length-3]===`list`&&n.stack[n.stack.length-4]===`listItem`&&n.indexStack[n.indexStack.length-1]===0&&n.indexStack[n.indexStack.length-2]===0&&n.indexStack[n.indexStack.length-3]===0&&(c=!0),U8(n)===o&&t){let t=-1;for(;++t-1?t.start:1)+(n.options.incrementListMarker===!1?0:t.children.indexOf(e))+a);let o=a.length+1;(i===`tab`||i===`mixed`&&(t&&t.type===`list`&&t.spread||e.spread))&&(o=Math.ceil(o/4)*4);let s=n.createTracker(r);s.move(a+` `.repeat(o-a.length)),s.shift(o);let c=n.enter(`listItem`),l=n.indentLines(n.containerFlow(e,s.current()),u);return c(),l;function u(e,t,n){return t?(n?``:` `.repeat(o))+e:(n?a:a+` `.repeat(o-a.length))+e}}function zle(e,t,n,r){let i=n.enter(`paragraph`),a=n.enter(`phrasing`),o=n.containerPhrasing(e,r);return a(),i(),o}var Ble=W6([`break`,`delete`,`emphasis`,`footnote`,`footnoteReference`,`image`,`imageReference`,`inlineCode`,`inlineMath`,`link`,`linkReference`,`mdxJsxTextElement`,`mdxTextExpression`,`strong`,`text`,`textDirective`]);function Vle(e,t,n,r){return(e.children.some(function(e){return Ble(e)})?n.containerPhrasing:n.containerFlow).call(n,e,r)}function Hle(e){let t=e.options.strong||`*`;if(t!==`*`&&t!==`_`)throw Error("Cannot serialize strong with `"+t+"` for `options.strong`, expected `*`, or `_`");return t}W8.peek=Ule;function W8(e,t,n,r){let i=Hle(n),a=n.enter(`strong`),o=n.createTracker(r),s=o.move(i+i),c=o.move(n.containerPhrasing(e,{after:i,before:s,...o.current()})),l=c.charCodeAt(0),u=N8(r.before.charCodeAt(r.before.length-1),l,i);u.inside&&(c=M8(l)+c.slice(1));let d=c.charCodeAt(c.length-1),f=N8(r.after.charCodeAt(0),d,i);f.inside&&(c=c.slice(0,-1)+M8(d));let p=o.move(i+i);return a(),n.attentionEncodeSurroundingInfo={after:f.outside,before:u.outside},s+c+p}function Ule(e,t,n){return n.options.strong||`*`}function Wle(e,t,n,r){return n.safe(e.value,r)}function Gle(e){let t=e.options.ruleRepetition||3;if(t<3)throw Error("Cannot serialize rules with repetition `"+t+"` for `options.ruleRepetition`, expected `3` or more");return t}function Kle(e,t,n){let r=(U8(n)+(n.options.ruleSpaces?` `:``)).repeat(Gle(n));return n.options.ruleSpaces?r.slice(0,-1):r}var G8={blockquote:hle,break:A8,code:xle,definition:Cle,emphasis:P8,hardBreak:A8,heading:Dle,html:F8,image:I8,imageReference:L8,inlineCode:R8,link:B8,linkReference:V8,list:Ile,listItem:Rle,paragraph:zle,root:Vle,strong:W8,text:Wle,thematicBreak:Kle};function qle(){return{enter:{table:Jle,tableData:q8,tableHeader:q8,tableRow:Xle},exit:{codeText:Zle,table:Yle,tableData:K8,tableHeader:K8,tableRow:K8}}}function Jle(e){let t=e._align;this.enter({type:`table`,align:t.map(function(e){return e===`none`?null:e}),children:[]},e),this.data.inTable=!0}function Yle(e){this.exit(e),this.data.inTable=void 0}function Xle(e){this.enter({type:`tableRow`,children:[]},e)}function K8(e){this.exit(e)}function q8(e){this.enter({type:`tableCell`,children:[]},e)}function Zle(e){let t=this.resume();this.data.inTable&&(t=t.replace(/\\([\\|])/g,Qle));let n=this.stack[this.stack.length-1];n.type,n.value=t,this.exit(e)}function Qle(e,t){return t===`|`?t:e}function $le(e){let t=e||{},n=t.tableCellPadding,r=t.tablePipeAlign,i=t.stringLength,a=n?` `:`|`;return{unsafe:[{character:`\r`,inConstruct:`tableCell`},{character:` +`,inConstruct:`tableCell`},{atBreak:!0,character:`|`,after:`[ :-]`},{character:`|`,inConstruct:`tableCell`},{atBreak:!0,character:`:`,after:`-`},{atBreak:!0,character:`-`,after:`[:|-]`}],handlers:{inlineCode:f,table:o,tableCell:c,tableRow:s}};function o(e,t,n,r){return l(u(e,n,r),e.align)}function s(e,t,n,r){let i=l([d(e,n,r)]);return i.slice(0,i.indexOf(` +`))}function c(e,t,n,r){let i=n.enter(`tableCell`),o=n.enter(`phrasing`),s=n.containerPhrasing(e,{...r,before:a,after:a});return o(),i(),s}function l(e,t){return ple(e,{align:t,alignDelimiters:r,padding:n,stringLength:i})}function u(e,t,n){let r=e.children,i=-1,a=[],o=t.enter(`table`);for(;++i0&&!n&&(e[e.length-1][1]._gfmAutolinkLiteralWalkedInto=!0),n}var _ue={tokenize:Tue,partial:!0};function vue(){return{document:{91:{name:`gfmFootnoteDefinition`,tokenize:Sue,continuation:{tokenize:Cue},exit:wue}},text:{91:{name:`gfmFootnoteCall`,tokenize:xue},93:{name:`gfmPotentialFootnoteCall`,add:`after`,tokenize:yue,resolveTo:bue}}}}function yue(e,t,n){let r=this,i=r.events.length,a=r.parser.gfmFootnotes||(r.parser.gfmFootnotes=[]),o;for(;i--;){let e=r.events[i][1];if(e.type===`labelImage`){o=e;break}if(e.type===`gfmFootnoteCall`||e.type===`labelLink`||e.type===`label`||e.type===`image`||e.type===`link`)break}return s;function s(i){if(!o||!o._balanced)return n(i);let s=R3(r.sliceSerialize({start:o.end,end:r.now()}));return s.codePointAt(0)!==94||!a.includes(s.slice(1))?n(i):(e.enter(`gfmFootnoteCallLabelMarker`),e.consume(i),e.exit(`gfmFootnoteCallLabelMarker`),t(i))}}function bue(e,t){let n=e.length;for(;n--;)if(e[n][1].type===`labelImage`&&e[n][0]===`enter`){e[n][1];break}e[n+1][1].type=`data`,e[n+3][1].type=`gfmFootnoteCallLabelMarker`;let r={type:`gfmFootnoteCall`,start:Object.assign({},e[n+3][1].start),end:Object.assign({},e[e.length-1][1].end)},i={type:`gfmFootnoteCallMarker`,start:Object.assign({},e[n+3][1].end),end:Object.assign({},e[n+3][1].end)};i.end.column++,i.end.offset++,i.end._bufferIndex++;let a={type:`gfmFootnoteCallString`,start:Object.assign({},i.end),end:Object.assign({},e[e.length-1][1].start)},o={type:`chunkString`,contentType:`string`,start:Object.assign({},a.start),end:Object.assign({},a.end)},s=[e[n+1],e[n+2],[`enter`,r,t],e[n+3],e[n+4],[`enter`,i,t],[`exit`,i,t],[`enter`,a,t],[`enter`,o,t],[`exit`,o,t],[`exit`,a,t],e[e.length-2],e[e.length-1],[`exit`,r,t]];return e.splice(n,e.length-n+1,...s),e}function xue(e,t,n){let r=this,i=r.parser.gfmFootnotes||(r.parser.gfmFootnotes=[]),a=0,o;return s;function s(t){return e.enter(`gfmFootnoteCall`),e.enter(`gfmFootnoteCallLabelMarker`),e.consume(t),e.exit(`gfmFootnoteCallLabelMarker`),c}function c(t){return t===94?(e.enter(`gfmFootnoteCallMarker`),e.consume(t),e.exit(`gfmFootnoteCallMarker`),e.enter(`gfmFootnoteCallString`),e.enter(`chunkString`).contentType=`string`,l):n(t)}function l(s){if(a>999||s===93&&!o||s===null||s===91||q3(s))return n(s);if(s===93){e.exit(`chunkString`);let a=e.exit(`gfmFootnoteCallString`);return i.includes(R3(r.sliceSerialize(a)))?(e.enter(`gfmFootnoteCallLabelMarker`),e.consume(s),e.exit(`gfmFootnoteCallLabelMarker`),e.exit(`gfmFootnoteCall`),t):n(s)}return q3(s)||(o=!0),a++,e.consume(s),s===92?u:l}function u(t){return t===91||t===92||t===93?(e.consume(t),a++,l):l(t)}}function Sue(e,t,n){let r=this,i=r.parser.gfmFootnotes||(r.parser.gfmFootnotes=[]),a,o=0,s;return c;function c(t){return e.enter(`gfmFootnoteDefinition`)._container=!0,e.enter(`gfmFootnoteDefinitionLabel`),e.enter(`gfmFootnoteDefinitionLabelMarker`),e.consume(t),e.exit(`gfmFootnoteDefinitionLabelMarker`),l}function l(t){return t===94?(e.enter(`gfmFootnoteDefinitionMarker`),e.consume(t),e.exit(`gfmFootnoteDefinitionMarker`),e.enter(`gfmFootnoteDefinitionLabelString`),e.enter(`chunkString`).contentType=`string`,u):n(t)}function u(t){if(o>999||t===93&&!s||t===null||t===91||q3(t))return n(t);if(t===93){e.exit(`chunkString`);let n=e.exit(`gfmFootnoteDefinitionLabelString`);return a=R3(r.sliceSerialize(n)),e.enter(`gfmFootnoteDefinitionLabelMarker`),e.consume(t),e.exit(`gfmFootnoteDefinitionLabelMarker`),e.exit(`gfmFootnoteDefinitionLabel`),f}return q3(t)||(s=!0),o++,e.consume(t),t===92?d:u}function d(t){return t===91||t===92||t===93?(e.consume(t),o++,u):u(t)}function f(t){return t===58?(e.enter(`definitionMarker`),e.consume(t),e.exit(`definitionMarker`),i.includes(a)||i.push(a),$3(e,p,`gfmFootnoteDefinitionWhitespace`)):n(t)}function p(e){return t(e)}}function Cue(e,t,n){return e.check(a6,t,e.attempt(_ue,t,n))}function wue(e){e.exit(`gfmFootnoteDefinition`)}function Tue(e,t,n){let r=this;return $3(e,i,`gfmFootnoteDefinitionIndent`,5);function i(e){let i=r.events[r.events.length-1];return i&&i[1].type===`gfmFootnoteDefinitionIndent`&&i[2].sliceSerialize(i[1],!0).length===4?t(e):n(e)}}function Eue(e){let t=(e||{}).singleTilde,n={name:`strikethrough`,tokenize:i,resolveAll:r};return t??=!0,{text:{126:n},insideSpan:{null:[n]},attentionMarkers:{null:[126]}};function r(e,t){let n=-1;for(;++n1?r(a):(e.consume(a),o++,c);if(o<2&&!t)return r(a);let l=e.exit(`strikethroughSequenceTemporary`),u=t6(a);return l._open=!u||u===2&&!!s,l._close=!s||s===2&&!!u,n(a)}}}var Due=class{constructor(){this.map=[]}add(e,t,n){Oue(this,e,t,n)}consume(e){if(this.map.sort(function(e,t){return e[0]-t[0]}),this.map.length===0)return;let t=this.map.length,n=[];for(;t>0;)--t,n.push(e.slice(this.map[t][0]+this.map[t][1]),this.map[t][2]),e.length=this.map[t][0];n.push(e.slice()),e.length=0;let r=n.pop();for(;r;){for(let t of r)e.push(t);r=n.pop()}this.map.length=0}};function Oue(e,t,n,r){let i=0;if(n!==0||r.length!==0){for(;i-1;){let e=r.events[t][1].type;if(e===`lineEnding`||e===`linePrefix`)t--;else break}let i=t>-1?r.events[t][1].type:null,a=i===`tableHead`||i===`tableRow`?S:c;return a===S&&r.parser.lazy[r.now().line]?n(e):a(e)}function c(t){return e.enter(`tableHead`),e.enter(`tableRow`),l(t)}function l(e){return e===124?u(e):(o=!0,a+=1,u(e))}function u(t){return t===null?n(t):K3(t)?a>1?(a=0,r.interrupt=!0,e.exit(`tableRow`),e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),p):n(t):J3(t)?$3(e,u,`whitespace`)(t):(a+=1,o&&(o=!1,i+=1),t===124?(e.enter(`tableCellDivider`),e.consume(t),e.exit(`tableCellDivider`),o=!0,u):(e.enter(`data`),d(t)))}function d(t){return t===null||t===124||q3(t)?(e.exit(`data`),u(t)):(e.consume(t),t===92?f:d)}function f(t){return t===92||t===124?(e.consume(t),d):d(t)}function p(t){return r.interrupt=!1,r.parser.lazy[r.now().line]?n(t):(e.enter(`tableDelimiterRow`),o=!1,J3(t)?$3(e,m,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):m(t))}function m(t){return t===45||t===58?g(t):t===124?(o=!0,e.enter(`tableCellDivider`),e.consume(t),e.exit(`tableCellDivider`),h):x(t)}function h(t){return J3(t)?$3(e,g,`whitespace`)(t):g(t)}function g(t){return t===58?(a+=1,o=!0,e.enter(`tableDelimiterMarker`),e.consume(t),e.exit(`tableDelimiterMarker`),_):t===45?(a+=1,_(t)):t===null||K3(t)?b(t):x(t)}function _(t){return t===45?(e.enter(`tableDelimiterFiller`),v(t)):x(t)}function v(t){return t===45?(e.consume(t),v):t===58?(o=!0,e.exit(`tableDelimiterFiller`),e.enter(`tableDelimiterMarker`),e.consume(t),e.exit(`tableDelimiterMarker`),y):(e.exit(`tableDelimiterFiller`),y(t))}function y(t){return J3(t)?$3(e,b,`whitespace`)(t):b(t)}function b(n){return n===124?m(n):n===null||K3(n)?!o||i!==a?x(n):(e.exit(`tableDelimiterRow`),e.exit(`tableHead`),t(n)):x(n)}function x(e){return n(e)}function S(t){return e.enter(`tableRow`),C(t)}function C(n){return n===124?(e.enter(`tableCellDivider`),e.consume(n),e.exit(`tableCellDivider`),C):n===null||K3(n)?(e.exit(`tableRow`),t(n)):J3(n)?$3(e,C,`whitespace`)(n):(e.enter(`data`),w(n))}function w(t){return t===null||t===124||q3(t)?(e.exit(`data`),C(t)):(e.consume(t),t===92?T:w)}function T(t){return t===92||t===124?(e.consume(t),w):w(t)}}function Mue(e,t){let n=-1,r=!0,i=0,a=[0,0,0,0],o=[0,0,0,0],s=!1,c=0,l,u,d,f=new Due;for(;++nn[2]+1){let t=n[2]+1,r=n[3]-n[2]-1;e.add(t,r,[])}}e.add(n[3]+1,0,[[`exit`,o,t]])}return i!==void 0&&(a.end=Object.assign({},u5(t.events,i)),e.add(i,0,[[`exit`,a,t]]),a=void 0),a}function l5(e,t,n,r,i){let a=[],o=u5(t.events,n);i&&(i.end=Object.assign({},o),a.push([`exit`,i,t])),r.end=Object.assign({},o),a.push([`exit`,r,t]),e.add(n+1,0,a)}function u5(e,t){let n=e[t],r=n[0]===`enter`?`start`:`end`;return n[1][r]}var Nue={name:`tasklistCheck`,tokenize:Fue};function Pue(){return{text:{91:Nue}}}function Fue(e,t,n){let r=this;return i;function i(t){return r.previous!==null||!r._gfmTasklistFirstContentOfListItem?n(t):(e.enter(`taskListCheck`),e.enter(`taskListCheckMarker`),e.consume(t),e.exit(`taskListCheckMarker`),a)}function a(t){return q3(t)?(e.enter(`taskListCheckValueUnchecked`),e.consume(t),e.exit(`taskListCheckValueUnchecked`),o):t===88||t===120?(e.enter(`taskListCheckValueChecked`),e.consume(t),e.exit(`taskListCheckValueChecked`),o):n(t)}function o(t){return t===93?(e.enter(`taskListCheckMarker`),e.consume(t),e.exit(`taskListCheckMarker`),e.exit(`taskListCheck`),s):n(t)}function s(r){return K3(r)?t(r):J3(r)?e.check({tokenize:Iue},t,n)(r):n(r)}}function Iue(e,t,n){return $3(e,r,`whitespace`);function r(e){return e===null?n(e):t(e)}}function Lue(e){return P3([cue(),vue(),Eue(e),Aue(),Pue()])}var Rue={};function d5(e){let t=this,n=e||Rue,r=t.data(),i=r.micromarkExtensions||=[],a=r.fromMarkdownExtensions||=[],o=r.toMarkdownExtensions||=[];i.push(Lue(n)),a.push(iue()),o.push(aue(n))}var f5=/[#.]/g;function zue(e,t){let n=e||``,r={},i=0,a,o;for(;i-1&&e<=t.length){let r=0;for(;;){let i=n[r];if(i===void 0){let e=g5(t,n[r-1]);i=e===-1?t.length+1:e+1,n[r]=i}if(i>e)return{line:r+1,column:e-(r>0?n[r-1]:0)+1,offset:e};r++}}}function i(e){if(e&&typeof e.line==`number`&&typeof e.column==`number`&&!Number.isNaN(e.line)&&!Number.isNaN(e.column)){for(;n.length1?n[e.line-2]:0)+e.column-1;if(r=55296&&e<=57343}function ude(e){return e>=56320&&e<=57343}function dde(e,t){return(e-55296)*1024+9216+t}function k5(e){return e!==32&&e!==10&&e!==13&&e!==9&&e!==12&&e>=1&&e<=31||e>=127&&e<=159}function A5(e){return e>=64976&&e<=65007||lde.has(e)}var q;(function(e){e.controlCharacterInInputStream=`control-character-in-input-stream`,e.noncharacterInInputStream=`noncharacter-in-input-stream`,e.surrogateInInputStream=`surrogate-in-input-stream`,e.nonVoidHtmlElementStartTagWithTrailingSolidus=`non-void-html-element-start-tag-with-trailing-solidus`,e.endTagWithAttributes=`end-tag-with-attributes`,e.endTagWithTrailingSolidus=`end-tag-with-trailing-solidus`,e.unexpectedSolidusInTag=`unexpected-solidus-in-tag`,e.unexpectedNullCharacter=`unexpected-null-character`,e.unexpectedQuestionMarkInsteadOfTagName=`unexpected-question-mark-instead-of-tag-name`,e.invalidFirstCharacterOfTagName=`invalid-first-character-of-tag-name`,e.unexpectedEqualsSignBeforeAttributeName=`unexpected-equals-sign-before-attribute-name`,e.missingEndTagName=`missing-end-tag-name`,e.unexpectedCharacterInAttributeName=`unexpected-character-in-attribute-name`,e.unknownNamedCharacterReference=`unknown-named-character-reference`,e.missingSemicolonAfterCharacterReference=`missing-semicolon-after-character-reference`,e.unexpectedCharacterAfterDoctypeSystemIdentifier=`unexpected-character-after-doctype-system-identifier`,e.unexpectedCharacterInUnquotedAttributeValue=`unexpected-character-in-unquoted-attribute-value`,e.eofBeforeTagName=`eof-before-tag-name`,e.eofInTag=`eof-in-tag`,e.missingAttributeValue=`missing-attribute-value`,e.missingWhitespaceBetweenAttributes=`missing-whitespace-between-attributes`,e.missingWhitespaceAfterDoctypePublicKeyword=`missing-whitespace-after-doctype-public-keyword`,e.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers=`missing-whitespace-between-doctype-public-and-system-identifiers`,e.missingWhitespaceAfterDoctypeSystemKeyword=`missing-whitespace-after-doctype-system-keyword`,e.missingQuoteBeforeDoctypePublicIdentifier=`missing-quote-before-doctype-public-identifier`,e.missingQuoteBeforeDoctypeSystemIdentifier=`missing-quote-before-doctype-system-identifier`,e.missingDoctypePublicIdentifier=`missing-doctype-public-identifier`,e.missingDoctypeSystemIdentifier=`missing-doctype-system-identifier`,e.abruptDoctypePublicIdentifier=`abrupt-doctype-public-identifier`,e.abruptDoctypeSystemIdentifier=`abrupt-doctype-system-identifier`,e.cdataInHtmlContent=`cdata-in-html-content`,e.incorrectlyOpenedComment=`incorrectly-opened-comment`,e.eofInScriptHtmlCommentLikeText=`eof-in-script-html-comment-like-text`,e.eofInDoctype=`eof-in-doctype`,e.nestedComment=`nested-comment`,e.abruptClosingOfEmptyComment=`abrupt-closing-of-empty-comment`,e.eofInComment=`eof-in-comment`,e.incorrectlyClosedComment=`incorrectly-closed-comment`,e.eofInCdata=`eof-in-cdata`,e.absenceOfDigitsInNumericCharacterReference=`absence-of-digits-in-numeric-character-reference`,e.nullCharacterReference=`null-character-reference`,e.surrogateCharacterReference=`surrogate-character-reference`,e.characterReferenceOutsideUnicodeRange=`character-reference-outside-unicode-range`,e.controlCharacterReference=`control-character-reference`,e.noncharacterCharacterReference=`noncharacter-character-reference`,e.missingWhitespaceBeforeDoctypeName=`missing-whitespace-before-doctype-name`,e.missingDoctypeName=`missing-doctype-name`,e.invalidCharacterSequenceAfterDoctypeName=`invalid-character-sequence-after-doctype-name`,e.duplicateAttribute=`duplicate-attribute`,e.nonConformingDoctype=`non-conforming-doctype`,e.missingDoctype=`missing-doctype`,e.misplacedDoctype=`misplaced-doctype`,e.endTagWithoutMatchingOpenElement=`end-tag-without-matching-open-element`,e.closingOfElementWithOpenChildElements=`closing-of-element-with-open-child-elements`,e.disallowedContentInNoscriptInHead=`disallowed-content-in-noscript-in-head`,e.openElementsLeftAfterEof=`open-elements-left-after-eof`,e.abandonedHeadElementChild=`abandoned-head-element-child`,e.misplacedStartTagForHeadElement=`misplaced-start-tag-for-head-element`,e.nestedNoscriptInHead=`nested-noscript-in-head`,e.eofInElementThatCanContainOnlyText=`eof-in-element-that-can-contain-only-text`})(q||={});var fde=65536,pde=class{constructor(e){this.handler=e,this.html=``,this.pos=-1,this.lastGapPos=-2,this.gapStack=[],this.skipNextNewLine=!1,this.lastChunkWritten=!1,this.endOfChunkHit=!1,this.bufferWaterline=fde,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.line=1,this.lastErrOffset=-1}get col(){return this.pos-this.lineStartPos+Number(this.lastGapPos!==this.pos)}get offset(){return this.droppedBufferSize+this.pos}getError(e,t){let{line:n,col:r,offset:i}=this,a=r+t,o=i+t;return{code:e,startLine:n,endLine:n,startCol:a,endCol:a,startOffset:o,endOffset:o}}_err(e){this.handler.onParseError&&this.lastErrOffset!==this.offset&&(this.lastErrOffset=this.offset,this.handler.onParseError(this.getError(e,0)))}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos}_processSurrogate(e){if(this.pos!==this.html.length-1){let t=this.html.charCodeAt(this.pos+1);if(ude(t))return this.pos++,this._addGap(),dde(e,t)}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,K.EOF;return this._err(q.surrogateInInputStream),e}willDropParsedChunk(){return this.pos>this.bufferWaterline}dropParsedChunk(){this.willDropParsedChunk()&&(this.html=this.html.substring(this.pos),this.lineStartPos-=this.pos,this.droppedBufferSize+=this.pos,this.pos=0,this.lastGapPos=-2,this.gapStack.length=0)}write(e,t){this.html.length>0?this.html+=e:this.html=e,this.endOfChunkHit=!1,this.lastChunkWritten=t}insertHtmlAtCurrentPos(e){this.html=this.html.substring(0,this.pos+1)+e+this.html.substring(this.pos+1),this.endOfChunkHit=!1}startsWith(e,t){if(this.pos+e.length>this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,!1;if(t)return this.html.startsWith(e,this.pos);for(let t=0;t=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,K.EOF;let n=this.html.charCodeAt(t);return n===K.CARRIAGE_RETURN?K.LINE_FEED:n}advance(){if(this.pos++,this.isEol&&(this.isEol=!1,this.line++,this.lineStartPos=this.pos),this.pos>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,K.EOF;let e=this.html.charCodeAt(this.pos);return e===K.CARRIAGE_RETURN?(this.isEol=!0,this.skipNextNewLine=!0,K.LINE_FEED):e===K.LINE_FEED&&(this.isEol=!0,this.skipNextNewLine)?(this.line--,this.skipNextNewLine=!1,this._addGap(),this.advance()):(this.skipNextNewLine=!1,O5(e)&&(e=this._processSurrogate(e)),this.handler.onParseError===null||e>31&&e<127||e===K.LINE_FEED||e===K.CARRIAGE_RETURN||e>159&&e<64976||this._checkForProblematicCharacters(e),e)}_checkForProblematicCharacters(e){k5(e)?this._err(q.controlCharacterInInputStream):A5(e)&&this._err(q.noncharacterInInputStream)}retreat(e){for(this.pos-=e;this.pos=0;n--)if(e.attrs[n].name===t)return e.attrs[n].value;return null}var mde=new Uint16Array(`ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻\xA0ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌`.split(``).map(e=>e.charCodeAt(0))),hde=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);String.fromCodePoint;function gde(e){return e>=55296&&e<=57343||e>1114111?65533:hde.get(e)??e}var N5;(function(e){e[e.NUM=35]=`NUM`,e[e.SEMI=59]=`SEMI`,e[e.EQUALS=61]=`EQUALS`,e[e.ZERO=48]=`ZERO`,e[e.NINE=57]=`NINE`,e[e.LOWER_A=97]=`LOWER_A`,e[e.LOWER_F=102]=`LOWER_F`,e[e.LOWER_X=120]=`LOWER_X`,e[e.LOWER_Z=122]=`LOWER_Z`,e[e.UPPER_A=65]=`UPPER_A`,e[e.UPPER_F=70]=`UPPER_F`,e[e.UPPER_Z=90]=`UPPER_Z`})(N5||={});var _de=32,P5;(function(e){e[e.VALUE_LENGTH=49152]=`VALUE_LENGTH`,e[e.BRANCH_LENGTH=16256]=`BRANCH_LENGTH`,e[e.JUMP_TABLE=127]=`JUMP_TABLE`})(P5||={});function F5(e){return e>=N5.ZERO&&e<=N5.NINE}function vde(e){return e>=N5.UPPER_A&&e<=N5.UPPER_F||e>=N5.LOWER_A&&e<=N5.LOWER_F}function yde(e){return e>=N5.UPPER_A&&e<=N5.UPPER_Z||e>=N5.LOWER_A&&e<=N5.LOWER_Z||F5(e)}function bde(e){return e===N5.EQUALS||yde(e)}var I5;(function(e){e[e.EntityStart=0]=`EntityStart`,e[e.NumericStart=1]=`NumericStart`,e[e.NumericDecimal=2]=`NumericDecimal`,e[e.NumericHex=3]=`NumericHex`,e[e.NamedEntity=4]=`NamedEntity`})(I5||={});var L5;(function(e){e[e.Legacy=0]=`Legacy`,e[e.Strict=1]=`Strict`,e[e.Attribute=2]=`Attribute`})(L5||={});var xde=class{constructor(e,t,n){this.decodeTree=e,this.emitCodePoint=t,this.errors=n,this.state=I5.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=L5.Strict}startEntity(e){this.decodeMode=e,this.state=I5.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}write(e,t){switch(this.state){case I5.EntityStart:return e.charCodeAt(t)===N5.NUM?(this.state=I5.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=I5.NamedEntity,this.stateNamedEntity(e,t));case I5.NumericStart:return this.stateNumericStart(e,t);case I5.NumericDecimal:return this.stateNumericDecimal(e,t);case I5.NumericHex:return this.stateNumericHex(e,t);case I5.NamedEntity:return this.stateNamedEntity(e,t)}}stateNumericStart(e,t){return t>=e.length?-1:(e.charCodeAt(t)|_de)===N5.LOWER_X?(this.state=I5.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=I5.NumericDecimal,this.stateNumericDecimal(e,t))}addToNumericResult(e,t,n,r){if(t!==n){let i=n-t;this.result=this.result*r**+i+Number.parseInt(e.substr(t,i),r),this.consumed+=i}}stateNumericHex(e,t){let n=t;for(;t>14;for(;t>14,i!==0){if(a===N5.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==L5.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1}emitNotTerminatedNamedEntity(){var e;let{result:t,decodeTree:n}=this,r=(n[t]&P5.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),(e=this.errors)==null||e.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(e,t,n){let{decodeTree:r}=this;return this.emitCodePoint(t===1?r[e]&~P5.VALUE_LENGTH:r[e+1],n),t===3&&this.emitCodePoint(r[e+2],n),n}end(){var e;switch(this.state){case I5.NamedEntity:return this.result!==0&&(this.decodeMode!==L5.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case I5.NumericDecimal:return this.emitNumericEntity(0,2);case I5.NumericHex:return this.emitNumericEntity(0,3);case I5.NumericStart:return(e=this.errors)==null||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case I5.EntityStart:return 0}}};function Sde(e,t,n,r){let i=(t&P5.BRANCH_LENGTH)>>7,a=t&P5.JUMP_TABLE;if(i===0)return a!==0&&r===a?n:-1;if(a){let t=r-a;return t<0||t>=i?-1:e[n+t]-1}let o=n,s=o+i-1;for(;o<=s;){let t=o+s>>>1,n=e[t];if(nr)s=t-1;else return e[t+i]}return-1}var J;(function(e){e.HTML=`http://www.w3.org/1999/xhtml`,e.MATHML=`http://www.w3.org/1998/Math/MathML`,e.SVG=`http://www.w3.org/2000/svg`,e.XLINK=`http://www.w3.org/1999/xlink`,e.XML=`http://www.w3.org/XML/1998/namespace`,e.XMLNS=`http://www.w3.org/2000/xmlns/`})(J||={});var R5;(function(e){e.TYPE=`type`,e.ACTION=`action`,e.ENCODING=`encoding`,e.PROMPT=`prompt`,e.NAME=`name`,e.COLOR=`color`,e.FACE=`face`,e.SIZE=`size`})(R5||={});var z5;(function(e){e.NO_QUIRKS=`no-quirks`,e.QUIRKS=`quirks`,e.LIMITED_QUIRKS=`limited-quirks`})(z5||={});var Y;(function(e){e.A=`a`,e.ADDRESS=`address`,e.ANNOTATION_XML=`annotation-xml`,e.APPLET=`applet`,e.AREA=`area`,e.ARTICLE=`article`,e.ASIDE=`aside`,e.B=`b`,e.BASE=`base`,e.BASEFONT=`basefont`,e.BGSOUND=`bgsound`,e.BIG=`big`,e.BLOCKQUOTE=`blockquote`,e.BODY=`body`,e.BR=`br`,e.BUTTON=`button`,e.CAPTION=`caption`,e.CENTER=`center`,e.CODE=`code`,e.COL=`col`,e.COLGROUP=`colgroup`,e.DD=`dd`,e.DESC=`desc`,e.DETAILS=`details`,e.DIALOG=`dialog`,e.DIR=`dir`,e.DIV=`div`,e.DL=`dl`,e.DT=`dt`,e.EM=`em`,e.EMBED=`embed`,e.FIELDSET=`fieldset`,e.FIGCAPTION=`figcaption`,e.FIGURE=`figure`,e.FONT=`font`,e.FOOTER=`footer`,e.FOREIGN_OBJECT=`foreignObject`,e.FORM=`form`,e.FRAME=`frame`,e.FRAMESET=`frameset`,e.H1=`h1`,e.H2=`h2`,e.H3=`h3`,e.H4=`h4`,e.H5=`h5`,e.H6=`h6`,e.HEAD=`head`,e.HEADER=`header`,e.HGROUP=`hgroup`,e.HR=`hr`,e.HTML=`html`,e.I=`i`,e.IMG=`img`,e.IMAGE=`image`,e.INPUT=`input`,e.IFRAME=`iframe`,e.KEYGEN=`keygen`,e.LABEL=`label`,e.LI=`li`,e.LINK=`link`,e.LISTING=`listing`,e.MAIN=`main`,e.MALIGNMARK=`malignmark`,e.MARQUEE=`marquee`,e.MATH=`math`,e.MENU=`menu`,e.META=`meta`,e.MGLYPH=`mglyph`,e.MI=`mi`,e.MO=`mo`,e.MN=`mn`,e.MS=`ms`,e.MTEXT=`mtext`,e.NAV=`nav`,e.NOBR=`nobr`,e.NOFRAMES=`noframes`,e.NOEMBED=`noembed`,e.NOSCRIPT=`noscript`,e.OBJECT=`object`,e.OL=`ol`,e.OPTGROUP=`optgroup`,e.OPTION=`option`,e.P=`p`,e.PARAM=`param`,e.PLAINTEXT=`plaintext`,e.PRE=`pre`,e.RB=`rb`,e.RP=`rp`,e.RT=`rt`,e.RTC=`rtc`,e.RUBY=`ruby`,e.S=`s`,e.SCRIPT=`script`,e.SEARCH=`search`,e.SECTION=`section`,e.SELECT=`select`,e.SOURCE=`source`,e.SMALL=`small`,e.SPAN=`span`,e.STRIKE=`strike`,e.STRONG=`strong`,e.STYLE=`style`,e.SUB=`sub`,e.SUMMARY=`summary`,e.SUP=`sup`,e.TABLE=`table`,e.TBODY=`tbody`,e.TEMPLATE=`template`,e.TEXTAREA=`textarea`,e.TFOOT=`tfoot`,e.TD=`td`,e.TH=`th`,e.THEAD=`thead`,e.TITLE=`title`,e.TR=`tr`,e.TRACK=`track`,e.TT=`tt`,e.U=`u`,e.UL=`ul`,e.SVG=`svg`,e.VAR=`var`,e.WBR=`wbr`,e.XMP=`xmp`})(Y||={});var X;(function(e){e[e.UNKNOWN=0]=`UNKNOWN`,e[e.A=1]=`A`,e[e.ADDRESS=2]=`ADDRESS`,e[e.ANNOTATION_XML=3]=`ANNOTATION_XML`,e[e.APPLET=4]=`APPLET`,e[e.AREA=5]=`AREA`,e[e.ARTICLE=6]=`ARTICLE`,e[e.ASIDE=7]=`ASIDE`,e[e.B=8]=`B`,e[e.BASE=9]=`BASE`,e[e.BASEFONT=10]=`BASEFONT`,e[e.BGSOUND=11]=`BGSOUND`,e[e.BIG=12]=`BIG`,e[e.BLOCKQUOTE=13]=`BLOCKQUOTE`,e[e.BODY=14]=`BODY`,e[e.BR=15]=`BR`,e[e.BUTTON=16]=`BUTTON`,e[e.CAPTION=17]=`CAPTION`,e[e.CENTER=18]=`CENTER`,e[e.CODE=19]=`CODE`,e[e.COL=20]=`COL`,e[e.COLGROUP=21]=`COLGROUP`,e[e.DD=22]=`DD`,e[e.DESC=23]=`DESC`,e[e.DETAILS=24]=`DETAILS`,e[e.DIALOG=25]=`DIALOG`,e[e.DIR=26]=`DIR`,e[e.DIV=27]=`DIV`,e[e.DL=28]=`DL`,e[e.DT=29]=`DT`,e[e.EM=30]=`EM`,e[e.EMBED=31]=`EMBED`,e[e.FIELDSET=32]=`FIELDSET`,e[e.FIGCAPTION=33]=`FIGCAPTION`,e[e.FIGURE=34]=`FIGURE`,e[e.FONT=35]=`FONT`,e[e.FOOTER=36]=`FOOTER`,e[e.FOREIGN_OBJECT=37]=`FOREIGN_OBJECT`,e[e.FORM=38]=`FORM`,e[e.FRAME=39]=`FRAME`,e[e.FRAMESET=40]=`FRAMESET`,e[e.H1=41]=`H1`,e[e.H2=42]=`H2`,e[e.H3=43]=`H3`,e[e.H4=44]=`H4`,e[e.H5=45]=`H5`,e[e.H6=46]=`H6`,e[e.HEAD=47]=`HEAD`,e[e.HEADER=48]=`HEADER`,e[e.HGROUP=49]=`HGROUP`,e[e.HR=50]=`HR`,e[e.HTML=51]=`HTML`,e[e.I=52]=`I`,e[e.IMG=53]=`IMG`,e[e.IMAGE=54]=`IMAGE`,e[e.INPUT=55]=`INPUT`,e[e.IFRAME=56]=`IFRAME`,e[e.KEYGEN=57]=`KEYGEN`,e[e.LABEL=58]=`LABEL`,e[e.LI=59]=`LI`,e[e.LINK=60]=`LINK`,e[e.LISTING=61]=`LISTING`,e[e.MAIN=62]=`MAIN`,e[e.MALIGNMARK=63]=`MALIGNMARK`,e[e.MARQUEE=64]=`MARQUEE`,e[e.MATH=65]=`MATH`,e[e.MENU=66]=`MENU`,e[e.META=67]=`META`,e[e.MGLYPH=68]=`MGLYPH`,e[e.MI=69]=`MI`,e[e.MO=70]=`MO`,e[e.MN=71]=`MN`,e[e.MS=72]=`MS`,e[e.MTEXT=73]=`MTEXT`,e[e.NAV=74]=`NAV`,e[e.NOBR=75]=`NOBR`,e[e.NOFRAMES=76]=`NOFRAMES`,e[e.NOEMBED=77]=`NOEMBED`,e[e.NOSCRIPT=78]=`NOSCRIPT`,e[e.OBJECT=79]=`OBJECT`,e[e.OL=80]=`OL`,e[e.OPTGROUP=81]=`OPTGROUP`,e[e.OPTION=82]=`OPTION`,e[e.P=83]=`P`,e[e.PARAM=84]=`PARAM`,e[e.PLAINTEXT=85]=`PLAINTEXT`,e[e.PRE=86]=`PRE`,e[e.RB=87]=`RB`,e[e.RP=88]=`RP`,e[e.RT=89]=`RT`,e[e.RTC=90]=`RTC`,e[e.RUBY=91]=`RUBY`,e[e.S=92]=`S`,e[e.SCRIPT=93]=`SCRIPT`,e[e.SEARCH=94]=`SEARCH`,e[e.SECTION=95]=`SECTION`,e[e.SELECT=96]=`SELECT`,e[e.SOURCE=97]=`SOURCE`,e[e.SMALL=98]=`SMALL`,e[e.SPAN=99]=`SPAN`,e[e.STRIKE=100]=`STRIKE`,e[e.STRONG=101]=`STRONG`,e[e.STYLE=102]=`STYLE`,e[e.SUB=103]=`SUB`,e[e.SUMMARY=104]=`SUMMARY`,e[e.SUP=105]=`SUP`,e[e.TABLE=106]=`TABLE`,e[e.TBODY=107]=`TBODY`,e[e.TEMPLATE=108]=`TEMPLATE`,e[e.TEXTAREA=109]=`TEXTAREA`,e[e.TFOOT=110]=`TFOOT`,e[e.TD=111]=`TD`,e[e.TH=112]=`TH`,e[e.THEAD=113]=`THEAD`,e[e.TITLE=114]=`TITLE`,e[e.TR=115]=`TR`,e[e.TRACK=116]=`TRACK`,e[e.TT=117]=`TT`,e[e.U=118]=`U`,e[e.UL=119]=`UL`,e[e.SVG=120]=`SVG`,e[e.VAR=121]=`VAR`,e[e.WBR=122]=`WBR`,e[e.XMP=123]=`XMP`})(X||={});var Cde=new Map([[Y.A,X.A],[Y.ADDRESS,X.ADDRESS],[Y.ANNOTATION_XML,X.ANNOTATION_XML],[Y.APPLET,X.APPLET],[Y.AREA,X.AREA],[Y.ARTICLE,X.ARTICLE],[Y.ASIDE,X.ASIDE],[Y.B,X.B],[Y.BASE,X.BASE],[Y.BASEFONT,X.BASEFONT],[Y.BGSOUND,X.BGSOUND],[Y.BIG,X.BIG],[Y.BLOCKQUOTE,X.BLOCKQUOTE],[Y.BODY,X.BODY],[Y.BR,X.BR],[Y.BUTTON,X.BUTTON],[Y.CAPTION,X.CAPTION],[Y.CENTER,X.CENTER],[Y.CODE,X.CODE],[Y.COL,X.COL],[Y.COLGROUP,X.COLGROUP],[Y.DD,X.DD],[Y.DESC,X.DESC],[Y.DETAILS,X.DETAILS],[Y.DIALOG,X.DIALOG],[Y.DIR,X.DIR],[Y.DIV,X.DIV],[Y.DL,X.DL],[Y.DT,X.DT],[Y.EM,X.EM],[Y.EMBED,X.EMBED],[Y.FIELDSET,X.FIELDSET],[Y.FIGCAPTION,X.FIGCAPTION],[Y.FIGURE,X.FIGURE],[Y.FONT,X.FONT],[Y.FOOTER,X.FOOTER],[Y.FOREIGN_OBJECT,X.FOREIGN_OBJECT],[Y.FORM,X.FORM],[Y.FRAME,X.FRAME],[Y.FRAMESET,X.FRAMESET],[Y.H1,X.H1],[Y.H2,X.H2],[Y.H3,X.H3],[Y.H4,X.H4],[Y.H5,X.H5],[Y.H6,X.H6],[Y.HEAD,X.HEAD],[Y.HEADER,X.HEADER],[Y.HGROUP,X.HGROUP],[Y.HR,X.HR],[Y.HTML,X.HTML],[Y.I,X.I],[Y.IMG,X.IMG],[Y.IMAGE,X.IMAGE],[Y.INPUT,X.INPUT],[Y.IFRAME,X.IFRAME],[Y.KEYGEN,X.KEYGEN],[Y.LABEL,X.LABEL],[Y.LI,X.LI],[Y.LINK,X.LINK],[Y.LISTING,X.LISTING],[Y.MAIN,X.MAIN],[Y.MALIGNMARK,X.MALIGNMARK],[Y.MARQUEE,X.MARQUEE],[Y.MATH,X.MATH],[Y.MENU,X.MENU],[Y.META,X.META],[Y.MGLYPH,X.MGLYPH],[Y.MI,X.MI],[Y.MO,X.MO],[Y.MN,X.MN],[Y.MS,X.MS],[Y.MTEXT,X.MTEXT],[Y.NAV,X.NAV],[Y.NOBR,X.NOBR],[Y.NOFRAMES,X.NOFRAMES],[Y.NOEMBED,X.NOEMBED],[Y.NOSCRIPT,X.NOSCRIPT],[Y.OBJECT,X.OBJECT],[Y.OL,X.OL],[Y.OPTGROUP,X.OPTGROUP],[Y.OPTION,X.OPTION],[Y.P,X.P],[Y.PARAM,X.PARAM],[Y.PLAINTEXT,X.PLAINTEXT],[Y.PRE,X.PRE],[Y.RB,X.RB],[Y.RP,X.RP],[Y.RT,X.RT],[Y.RTC,X.RTC],[Y.RUBY,X.RUBY],[Y.S,X.S],[Y.SCRIPT,X.SCRIPT],[Y.SEARCH,X.SEARCH],[Y.SECTION,X.SECTION],[Y.SELECT,X.SELECT],[Y.SOURCE,X.SOURCE],[Y.SMALL,X.SMALL],[Y.SPAN,X.SPAN],[Y.STRIKE,X.STRIKE],[Y.STRONG,X.STRONG],[Y.STYLE,X.STYLE],[Y.SUB,X.SUB],[Y.SUMMARY,X.SUMMARY],[Y.SUP,X.SUP],[Y.TABLE,X.TABLE],[Y.TBODY,X.TBODY],[Y.TEMPLATE,X.TEMPLATE],[Y.TEXTAREA,X.TEXTAREA],[Y.TFOOT,X.TFOOT],[Y.TD,X.TD],[Y.TH,X.TH],[Y.THEAD,X.THEAD],[Y.TITLE,X.TITLE],[Y.TR,X.TR],[Y.TRACK,X.TRACK],[Y.TT,X.TT],[Y.U,X.U],[Y.UL,X.UL],[Y.SVG,X.SVG],[Y.VAR,X.VAR],[Y.WBR,X.WBR],[Y.XMP,X.XMP]]);function B5(e){return Cde.get(e)??X.UNKNOWN}var Z=X,wde={[J.HTML]:new Set([Z.ADDRESS,Z.APPLET,Z.AREA,Z.ARTICLE,Z.ASIDE,Z.BASE,Z.BASEFONT,Z.BGSOUND,Z.BLOCKQUOTE,Z.BODY,Z.BR,Z.BUTTON,Z.CAPTION,Z.CENTER,Z.COL,Z.COLGROUP,Z.DD,Z.DETAILS,Z.DIR,Z.DIV,Z.DL,Z.DT,Z.EMBED,Z.FIELDSET,Z.FIGCAPTION,Z.FIGURE,Z.FOOTER,Z.FORM,Z.FRAME,Z.FRAMESET,Z.H1,Z.H2,Z.H3,Z.H4,Z.H5,Z.H6,Z.HEAD,Z.HEADER,Z.HGROUP,Z.HR,Z.HTML,Z.IFRAME,Z.IMG,Z.INPUT,Z.LI,Z.LINK,Z.LISTING,Z.MAIN,Z.MARQUEE,Z.MENU,Z.META,Z.NAV,Z.NOEMBED,Z.NOFRAMES,Z.NOSCRIPT,Z.OBJECT,Z.OL,Z.P,Z.PARAM,Z.PLAINTEXT,Z.PRE,Z.SCRIPT,Z.SECTION,Z.SELECT,Z.SOURCE,Z.STYLE,Z.SUMMARY,Z.TABLE,Z.TBODY,Z.TD,Z.TEMPLATE,Z.TEXTAREA,Z.TFOOT,Z.TH,Z.THEAD,Z.TITLE,Z.TR,Z.TRACK,Z.UL,Z.WBR,Z.XMP]),[J.MATHML]:new Set([Z.MI,Z.MO,Z.MN,Z.MS,Z.MTEXT,Z.ANNOTATION_XML]),[J.SVG]:new Set([Z.TITLE,Z.FOREIGN_OBJECT,Z.DESC]),[J.XLINK]:new Set,[J.XML]:new Set,[J.XMLNS]:new Set},V5=new Set([Z.H1,Z.H2,Z.H3,Z.H4,Z.H5,Z.H6]);Y.STYLE,Y.SCRIPT,Y.XMP,Y.IFRAME,Y.NOEMBED,Y.NOFRAMES,Y.PLAINTEXT;var Q;(function(e){e[e.DATA=0]=`DATA`,e[e.RCDATA=1]=`RCDATA`,e[e.RAWTEXT=2]=`RAWTEXT`,e[e.SCRIPT_DATA=3]=`SCRIPT_DATA`,e[e.PLAINTEXT=4]=`PLAINTEXT`,e[e.TAG_OPEN=5]=`TAG_OPEN`,e[e.END_TAG_OPEN=6]=`END_TAG_OPEN`,e[e.TAG_NAME=7]=`TAG_NAME`,e[e.RCDATA_LESS_THAN_SIGN=8]=`RCDATA_LESS_THAN_SIGN`,e[e.RCDATA_END_TAG_OPEN=9]=`RCDATA_END_TAG_OPEN`,e[e.RCDATA_END_TAG_NAME=10]=`RCDATA_END_TAG_NAME`,e[e.RAWTEXT_LESS_THAN_SIGN=11]=`RAWTEXT_LESS_THAN_SIGN`,e[e.RAWTEXT_END_TAG_OPEN=12]=`RAWTEXT_END_TAG_OPEN`,e[e.RAWTEXT_END_TAG_NAME=13]=`RAWTEXT_END_TAG_NAME`,e[e.SCRIPT_DATA_LESS_THAN_SIGN=14]=`SCRIPT_DATA_LESS_THAN_SIGN`,e[e.SCRIPT_DATA_END_TAG_OPEN=15]=`SCRIPT_DATA_END_TAG_OPEN`,e[e.SCRIPT_DATA_END_TAG_NAME=16]=`SCRIPT_DATA_END_TAG_NAME`,e[e.SCRIPT_DATA_ESCAPE_START=17]=`SCRIPT_DATA_ESCAPE_START`,e[e.SCRIPT_DATA_ESCAPE_START_DASH=18]=`SCRIPT_DATA_ESCAPE_START_DASH`,e[e.SCRIPT_DATA_ESCAPED=19]=`SCRIPT_DATA_ESCAPED`,e[e.SCRIPT_DATA_ESCAPED_DASH=20]=`SCRIPT_DATA_ESCAPED_DASH`,e[e.SCRIPT_DATA_ESCAPED_DASH_DASH=21]=`SCRIPT_DATA_ESCAPED_DASH_DASH`,e[e.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN=22]=`SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN`,e[e.SCRIPT_DATA_ESCAPED_END_TAG_OPEN=23]=`SCRIPT_DATA_ESCAPED_END_TAG_OPEN`,e[e.SCRIPT_DATA_ESCAPED_END_TAG_NAME=24]=`SCRIPT_DATA_ESCAPED_END_TAG_NAME`,e[e.SCRIPT_DATA_DOUBLE_ESCAPE_START=25]=`SCRIPT_DATA_DOUBLE_ESCAPE_START`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED=26]=`SCRIPT_DATA_DOUBLE_ESCAPED`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH=27]=`SCRIPT_DATA_DOUBLE_ESCAPED_DASH`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH=28]=`SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN=29]=`SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN`,e[e.SCRIPT_DATA_DOUBLE_ESCAPE_END=30]=`SCRIPT_DATA_DOUBLE_ESCAPE_END`,e[e.BEFORE_ATTRIBUTE_NAME=31]=`BEFORE_ATTRIBUTE_NAME`,e[e.ATTRIBUTE_NAME=32]=`ATTRIBUTE_NAME`,e[e.AFTER_ATTRIBUTE_NAME=33]=`AFTER_ATTRIBUTE_NAME`,e[e.BEFORE_ATTRIBUTE_VALUE=34]=`BEFORE_ATTRIBUTE_VALUE`,e[e.ATTRIBUTE_VALUE_DOUBLE_QUOTED=35]=`ATTRIBUTE_VALUE_DOUBLE_QUOTED`,e[e.ATTRIBUTE_VALUE_SINGLE_QUOTED=36]=`ATTRIBUTE_VALUE_SINGLE_QUOTED`,e[e.ATTRIBUTE_VALUE_UNQUOTED=37]=`ATTRIBUTE_VALUE_UNQUOTED`,e[e.AFTER_ATTRIBUTE_VALUE_QUOTED=38]=`AFTER_ATTRIBUTE_VALUE_QUOTED`,e[e.SELF_CLOSING_START_TAG=39]=`SELF_CLOSING_START_TAG`,e[e.BOGUS_COMMENT=40]=`BOGUS_COMMENT`,e[e.MARKUP_DECLARATION_OPEN=41]=`MARKUP_DECLARATION_OPEN`,e[e.COMMENT_START=42]=`COMMENT_START`,e[e.COMMENT_START_DASH=43]=`COMMENT_START_DASH`,e[e.COMMENT=44]=`COMMENT`,e[e.COMMENT_LESS_THAN_SIGN=45]=`COMMENT_LESS_THAN_SIGN`,e[e.COMMENT_LESS_THAN_SIGN_BANG=46]=`COMMENT_LESS_THAN_SIGN_BANG`,e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH=47]=`COMMENT_LESS_THAN_SIGN_BANG_DASH`,e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH=48]=`COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH`,e[e.COMMENT_END_DASH=49]=`COMMENT_END_DASH`,e[e.COMMENT_END=50]=`COMMENT_END`,e[e.COMMENT_END_BANG=51]=`COMMENT_END_BANG`,e[e.DOCTYPE=52]=`DOCTYPE`,e[e.BEFORE_DOCTYPE_NAME=53]=`BEFORE_DOCTYPE_NAME`,e[e.DOCTYPE_NAME=54]=`DOCTYPE_NAME`,e[e.AFTER_DOCTYPE_NAME=55]=`AFTER_DOCTYPE_NAME`,e[e.AFTER_DOCTYPE_PUBLIC_KEYWORD=56]=`AFTER_DOCTYPE_PUBLIC_KEYWORD`,e[e.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER=57]=`BEFORE_DOCTYPE_PUBLIC_IDENTIFIER`,e[e.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED=58]=`DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED`,e[e.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED=59]=`DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED`,e[e.AFTER_DOCTYPE_PUBLIC_IDENTIFIER=60]=`AFTER_DOCTYPE_PUBLIC_IDENTIFIER`,e[e.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS=61]=`BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS`,e[e.AFTER_DOCTYPE_SYSTEM_KEYWORD=62]=`AFTER_DOCTYPE_SYSTEM_KEYWORD`,e[e.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER=63]=`BEFORE_DOCTYPE_SYSTEM_IDENTIFIER`,e[e.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED=64]=`DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED`,e[e.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED=65]=`DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED`,e[e.AFTER_DOCTYPE_SYSTEM_IDENTIFIER=66]=`AFTER_DOCTYPE_SYSTEM_IDENTIFIER`,e[e.BOGUS_DOCTYPE=67]=`BOGUS_DOCTYPE`,e[e.CDATA_SECTION=68]=`CDATA_SECTION`,e[e.CDATA_SECTION_BRACKET=69]=`CDATA_SECTION_BRACKET`,e[e.CDATA_SECTION_END=70]=`CDATA_SECTION_END`,e[e.CHARACTER_REFERENCE=71]=`CHARACTER_REFERENCE`,e[e.AMBIGUOUS_AMPERSAND=72]=`AMBIGUOUS_AMPERSAND`})(Q||={});var H5={DATA:Q.DATA,RCDATA:Q.RCDATA,RAWTEXT:Q.RAWTEXT,SCRIPT_DATA:Q.SCRIPT_DATA,PLAINTEXT:Q.PLAINTEXT,CDATA_SECTION:Q.CDATA_SECTION};function Tde(e){return e>=K.DIGIT_0&&e<=K.DIGIT_9}function U5(e){return e>=K.LATIN_CAPITAL_A&&e<=K.LATIN_CAPITAL_Z}function Ede(e){return e>=K.LATIN_SMALL_A&&e<=K.LATIN_SMALL_Z}function W5(e){return Ede(e)||U5(e)}function G5(e){return W5(e)||Tde(e)}function K5(e){return e+32}function q5(e){return e===K.SPACE||e===K.LINE_FEED||e===K.TABULATION||e===K.FORM_FEED}function J5(e){return q5(e)||e===K.SOLIDUS||e===K.GREATER_THAN_SIGN}function Dde(e){return e===K.NULL?q.nullCharacterReference:e>1114111?q.characterReferenceOutsideUnicodeRange:O5(e)?q.surrogateCharacterReference:A5(e)?q.noncharacterCharacterReference:k5(e)||e===K.CARRIAGE_RETURN?q.controlCharacterReference:null}var Ode=class{constructor(e,t){this.options=e,this.handler=t,this.paused=!1,this.inLoop=!1,this.inForeignNode=!1,this.lastStartTagName=``,this.active=!1,this.state=Q.DATA,this.returnState=Q.DATA,this.entityStartPos=0,this.consumedAfterSnapshot=-1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr={name:``,value:``},this.preprocessor=new pde(t),this.currentLocation=this.getCurrentLocation(-1),this.entityDecoder=new xde(mde,(e,t)=>{this.preprocessor.pos=this.entityStartPos+t-1,this._flushCodePointConsumedAsCharacterReference(e)},t.onParseError?{missingSemicolonAfterCharacterReference:()=>{this._err(q.missingSemicolonAfterCharacterReference,1)},absenceOfDigitsInNumericCharacterReference:e=>{this._err(q.absenceOfDigitsInNumericCharacterReference,this.entityStartPos-this.preprocessor.pos+e)},validateNumericCharacterReference:e=>{let t=Dde(e);t&&this._err(t,1)}}:void 0)}_err(e,t=0){var n,r;(r=(n=this.handler).onParseError)==null||r.call(n,this.preprocessor.getError(e,t))}getCurrentLocation(e){return this.options.sourceCodeLocationInfo?{startLine:this.preprocessor.line,startCol:this.preprocessor.col-e,startOffset:this.preprocessor.offset-e,endLine:-1,endCol:-1,endOffset:-1}:null}_runParsingLoop(){if(!this.inLoop){for(this.inLoop=!0;this.active&&!this.paused;){this.consumedAfterSnapshot=0;let e=this._consume();this._ensureHibernation()||this._callState(e)}this.inLoop=!1}}pause(){this.paused=!0}resume(e){if(!this.paused)throw Error(`Parser was already resumed`);this.paused=!1,!this.inLoop&&(this._runParsingLoop(),this.paused||e?.())}write(e,t,n){this.active=!0,this.preprocessor.write(e,t),this._runParsingLoop(),this.paused||n?.()}insertHtmlAtCurrentPos(e){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(e),this._runParsingLoop()}_ensureHibernation(){return this.preprocessor.endOfChunkHit?(this.preprocessor.retreat(this.consumedAfterSnapshot),this.consumedAfterSnapshot=0,this.active=!1,!0):!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_advanceBy(e){this.consumedAfterSnapshot+=e;for(let t=0;t0&&this._err(q.endTagWithAttributes),e.selfClosing&&this._err(q.endTagWithTrailingSolidus),this.handler.onEndTag(e)),this.preprocessor.dropParsedChunk()}emitCurrentComment(e){this.prepareToken(e),this.handler.onComment(e),this.preprocessor.dropParsedChunk()}emitCurrentDoctype(e){this.prepareToken(e),this.handler.onDoctype(e),this.preprocessor.dropParsedChunk()}_emitCurrentCharacterToken(e){if(this.currentCharacterToken){switch(e&&this.currentCharacterToken.location&&(this.currentCharacterToken.location.endLine=e.startLine,this.currentCharacterToken.location.endCol=e.startCol,this.currentCharacterToken.location.endOffset=e.startOffset),this.currentCharacterToken.type){case j5.CHARACTER:this.handler.onCharacter(this.currentCharacterToken);break;case j5.NULL_CHARACTER:this.handler.onNullCharacter(this.currentCharacterToken);break;case j5.WHITESPACE_CHARACTER:this.handler.onWhitespaceCharacter(this.currentCharacterToken)}this.currentCharacterToken=null}}_emitEOFToken(){let e=this.getCurrentLocation(0);e&&(e.endLine=e.startLine,e.endCol=e.startCol,e.endOffset=e.startOffset),this._emitCurrentCharacterToken(e),this.handler.onEof({type:j5.EOF,location:e}),this.active=!1}_appendCharToCurrentCharacterToken(e,t){if(this.currentCharacterToken){if(this.currentCharacterToken.type===e){this.currentCharacterToken.chars+=t;return}this.currentLocation=this.getCurrentLocation(0),this._emitCurrentCharacterToken(this.currentLocation),this.preprocessor.dropParsedChunk()}this._createCharacterToken(e,t)}_emitCodePoint(e){let t=q5(e)?j5.WHITESPACE_CHARACTER:e===K.NULL?j5.NULL_CHARACTER:j5.CHARACTER;this._appendCharToCurrentCharacterToken(t,String.fromCodePoint(e))}_emitChars(e){this._appendCharToCurrentCharacterToken(j5.CHARACTER,e)}_startCharacterReference(){this.returnState=this.state,this.state=Q.CHARACTER_REFERENCE,this.entityStartPos=this.preprocessor.pos,this.entityDecoder.startEntity(this._isCharacterReferenceInAttribute()?L5.Attribute:L5.Legacy)}_isCharacterReferenceInAttribute(){return this.returnState===Q.ATTRIBUTE_VALUE_DOUBLE_QUOTED||this.returnState===Q.ATTRIBUTE_VALUE_SINGLE_QUOTED||this.returnState===Q.ATTRIBUTE_VALUE_UNQUOTED}_flushCodePointConsumedAsCharacterReference(e){this._isCharacterReferenceInAttribute()?this.currentAttr.value+=String.fromCodePoint(e):this._emitCodePoint(e)}_callState(e){switch(this.state){case Q.DATA:this._stateData(e);break;case Q.RCDATA:this._stateRcdata(e);break;case Q.RAWTEXT:this._stateRawtext(e);break;case Q.SCRIPT_DATA:this._stateScriptData(e);break;case Q.PLAINTEXT:this._statePlaintext(e);break;case Q.TAG_OPEN:this._stateTagOpen(e);break;case Q.END_TAG_OPEN:this._stateEndTagOpen(e);break;case Q.TAG_NAME:this._stateTagName(e);break;case Q.RCDATA_LESS_THAN_SIGN:this._stateRcdataLessThanSign(e);break;case Q.RCDATA_END_TAG_OPEN:this._stateRcdataEndTagOpen(e);break;case Q.RCDATA_END_TAG_NAME:this._stateRcdataEndTagName(e);break;case Q.RAWTEXT_LESS_THAN_SIGN:this._stateRawtextLessThanSign(e);break;case Q.RAWTEXT_END_TAG_OPEN:this._stateRawtextEndTagOpen(e);break;case Q.RAWTEXT_END_TAG_NAME:this._stateRawtextEndTagName(e);break;case Q.SCRIPT_DATA_LESS_THAN_SIGN:this._stateScriptDataLessThanSign(e);break;case Q.SCRIPT_DATA_END_TAG_OPEN:this._stateScriptDataEndTagOpen(e);break;case Q.SCRIPT_DATA_END_TAG_NAME:this._stateScriptDataEndTagName(e);break;case Q.SCRIPT_DATA_ESCAPE_START:this._stateScriptDataEscapeStart(e);break;case Q.SCRIPT_DATA_ESCAPE_START_DASH:this._stateScriptDataEscapeStartDash(e);break;case Q.SCRIPT_DATA_ESCAPED:this._stateScriptDataEscaped(e);break;case Q.SCRIPT_DATA_ESCAPED_DASH:this._stateScriptDataEscapedDash(e);break;case Q.SCRIPT_DATA_ESCAPED_DASH_DASH:this._stateScriptDataEscapedDashDash(e);break;case Q.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN:this._stateScriptDataEscapedLessThanSign(e);break;case Q.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:this._stateScriptDataEscapedEndTagOpen(e);break;case Q.SCRIPT_DATA_ESCAPED_END_TAG_NAME:this._stateScriptDataEscapedEndTagName(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPE_START:this._stateScriptDataDoubleEscapeStart(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED:this._stateScriptDataDoubleEscaped(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED_DASH:this._stateScriptDataDoubleEscapedDash(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH:this._stateScriptDataDoubleEscapedDashDash(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN:this._stateScriptDataDoubleEscapedLessThanSign(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPE_END:this._stateScriptDataDoubleEscapeEnd(e);break;case Q.BEFORE_ATTRIBUTE_NAME:this._stateBeforeAttributeName(e);break;case Q.ATTRIBUTE_NAME:this._stateAttributeName(e);break;case Q.AFTER_ATTRIBUTE_NAME:this._stateAfterAttributeName(e);break;case Q.BEFORE_ATTRIBUTE_VALUE:this._stateBeforeAttributeValue(e);break;case Q.ATTRIBUTE_VALUE_DOUBLE_QUOTED:this._stateAttributeValueDoubleQuoted(e);break;case Q.ATTRIBUTE_VALUE_SINGLE_QUOTED:this._stateAttributeValueSingleQuoted(e);break;case Q.ATTRIBUTE_VALUE_UNQUOTED:this._stateAttributeValueUnquoted(e);break;case Q.AFTER_ATTRIBUTE_VALUE_QUOTED:this._stateAfterAttributeValueQuoted(e);break;case Q.SELF_CLOSING_START_TAG:this._stateSelfClosingStartTag(e);break;case Q.BOGUS_COMMENT:this._stateBogusComment(e);break;case Q.MARKUP_DECLARATION_OPEN:this._stateMarkupDeclarationOpen(e);break;case Q.COMMENT_START:this._stateCommentStart(e);break;case Q.COMMENT_START_DASH:this._stateCommentStartDash(e);break;case Q.COMMENT:this._stateComment(e);break;case Q.COMMENT_LESS_THAN_SIGN:this._stateCommentLessThanSign(e);break;case Q.COMMENT_LESS_THAN_SIGN_BANG:this._stateCommentLessThanSignBang(e);break;case Q.COMMENT_LESS_THAN_SIGN_BANG_DASH:this._stateCommentLessThanSignBangDash(e);break;case Q.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:this._stateCommentLessThanSignBangDashDash(e);break;case Q.COMMENT_END_DASH:this._stateCommentEndDash(e);break;case Q.COMMENT_END:this._stateCommentEnd(e);break;case Q.COMMENT_END_BANG:this._stateCommentEndBang(e);break;case Q.DOCTYPE:this._stateDoctype(e);break;case Q.BEFORE_DOCTYPE_NAME:this._stateBeforeDoctypeName(e);break;case Q.DOCTYPE_NAME:this._stateDoctypeName(e);break;case Q.AFTER_DOCTYPE_NAME:this._stateAfterDoctypeName(e);break;case Q.AFTER_DOCTYPE_PUBLIC_KEYWORD:this._stateAfterDoctypePublicKeyword(e);break;case Q.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER:this._stateBeforeDoctypePublicIdentifier(e);break;case Q.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED:this._stateDoctypePublicIdentifierDoubleQuoted(e);break;case Q.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED:this._stateDoctypePublicIdentifierSingleQuoted(e);break;case Q.AFTER_DOCTYPE_PUBLIC_IDENTIFIER:this._stateAfterDoctypePublicIdentifier(e);break;case Q.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS:this._stateBetweenDoctypePublicAndSystemIdentifiers(e);break;case Q.AFTER_DOCTYPE_SYSTEM_KEYWORD:this._stateAfterDoctypeSystemKeyword(e);break;case Q.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER:this._stateBeforeDoctypeSystemIdentifier(e);break;case Q.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED:this._stateDoctypeSystemIdentifierDoubleQuoted(e);break;case Q.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED:this._stateDoctypeSystemIdentifierSingleQuoted(e);break;case Q.AFTER_DOCTYPE_SYSTEM_IDENTIFIER:this._stateAfterDoctypeSystemIdentifier(e);break;case Q.BOGUS_DOCTYPE:this._stateBogusDoctype(e);break;case Q.CDATA_SECTION:this._stateCdataSection(e);break;case Q.CDATA_SECTION_BRACKET:this._stateCdataSectionBracket(e);break;case Q.CDATA_SECTION_END:this._stateCdataSectionEnd(e);break;case Q.CHARACTER_REFERENCE:this._stateCharacterReference();break;case Q.AMBIGUOUS_AMPERSAND:this._stateAmbiguousAmpersand(e);break;default:throw Error(`Unknown state`)}}_stateData(e){switch(e){case K.LESS_THAN_SIGN:this.state=Q.TAG_OPEN;break;case K.AMPERSAND:this._startCharacterReference();break;case K.NULL:this._err(q.unexpectedNullCharacter),this._emitCodePoint(e);break;case K.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateRcdata(e){switch(e){case K.AMPERSAND:this._startCharacterReference();break;case K.LESS_THAN_SIGN:this.state=Q.RCDATA_LESS_THAN_SIGN;break;case K.NULL:this._err(q.unexpectedNullCharacter),this._emitChars(`�`);break;case K.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateRawtext(e){switch(e){case K.LESS_THAN_SIGN:this.state=Q.RAWTEXT_LESS_THAN_SIGN;break;case K.NULL:this._err(q.unexpectedNullCharacter),this._emitChars(`�`);break;case K.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateScriptData(e){switch(e){case K.LESS_THAN_SIGN:this.state=Q.SCRIPT_DATA_LESS_THAN_SIGN;break;case K.NULL:this._err(q.unexpectedNullCharacter),this._emitChars(`�`);break;case K.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_statePlaintext(e){switch(e){case K.NULL:this._err(q.unexpectedNullCharacter),this._emitChars(`�`);break;case K.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateTagOpen(e){if(W5(e))this._createStartTagToken(),this.state=Q.TAG_NAME,this._stateTagName(e);else switch(e){case K.EXCLAMATION_MARK:this.state=Q.MARKUP_DECLARATION_OPEN;break;case K.SOLIDUS:this.state=Q.END_TAG_OPEN;break;case K.QUESTION_MARK:this._err(q.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(1),this.state=Q.BOGUS_COMMENT,this._stateBogusComment(e);break;case K.EOF:this._err(q.eofBeforeTagName),this._emitChars(`<`),this._emitEOFToken();break;default:this._err(q.invalidFirstCharacterOfTagName),this._emitChars(`<`),this.state=Q.DATA,this._stateData(e)}}_stateEndTagOpen(e){if(W5(e))this._createEndTagToken(),this.state=Q.TAG_NAME,this._stateTagName(e);else switch(e){case K.GREATER_THAN_SIGN:this._err(q.missingEndTagName),this.state=Q.DATA;break;case K.EOF:this._err(q.eofBeforeTagName),this._emitChars(``);break;case K.NULL:this._err(q.unexpectedNullCharacter),this.state=Q.SCRIPT_DATA_ESCAPED,this._emitChars(`�`);break;case K.EOF:this._err(q.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break;default:this.state=Q.SCRIPT_DATA_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataEscapedLessThanSign(e){e===K.SOLIDUS?this.state=Q.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:W5(e)?(this._emitChars(`<`),this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPE_START,this._stateScriptDataDoubleEscapeStart(e)):(this._emitChars(`<`),this.state=Q.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(e))}_stateScriptDataEscapedEndTagOpen(e){W5(e)?(this.state=Q.SCRIPT_DATA_ESCAPED_END_TAG_NAME,this._stateScriptDataEscapedEndTagName(e)):(this._emitChars(``);break;case K.NULL:this._err(q.unexpectedNullCharacter),this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(`�`);break;case K.EOF:this._err(q.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break;default:this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataDoubleEscapedLessThanSign(e){e===K.SOLIDUS?(this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPE_END,this._emitChars(`/`)):(this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(e))}_stateScriptDataDoubleEscapeEnd(e){if(this.preprocessor.startsWith(D5.SCRIPT,!1)&&J5(this.preprocessor.peek(D5.SCRIPT.length))){this._emitCodePoint(e);for(let e=0;e0&&this._isInTemplate()&&this.tmplCount--,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(e,!0)}replace(e,t){let n=this._indexOf(e);this.items[n]=t,n===this.stackTop&&(this.current=t)}insertAfter(e,t,n){let r=this._indexOf(e)+1;this.items.splice(r,0,t),this.tagIDs.splice(r,0,n),this.stackTop++,r===this.stackTop&&this._updateCurrentElement(),this.current&&this.currentTagId!==void 0&&this.handler.onItemPush(this.current,this.currentTagId,r===this.stackTop)}popUntilTagNamePopped(e){let t=this.stackTop+1;do t=this.tagIDs.lastIndexOf(e,t-1);while(t>0&&this.treeAdapter.getNamespaceURI(this.items[t])!==J.HTML);this.shortenToLength(Math.max(t,0))}shortenToLength(e){for(;this.stackTop>=e;){let t=this.current;this.tmplCount>0&&this._isInTemplate()&&--this.tmplCount,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(t,this.stackTop=0;n--)if(e.has(this.tagIDs[n])&&this.treeAdapter.getNamespaceURI(this.items[n])===t)return n;return-1}clearBackTo(e,t){let n=this._indexOfTagNames(e,t);this.shortenToLength(n+1)}clearBackToTableContext(){this.clearBackTo(Nde,J.HTML)}clearBackToTableBodyContext(){this.clearBackTo(Mde,J.HTML)}clearBackToTableRowContext(){this.clearBackTo(jde,J.HTML)}remove(e){let t=this._indexOf(e);t>=0&&(t===this.stackTop?this.pop():(this.items.splice(t,1),this.tagIDs.splice(t,1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(e,!1)))}tryPeekProperlyNestedBodyElement(){return this.stackTop>=1&&this.tagIDs[1]===X.BODY?this.items[1]:null}contains(e){return this._indexOf(e)>-1}getCommonAncestor(e){let t=this._indexOf(e)-1;return t>=0?this.items[t]:null}isRootHtmlElementCurrent(){return this.stackTop===0&&this.tagIDs[0]===X.HTML}hasInDynamicScope(e,t){for(let n=this.stackTop;n>=0;n--){let r=this.tagIDs[n];switch(this.treeAdapter.getNamespaceURI(this.items[n])){case J.HTML:if(r===e)return!0;if(t.has(r))return!1;break;case J.SVG:if($5.has(r))return!1;break;case J.MATHML:if(Q5.has(r))return!1}}return!0}hasInScope(e){return this.hasInDynamicScope(e,Z5)}hasInListItemScope(e){return this.hasInDynamicScope(e,kde)}hasInButtonScope(e){return this.hasInDynamicScope(e,Ade)}hasNumberedHeaderInScope(){for(let e=this.stackTop;e>=0;e--){let t=this.tagIDs[e];switch(this.treeAdapter.getNamespaceURI(this.items[e])){case J.HTML:if(V5.has(t))return!0;if(Z5.has(t))return!1;break;case J.SVG:if($5.has(t))return!1;break;case J.MATHML:if(Q5.has(t))return!1}}return!0}hasInTableScope(e){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===J.HTML)switch(this.tagIDs[t]){case e:return!0;case X.TABLE:case X.HTML:return!1}return!0}hasTableBodyContextInTableScope(){for(let e=this.stackTop;e>=0;e--)if(this.treeAdapter.getNamespaceURI(this.items[e])===J.HTML)switch(this.tagIDs[e]){case X.TBODY:case X.THEAD:case X.TFOOT:return!0;case X.TABLE:case X.HTML:return!1}return!0}hasInSelectScope(e){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===J.HTML)switch(this.tagIDs[t]){case e:return!0;case X.OPTION:case X.OPTGROUP:break;default:return!1}return!0}generateImpliedEndTags(){for(;this.currentTagId!==void 0&&Y5.has(this.currentTagId);)this.pop()}generateImpliedEndTagsThoroughly(){for(;this.currentTagId!==void 0&&X5.has(this.currentTagId);)this.pop()}generateImpliedEndTagsWithExclusion(e){for(;this.currentTagId!==void 0&&this.currentTagId!==e&&X5.has(this.currentTagId);)this.pop()}},e7=3,t7;(function(e){e[e.Marker=0]=`Marker`,e[e.Element=1]=`Element`})(t7||={});var n7={type:t7.Marker},Ide=class{constructor(e){this.treeAdapter=e,this.entries=[],this.bookmark=null}_getNoahArkConditionCandidates(e,t){let n=[],r=t.length,i=this.treeAdapter.getTagName(e),a=this.treeAdapter.getNamespaceURI(e);for(let e=0;e[e.name,e.value])),i=0;for(let e=0;er.get(e.name)===e.value)&&(i+=1,i>=e7&&this.entries.splice(t.idx,1))}}insertMarker(){this.entries.unshift(n7)}pushElement(e,t){this._ensureNoahArkCondition(e),this.entries.unshift({type:t7.Element,element:e,token:t})}insertElementAfterBookmark(e,t){let n=this.entries.indexOf(this.bookmark);this.entries.splice(n,0,{type:t7.Element,element:e,token:t})}removeEntry(e){let t=this.entries.indexOf(e);t!==-1&&this.entries.splice(t,1)}clearToLastMarker(){let e=this.entries.indexOf(n7);e===-1?this.entries.length=0:this.entries.splice(0,e+1)}getElementEntryInScopeWithTagName(e){let t=this.entries.find(t=>t.type===t7.Marker||this.treeAdapter.getTagName(t.element)===e);return t&&t.type===t7.Element?t:null}getElementEntry(e){return this.entries.find(t=>t.type===t7.Element&&t.element===e)}},r7={createDocument(){return{nodeName:`#document`,mode:z5.NO_QUIRKS,childNodes:[]}},createDocumentFragment(){return{nodeName:`#document-fragment`,childNodes:[]}},createElement(e,t,n){return{nodeName:e,tagName:e,attrs:n,namespaceURI:t,childNodes:[],parentNode:null}},createCommentNode(e){return{nodeName:`#comment`,data:e,parentNode:null}},createTextNode(e){return{nodeName:`#text`,value:e,parentNode:null}},appendChild(e,t){e.childNodes.push(t),t.parentNode=e},insertBefore(e,t,n){let r=e.childNodes.indexOf(n);e.childNodes.splice(r,0,t),t.parentNode=e},setTemplateContent(e,t){e.content=t},getTemplateContent(e){return e.content},setDocumentType(e,t,n,r){let i=e.childNodes.find(e=>e.nodeName===`#documentType`);if(i)i.name=t,i.publicId=n,i.systemId=r;else{let i={nodeName:`#documentType`,name:t,publicId:n,systemId:r,parentNode:null};r7.appendChild(e,i)}},setDocumentMode(e,t){e.mode=t},getDocumentMode(e){return e.mode},detachNode(e){if(e.parentNode){let t=e.parentNode.childNodes.indexOf(e);e.parentNode.childNodes.splice(t,1),e.parentNode=null}},insertText(e,t){if(e.childNodes.length>0){let n=e.childNodes[e.childNodes.length-1];if(r7.isTextNode(n)){n.value+=t;return}}r7.appendChild(e,r7.createTextNode(t))},insertTextBefore(e,t,n){let r=e.childNodes[e.childNodes.indexOf(n)-1];r&&r7.isTextNode(r)?r.value+=t:r7.insertBefore(e,r7.createTextNode(t),n)},adoptAttributes(e,t){let n=new Set(e.attrs.map(e=>e.name));for(let r=0;re.startsWith(t))}function Hde(e){return e.name===i7&&e.publicId===null&&(e.systemId===null||e.systemId===Lde)}function Ude(e){if(e.name!==i7)return z5.QUIRKS;let{systemId:t}=e;if(t&&t.toLowerCase()===Rde)return z5.QUIRKS;let{publicId:n}=e;if(n!==null){if(n=n.toLowerCase(),Bde.has(n))return z5.QUIRKS;let e=t===null?zde:a7;if(s7(n,e))return z5.QUIRKS;if(e=t===null?o7:Vde,s7(n,e))return z5.LIMITED_QUIRKS}return z5.NO_QUIRKS}var c7={TEXT_HTML:`text/html`,APPLICATION_XML:`application/xhtml+xml`},Wde=`definitionurl`,Gde=`definitionURL`,Kde=new Map(`attributeName.attributeType.baseFrequency.baseProfile.calcMode.clipPathUnits.diffuseConstant.edgeMode.filterUnits.glyphRef.gradientTransform.gradientUnits.kernelMatrix.kernelUnitLength.keyPoints.keySplines.keyTimes.lengthAdjust.limitingConeAngle.markerHeight.markerUnits.markerWidth.maskContentUnits.maskUnits.numOctaves.pathLength.patternContentUnits.patternTransform.patternUnits.pointsAtX.pointsAtY.pointsAtZ.preserveAlpha.preserveAspectRatio.primitiveUnits.refX.refY.repeatCount.repeatDur.requiredExtensions.requiredFeatures.specularConstant.specularExponent.spreadMethod.startOffset.stdDeviation.stitchTiles.surfaceScale.systemLanguage.tableValues.targetX.targetY.textLength.viewBox.viewTarget.xChannelSelector.yChannelSelector.zoomAndPan`.split(`.`).map(e=>[e.toLowerCase(),e])),qde=new Map([[`xlink:actuate`,{prefix:`xlink`,name:`actuate`,namespace:J.XLINK}],[`xlink:arcrole`,{prefix:`xlink`,name:`arcrole`,namespace:J.XLINK}],[`xlink:href`,{prefix:`xlink`,name:`href`,namespace:J.XLINK}],[`xlink:role`,{prefix:`xlink`,name:`role`,namespace:J.XLINK}],[`xlink:show`,{prefix:`xlink`,name:`show`,namespace:J.XLINK}],[`xlink:title`,{prefix:`xlink`,name:`title`,namespace:J.XLINK}],[`xlink:type`,{prefix:`xlink`,name:`type`,namespace:J.XLINK}],[`xml:lang`,{prefix:`xml`,name:`lang`,namespace:J.XML}],[`xml:space`,{prefix:`xml`,name:`space`,namespace:J.XML}],[`xmlns`,{prefix:``,name:`xmlns`,namespace:J.XMLNS}],[`xmlns:xlink`,{prefix:`xmlns`,name:`xlink`,namespace:J.XMLNS}]]),Jde=new Map(`altGlyph.altGlyphDef.altGlyphItem.animateColor.animateMotion.animateTransform.clipPath.feBlend.feColorMatrix.feComponentTransfer.feComposite.feConvolveMatrix.feDiffuseLighting.feDisplacementMap.feDistantLight.feFlood.feFuncA.feFuncB.feFuncG.feFuncR.feGaussianBlur.feImage.feMerge.feMergeNode.feMorphology.feOffset.fePointLight.feSpecularLighting.feSpotLight.feTile.feTurbulence.foreignObject.glyphRef.linearGradient.radialGradient.textPath`.split(`.`).map(e=>[e.toLowerCase(),e])),Yde=new Set([X.B,X.BIG,X.BLOCKQUOTE,X.BODY,X.BR,X.CENTER,X.CODE,X.DD,X.DIV,X.DL,X.DT,X.EM,X.EMBED,X.H1,X.H2,X.H3,X.H4,X.H5,X.H6,X.HEAD,X.HR,X.I,X.IMG,X.LI,X.LISTING,X.MENU,X.META,X.NOBR,X.OL,X.P,X.PRE,X.RUBY,X.S,X.SMALL,X.SPAN,X.STRONG,X.STRIKE,X.SUB,X.SUP,X.TABLE,X.TT,X.U,X.UL,X.VAR]);function Xde(e){let t=e.tagID;return t===X.FONT&&e.attrs.some(({name:e})=>e===R5.COLOR||e===R5.SIZE||e===R5.FACE)||Yde.has(t)}function l7(e){for(let t=0;t0&&this._setContextModes(e,t)}onItemPop(e,t){var n,r;if(this.options.sourceCodeLocationInfo&&this._setEndLocation(e,this.currentToken),(r=(n=this.treeAdapter).onItemPop)==null||r.call(n,e,this.openElements.current),t){let e,t;this.openElements.stackTop===0&&this.fragmentContext?(e=this.fragmentContext,t=this.fragmentContextID):{current:e,currentTagId:t}=this.openElements,this._setContextModes(e,t)}}_setContextModes(e,t){let n=e===this.document||e&&this.treeAdapter.getNamespaceURI(e)===J.HTML;this.currentNotInHTML=!n,this.tokenizer.inForeignNode=!n&&e!==void 0&&t!==void 0&&!this._isIntegrationPoint(t,e)}_switchToTextParsing(e,t){this._insertElement(e,J.HTML),this.tokenizer.state=t,this.originalInsertionMode=this.insertionMode,this.insertionMode=$.TEXT}switchToPlaintextParsing(){this.insertionMode=$.TEXT,this.originalInsertionMode=$.IN_BODY,this.tokenizer.state=H5.PLAINTEXT}_getAdjustedCurrentElement(){return this.openElements.stackTop===0&&this.fragmentContext?this.fragmentContext:this.openElements.current}_findFormInFragmentContext(){let e=this.fragmentContext;for(;e;){if(this.treeAdapter.getTagName(e)===Y.FORM){this.formElement=e;break}e=this.treeAdapter.getParentNode(e)}}_initTokenizerForFragmentParsing(){if(!(!this.fragmentContext||this.treeAdapter.getNamespaceURI(this.fragmentContext)!==J.HTML))switch(this.fragmentContextID){case X.TITLE:case X.TEXTAREA:this.tokenizer.state=H5.RCDATA;break;case X.STYLE:case X.XMP:case X.IFRAME:case X.NOEMBED:case X.NOFRAMES:case X.NOSCRIPT:this.tokenizer.state=H5.RAWTEXT;break;case X.SCRIPT:this.tokenizer.state=H5.SCRIPT_DATA;break;case X.PLAINTEXT:this.tokenizer.state=H5.PLAINTEXT}}_setDocumentType(e){let t=e.name||``,n=e.publicId||``,r=e.systemId||``;if(this.treeAdapter.setDocumentType(this.document,t,n,r),e.location){let t=this.treeAdapter.getChildNodes(this.document).find(e=>this.treeAdapter.isDocumentTypeNode(e));t&&this.treeAdapter.setNodeSourceCodeLocation(t,e.location)}}_attachElementToTree(e,t){if(this.options.sourceCodeLocationInfo){let n=t&&{...t,startTag:t};this.treeAdapter.setNodeSourceCodeLocation(e,n)}if(this._shouldFosterParentOnInsertion())this._fosterParentElement(e);else{let t=this.openElements.currentTmplContentOrNode;this.treeAdapter.appendChild(t??this.document,e)}}_appendElement(e,t){let n=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(n,e.location)}_insertElement(e,t){let n=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(n,e.location),this.openElements.push(n,e.tagID)}_insertFakeElement(e,t){let n=this.treeAdapter.createElement(e,J.HTML,[]);this._attachElementToTree(n,null),this.openElements.push(n,t)}_insertTemplate(e){let t=this.treeAdapter.createElement(e.tagName,J.HTML,e.attrs),n=this.treeAdapter.createDocumentFragment();this.treeAdapter.setTemplateContent(t,n),this._attachElementToTree(t,e.location),this.openElements.push(t,e.tagID),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(n,null)}_insertFakeRootElement(){let e=this.treeAdapter.createElement(Y.HTML,J.HTML,[]);this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(e,null),this.treeAdapter.appendChild(this.openElements.current,e),this.openElements.push(e,X.HTML)}_appendCommentNode(e,t){let n=this.treeAdapter.createCommentNode(e.data);this.treeAdapter.appendChild(t,n),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(n,e.location)}_insertCharacters(e){let t,n;if(this._shouldFosterParentOnInsertion()?({parent:t,beforeElement:n}=this._findFosterParentingLocation(),n?this.treeAdapter.insertTextBefore(t,e.chars,n):this.treeAdapter.insertText(t,e.chars)):(t=this.openElements.currentTmplContentOrNode,this.treeAdapter.insertText(t,e.chars)),!e.location)return;let r=this.treeAdapter.getChildNodes(t),i=r[(n?r.lastIndexOf(n):r.length)-1];if(this.treeAdapter.getNodeSourceCodeLocation(i)){let{endLine:t,endCol:n,endOffset:r}=e.location;this.treeAdapter.updateNodeSourceCodeLocation(i,{endLine:t,endCol:n,endOffset:r})}else this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(i,e.location)}_adoptNodes(e,t){for(let n=this.treeAdapter.getFirstChild(e);n;n=this.treeAdapter.getFirstChild(e))this.treeAdapter.detachNode(n),this.treeAdapter.appendChild(t,n)}_setEndLocation(e,t){if(this.treeAdapter.getNodeSourceCodeLocation(e)&&t.location){let n=t.location,r=this.treeAdapter.getTagName(e),i=t.type===j5.END_TAG&&r===t.tagName?{endTag:{...n},endLine:n.endLine,endCol:n.endCol,endOffset:n.endOffset}:{endLine:n.startLine,endCol:n.startCol,endOffset:n.startOffset};this.treeAdapter.updateNodeSourceCodeLocation(e,i)}}shouldProcessStartTagTokenInForeignContent(e){if(!this.currentNotInHTML)return!1;let t,n;return this.openElements.stackTop===0&&this.fragmentContext?(t=this.fragmentContext,n=this.fragmentContextID):{current:t,currentTagId:n}=this.openElements,e.tagID===X.SVG&&this.treeAdapter.getTagName(t)===Y.ANNOTATION_XML&&this.treeAdapter.getNamespaceURI(t)===J.MATHML?!1:this.tokenizer.inForeignNode||(e.tagID===X.MGLYPH||e.tagID===X.MALIGNMARK)&&n!==void 0&&!this._isIntegrationPoint(n,t,J.HTML)}_processToken(e){switch(e.type){case j5.CHARACTER:this.onCharacter(e);break;case j5.NULL_CHARACTER:this.onNullCharacter(e);break;case j5.COMMENT:this.onComment(e);break;case j5.DOCTYPE:this.onDoctype(e);break;case j5.START_TAG:this._processStartTag(e);break;case j5.END_TAG:this.onEndTag(e);break;case j5.EOF:this.onEof(e);break;case j5.WHITESPACE_CHARACTER:this.onWhitespaceCharacter(e)}}_isIntegrationPoint(e,t,n){return efe(e,this.treeAdapter.getNamespaceURI(t),this.treeAdapter.getAttrList(t),n)}_reconstructActiveFormattingElements(){let e=this.activeFormattingElements.entries.length;if(e){let t=this.activeFormattingElements.entries.findIndex(e=>e.type===t7.Marker||this.openElements.contains(e.element)),n=t===-1?e-1:t-1;for(let e=n;e>=0;e--){let t=this.activeFormattingElements.entries[e];this._insertElement(t.token,this.treeAdapter.getNamespaceURI(t.element)),t.element=this.openElements.current}}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=$.IN_ROW}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(X.P),this.openElements.popUntilTagNamePopped(X.P)}_resetInsertionMode(){for(let e=this.openElements.stackTop;e>=0;e--)switch(e===0&&this.fragmentContext?this.fragmentContextID:this.openElements.tagIDs[e]){case X.TR:this.insertionMode=$.IN_ROW;return;case X.TBODY:case X.THEAD:case X.TFOOT:this.insertionMode=$.IN_TABLE_BODY;return;case X.CAPTION:this.insertionMode=$.IN_CAPTION;return;case X.COLGROUP:this.insertionMode=$.IN_COLUMN_GROUP;return;case X.TABLE:this.insertionMode=$.IN_TABLE;return;case X.BODY:this.insertionMode=$.IN_BODY;return;case X.FRAMESET:this.insertionMode=$.IN_FRAMESET;return;case X.SELECT:this._resetInsertionModeForSelect(e);return;case X.TEMPLATE:this.insertionMode=this.tmplInsertionModeStack[0];return;case X.HTML:this.insertionMode=this.headElement?$.AFTER_HEAD:$.BEFORE_HEAD;return;case X.TD:case X.TH:if(e>0){this.insertionMode=$.IN_CELL;return}break;case X.HEAD:if(e>0){this.insertionMode=$.IN_HEAD;return}}this.insertionMode=$.IN_BODY}_resetInsertionModeForSelect(e){if(e>0)for(let t=e-1;t>0;t--){let e=this.openElements.tagIDs[t];if(e===X.TEMPLATE)break;if(e===X.TABLE){this.insertionMode=$.IN_SELECT_IN_TABLE;return}}this.insertionMode=$.IN_SELECT}_isElementCausesFosterParenting(e){return f7.has(e)}_shouldFosterParentOnInsertion(){return this.fosterParentingEnabled&&this.openElements.currentTagId!==void 0&&this._isElementCausesFosterParenting(this.openElements.currentTagId)}_findFosterParentingLocation(){for(let e=this.openElements.stackTop;e>=0;e--){let t=this.openElements.items[e];switch(this.openElements.tagIDs[e]){case X.TEMPLATE:if(this.treeAdapter.getNamespaceURI(t)===J.HTML)return{parent:this.treeAdapter.getTemplateContent(t),beforeElement:null};break;case X.TABLE:{let n=this.treeAdapter.getParentNode(t);return n?{parent:n,beforeElement:t}:{parent:this.openElements.items[e-1],beforeElement:null}}}}return{parent:this.openElements.items[0],beforeElement:null}}_fosterParentElement(e){let t=this._findFosterParentingLocation();t.beforeElement?this.treeAdapter.insertBefore(t.parent,e,t.beforeElement):this.treeAdapter.appendChild(t.parent,e)}_isSpecialElement(e,t){return wde[this.treeAdapter.getNamespaceURI(e)].has(t)}onCharacter(e){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Npe(this,e);return}switch(this.insertionMode){case $.INITIAL:v7(this,e);break;case $.BEFORE_HTML:y7(this,e);break;case $.BEFORE_HEAD:b7(this,e);break;case $.IN_HEAD:C7(this,e);break;case $.IN_HEAD_NO_SCRIPT:w7(this,e);break;case $.AFTER_HEAD:T7(this,e);break;case $.IN_BODY:case $.IN_CAPTION:case $.IN_CELL:case $.IN_TEMPLATE:O7(this,e);break;case $.TEXT:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:this._insertCharacters(e);break;case $.IN_TABLE:case $.IN_TABLE_BODY:case $.IN_ROW:R7(this,e);break;case $.IN_TABLE_TEXT:U7(this,e);break;case $.IN_COLUMN_GROUP:q7(this,e);break;case $.AFTER_BODY:n9(this,e);break;case $.AFTER_AFTER_BODY:r9(this,e)}}onNullCharacter(e){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Mpe(this,e);return}switch(this.insertionMode){case $.INITIAL:v7(this,e);break;case $.BEFORE_HTML:y7(this,e);break;case $.BEFORE_HEAD:b7(this,e);break;case $.IN_HEAD:C7(this,e);break;case $.IN_HEAD_NO_SCRIPT:w7(this,e);break;case $.AFTER_HEAD:T7(this,e);break;case $.TEXT:this._insertCharacters(e);break;case $.IN_TABLE:case $.IN_TABLE_BODY:case $.IN_ROW:R7(this,e);break;case $.IN_COLUMN_GROUP:q7(this,e);break;case $.AFTER_BODY:n9(this,e);break;case $.AFTER_AFTER_BODY:r9(this,e)}}onComment(e){if(this.skipNextNewLine=!1,this.currentNotInHTML){g7(this,e);return}switch(this.insertionMode){case $.INITIAL:case $.BEFORE_HTML:case $.BEFORE_HEAD:case $.IN_HEAD:case $.IN_HEAD_NO_SCRIPT:case $.AFTER_HEAD:case $.IN_BODY:case $.IN_TABLE:case $.IN_CAPTION:case $.IN_COLUMN_GROUP:case $.IN_TABLE_BODY:case $.IN_ROW:case $.IN_CELL:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:case $.IN_TEMPLATE:case $.IN_FRAMESET:case $.AFTER_FRAMESET:g7(this,e);break;case $.IN_TABLE_TEXT:W7(this,e);break;case $.AFTER_BODY:dfe(this,e);break;case $.AFTER_AFTER_BODY:case $.AFTER_AFTER_FRAMESET:ffe(this,e)}}onDoctype(e){switch(this.skipNextNewLine=!1,this.insertionMode){case $.INITIAL:pfe(this,e);break;case $.BEFORE_HEAD:case $.IN_HEAD:case $.IN_HEAD_NO_SCRIPT:case $.AFTER_HEAD:this._err(e,q.misplacedDoctype);break;case $.IN_TABLE_TEXT:W7(this,e)}}onStartTag(e){this.skipNextNewLine=!1,this.currentToken=e,this._processStartTag(e),e.selfClosing&&!e.ackSelfClosing&&this._err(e,q.nonVoidHtmlElementStartTagWithTrailingSolidus)}_processStartTag(e){this.shouldProcessStartTagTokenInForeignContent(e)?Ppe(this,e):this._startTagOutsideForeignContent(e)}_startTagOutsideForeignContent(e){switch(this.insertionMode){case $.INITIAL:v7(this,e);break;case $.BEFORE_HTML:mfe(this,e);break;case $.BEFORE_HEAD:gfe(this,e);break;case $.IN_HEAD:x7(this,e);break;case $.IN_HEAD_NO_SCRIPT:yfe(this,e);break;case $.AFTER_HEAD:xfe(this,e);break;case $.IN_BODY:P7(this,e);break;case $.IN_TABLE:z7(this,e);break;case $.IN_TABLE_TEXT:W7(this,e);break;case $.IN_CAPTION:gpe(this,e);break;case $.IN_COLUMN_GROUP:K7(this,e);break;case $.IN_TABLE_BODY:J7(this,e);break;case $.IN_ROW:X7(this,e);break;case $.IN_CELL:ype(this,e);break;case $.IN_SELECT:Q7(this,e);break;case $.IN_SELECT_IN_TABLE:xpe(this,e);break;case $.IN_TEMPLATE:Cpe(this,e);break;case $.AFTER_BODY:Tpe(this,e);break;case $.IN_FRAMESET:Epe(this,e);break;case $.AFTER_FRAMESET:Ope(this,e);break;case $.AFTER_AFTER_BODY:Ape(this,e);break;case $.AFTER_AFTER_FRAMESET:jpe(this,e)}}onEndTag(e){this.skipNextNewLine=!1,this.currentToken=e,this.currentNotInHTML?Fpe(this,e):this._endTagOutsideForeignContent(e)}_endTagOutsideForeignContent(e){switch(this.insertionMode){case $.INITIAL:v7(this,e);break;case $.BEFORE_HTML:hfe(this,e);break;case $.BEFORE_HEAD:_fe(this,e);break;case $.IN_HEAD:vfe(this,e);break;case $.IN_HEAD_NO_SCRIPT:bfe(this,e);break;case $.AFTER_HEAD:Sfe(this,e);break;case $.IN_BODY:I7(this,e);break;case $.TEXT:ope(this,e);break;case $.IN_TABLE:B7(this,e);break;case $.IN_TABLE_TEXT:W7(this,e);break;case $.IN_CAPTION:_pe(this,e);break;case $.IN_COLUMN_GROUP:vpe(this,e);break;case $.IN_TABLE_BODY:Y7(this,e);break;case $.IN_ROW:Z7(this,e);break;case $.IN_CELL:bpe(this,e);break;case $.IN_SELECT:$7(this,e);break;case $.IN_SELECT_IN_TABLE:Spe(this,e);break;case $.IN_TEMPLATE:wpe(this,e);break;case $.AFTER_BODY:t9(this,e);break;case $.IN_FRAMESET:Dpe(this,e);break;case $.AFTER_FRAMESET:kpe(this,e);break;case $.AFTER_AFTER_BODY:r9(this,e)}}onEof(e){switch(this.insertionMode){case $.INITIAL:v7(this,e);break;case $.BEFORE_HTML:y7(this,e);break;case $.BEFORE_HEAD:b7(this,e);break;case $.IN_HEAD:C7(this,e);break;case $.IN_HEAD_NO_SCRIPT:w7(this,e);break;case $.AFTER_HEAD:T7(this,e);break;case $.IN_BODY:case $.IN_TABLE:case $.IN_CAPTION:case $.IN_COLUMN_GROUP:case $.IN_TABLE_BODY:case $.IN_ROW:case $.IN_CELL:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:L7(this,e);break;case $.TEXT:spe(this,e);break;case $.IN_TABLE_TEXT:W7(this,e);break;case $.IN_TEMPLATE:e9(this,e);break;case $.AFTER_BODY:case $.IN_FRAMESET:case $.AFTER_FRAMESET:case $.AFTER_AFTER_BODY:case $.AFTER_AFTER_FRAMESET:_7(this,e)}}onWhitespaceCharacter(e){if(this.skipNextNewLine&&(this.skipNextNewLine=!1,e.chars.charCodeAt(0)===K.LINE_FEED)){if(e.chars.length===1)return;e.chars=e.chars.substr(1)}if(this.tokenizer.inForeignNode){this._insertCharacters(e);return}switch(this.insertionMode){case $.IN_HEAD:case $.IN_HEAD_NO_SCRIPT:case $.AFTER_HEAD:case $.TEXT:case $.IN_COLUMN_GROUP:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:case $.IN_FRAMESET:case $.AFTER_FRAMESET:this._insertCharacters(e);break;case $.IN_BODY:case $.IN_CAPTION:case $.IN_CELL:case $.IN_TEMPLATE:case $.AFTER_BODY:case $.AFTER_AFTER_BODY:case $.AFTER_AFTER_FRAMESET:D7(this,e);break;case $.IN_TABLE:case $.IN_TABLE_BODY:case $.IN_ROW:R7(this,e);break;case $.IN_TABLE_TEXT:H7(this,e)}}};function afe(e,t){let n=e.activeFormattingElements.getElementEntryInScopeWithTagName(t.tagName);return n?e.openElements.contains(n.element)?e.openElements.hasInScope(t.tagID)||(n=null):(e.activeFormattingElements.removeEntry(n),n=null):F7(e,t),n}function ofe(e,t){let n=null,r=e.openElements.stackTop;for(;r>=0;r--){let i=e.openElements.items[r];if(i===t.element)break;e._isSpecialElement(i,e.openElements.tagIDs[r])&&(n=i)}return n||(e.openElements.shortenToLength(Math.max(r,0)),e.activeFormattingElements.removeEntry(t)),n}function sfe(e,t,n){let r=t,i=e.openElements.getCommonAncestor(t);for(let a=0,o=i;o!==n;a++,o=i){i=e.openElements.getCommonAncestor(o);let n=e.activeFormattingElements.getElementEntry(o),s=n&&a>=rfe;!n||s?(s&&e.activeFormattingElements.removeEntry(n),e.openElements.remove(o)):(o=cfe(e,n),r===t&&(e.activeFormattingElements.bookmark=n),e.treeAdapter.detachNode(r),e.treeAdapter.appendChild(o,r),r=o)}return r}function cfe(e,t){let n=e.treeAdapter.getNamespaceURI(t.element),r=e.treeAdapter.createElement(t.token.tagName,n,t.token.attrs);return e.openElements.replace(t.element,r),t.element=r,r}function lfe(e,t,n){let r=B5(e.treeAdapter.getTagName(t));if(e._isElementCausesFosterParenting(r))e._fosterParentElement(n);else{let i=e.treeAdapter.getNamespaceURI(t);r===X.TEMPLATE&&i===J.HTML&&(t=e.treeAdapter.getTemplateContent(t)),e.treeAdapter.appendChild(t,n)}}function ufe(e,t,n){let r=e.treeAdapter.getNamespaceURI(n.element),{token:i}=n,a=e.treeAdapter.createElement(i.tagName,r,i.attrs);e._adoptNodes(t,a),e.treeAdapter.appendChild(t,a),e.activeFormattingElements.insertElementAfterBookmark(a,i),e.activeFormattingElements.removeEntry(n),e.openElements.remove(n.element),e.openElements.insertAfter(t,a,i.tagID)}function h7(e,t){for(let n=0;n=n;r--)e._setEndLocation(e.openElements.items[r],t);if(!e.fragmentContext&&e.openElements.stackTop>=0){let n=e.openElements.items[0],r=e.treeAdapter.getNodeSourceCodeLocation(n);if(r&&!r.endTag&&(e._setEndLocation(n,t),e.openElements.stackTop>=1)){let n=e.openElements.items[1],r=e.treeAdapter.getNodeSourceCodeLocation(n);r&&!r.endTag&&e._setEndLocation(n,t)}}}}function pfe(e,t){e._setDocumentType(t);let n=t.forceQuirks?z5.QUIRKS:Ude(t);Hde(t)||e._err(t,q.nonConformingDoctype),e.treeAdapter.setDocumentMode(e.document,n),e.insertionMode=$.BEFORE_HTML}function v7(e,t){e._err(t,q.missingDoctype,!0),e.treeAdapter.setDocumentMode(e.document,z5.QUIRKS),e.insertionMode=$.BEFORE_HTML,e._processToken(t)}function mfe(e,t){t.tagID===X.HTML?(e._insertElement(t,J.HTML),e.insertionMode=$.BEFORE_HEAD):y7(e,t)}function hfe(e,t){let n=t.tagID;(n===X.HTML||n===X.HEAD||n===X.BODY||n===X.BR)&&y7(e,t)}function y7(e,t){e._insertFakeRootElement(),e.insertionMode=$.BEFORE_HEAD,e._processToken(t)}function gfe(e,t){switch(t.tagID){case X.HTML:P7(e,t);break;case X.HEAD:e._insertElement(t,J.HTML),e.headElement=e.openElements.current,e.insertionMode=$.IN_HEAD;break;default:b7(e,t)}}function _fe(e,t){let n=t.tagID;n===X.HEAD||n===X.BODY||n===X.HTML||n===X.BR?b7(e,t):e._err(t,q.endTagWithoutMatchingOpenElement)}function b7(e,t){e._insertFakeElement(Y.HEAD,X.HEAD),e.headElement=e.openElements.current,e.insertionMode=$.IN_HEAD,e._processToken(t)}function x7(e,t){switch(t.tagID){case X.HTML:P7(e,t);break;case X.BASE:case X.BASEFONT:case X.BGSOUND:case X.LINK:case X.META:e._appendElement(t,J.HTML),t.ackSelfClosing=!0;break;case X.TITLE:e._switchToTextParsing(t,H5.RCDATA);break;case X.NOSCRIPT:e.options.scriptingEnabled?e._switchToTextParsing(t,H5.RAWTEXT):(e._insertElement(t,J.HTML),e.insertionMode=$.IN_HEAD_NO_SCRIPT);break;case X.NOFRAMES:case X.STYLE:e._switchToTextParsing(t,H5.RAWTEXT);break;case X.SCRIPT:e._switchToTextParsing(t,H5.SCRIPT_DATA);break;case X.TEMPLATE:e._insertTemplate(t),e.activeFormattingElements.insertMarker(),e.framesetOk=!1,e.insertionMode=$.IN_TEMPLATE,e.tmplInsertionModeStack.unshift($.IN_TEMPLATE);break;case X.HEAD:e._err(t,q.misplacedStartTagForHeadElement);break;default:C7(e,t)}}function vfe(e,t){switch(t.tagID){case X.HEAD:e.openElements.pop(),e.insertionMode=$.AFTER_HEAD;break;case X.BODY:case X.BR:case X.HTML:C7(e,t);break;case X.TEMPLATE:S7(e,t);break;default:e._err(t,q.endTagWithoutMatchingOpenElement)}}function S7(e,t){e.openElements.tmplCount>0?(e.openElements.generateImpliedEndTagsThoroughly(),e.openElements.currentTagId!==X.TEMPLATE&&e._err(t,q.closingOfElementWithOpenChildElements),e.openElements.popUntilTagNamePopped(X.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode()):e._err(t,q.endTagWithoutMatchingOpenElement)}function C7(e,t){e.openElements.pop(),e.insertionMode=$.AFTER_HEAD,e._processToken(t)}function yfe(e,t){switch(t.tagID){case X.HTML:P7(e,t);break;case X.BASEFONT:case X.BGSOUND:case X.HEAD:case X.LINK:case X.META:case X.NOFRAMES:case X.STYLE:x7(e,t);break;case X.NOSCRIPT:e._err(t,q.nestedNoscriptInHead);break;default:w7(e,t)}}function bfe(e,t){switch(t.tagID){case X.NOSCRIPT:e.openElements.pop(),e.insertionMode=$.IN_HEAD;break;case X.BR:w7(e,t);break;default:e._err(t,q.endTagWithoutMatchingOpenElement)}}function w7(e,t){let n=t.type===j5.EOF?q.openElementsLeftAfterEof:q.disallowedContentInNoscriptInHead;e._err(t,n),e.openElements.pop(),e.insertionMode=$.IN_HEAD,e._processToken(t)}function xfe(e,t){switch(t.tagID){case X.HTML:P7(e,t);break;case X.BODY:e._insertElement(t,J.HTML),e.framesetOk=!1,e.insertionMode=$.IN_BODY;break;case X.FRAMESET:e._insertElement(t,J.HTML),e.insertionMode=$.IN_FRAMESET;break;case X.BASE:case X.BASEFONT:case X.BGSOUND:case X.LINK:case X.META:case X.NOFRAMES:case X.SCRIPT:case X.STYLE:case X.TEMPLATE:case X.TITLE:e._err(t,q.abandonedHeadElementChild),e.openElements.push(e.headElement,X.HEAD),x7(e,t),e.openElements.remove(e.headElement);break;case X.HEAD:e._err(t,q.misplacedStartTagForHeadElement);break;default:T7(e,t)}}function Sfe(e,t){switch(t.tagID){case X.BODY:case X.HTML:case X.BR:T7(e,t);break;case X.TEMPLATE:S7(e,t);break;default:e._err(t,q.endTagWithoutMatchingOpenElement)}}function T7(e,t){e._insertFakeElement(Y.BODY,X.BODY),e.insertionMode=$.IN_BODY,E7(e,t)}function E7(e,t){switch(t.type){case j5.CHARACTER:O7(e,t);break;case j5.WHITESPACE_CHARACTER:D7(e,t);break;case j5.COMMENT:g7(e,t);break;case j5.START_TAG:P7(e,t);break;case j5.END_TAG:I7(e,t);break;case j5.EOF:L7(e,t)}}function D7(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t)}function O7(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t),e.framesetOk=!1}function Cfe(e,t){e.openElements.tmplCount===0&&e.treeAdapter.adoptAttributes(e.openElements.items[0],t.attrs)}function wfe(e,t){let n=e.openElements.tryPeekProperlyNestedBodyElement();n&&e.openElements.tmplCount===0&&(e.framesetOk=!1,e.treeAdapter.adoptAttributes(n,t.attrs))}function Tfe(e,t){let n=e.openElements.tryPeekProperlyNestedBodyElement();e.framesetOk&&n&&(e.treeAdapter.detachNode(n),e.openElements.popAllUpToHtmlElement(),e._insertElement(t,J.HTML),e.insertionMode=$.IN_FRAMESET)}function Efe(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML)}function Dfe(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e.openElements.currentTagId!==void 0&&V5.has(e.openElements.currentTagId)&&e.openElements.pop(),e._insertElement(t,J.HTML)}function k7(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML),e.skipNextNewLine=!0,e.framesetOk=!1}function Ofe(e,t){let n=e.openElements.tmplCount>0;(!e.formElement||n)&&(e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML),n||(e.formElement=e.openElements.current))}function kfe(e,t){e.framesetOk=!1;let n=t.tagID;for(let t=e.openElements.stackTop;t>=0;t--){let r=e.openElements.tagIDs[t];if(n===X.LI&&r===X.LI||(n===X.DD||n===X.DT)&&(r===X.DD||r===X.DT)){e.openElements.generateImpliedEndTagsWithExclusion(r),e.openElements.popUntilTagNamePopped(r);break}if(r!==X.ADDRESS&&r!==X.DIV&&r!==X.P&&e._isSpecialElement(e.openElements.items[t],r))break}e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML)}function Afe(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML),e.tokenizer.state=H5.PLAINTEXT}function jfe(e,t){e.openElements.hasInScope(X.BUTTON)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(X.BUTTON)),e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML),e.framesetOk=!1}function Mfe(e,t){let n=e.activeFormattingElements.getElementEntryInScopeWithTagName(Y.A);n&&(h7(e,t),e.openElements.remove(n.element),e.activeFormattingElements.removeEntry(n)),e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Nfe(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Pfe(e,t){e._reconstructActiveFormattingElements(),e.openElements.hasInScope(X.NOBR)&&(h7(e,t),e._reconstructActiveFormattingElements()),e._insertElement(t,J.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Ffe(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML),e.activeFormattingElements.insertMarker(),e.framesetOk=!1}function Ife(e,t){e.treeAdapter.getDocumentMode(e.document)!==z5.QUIRKS&&e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML),e.framesetOk=!1,e.insertionMode=$.IN_TABLE}function A7(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,J.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function j7(e){let t=M5(e,R5.TYPE);return t!=null&&t.toLowerCase()===tfe}function Lfe(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,J.HTML),j7(t)||(e.framesetOk=!1),t.ackSelfClosing=!0}function Rfe(e,t){e._appendElement(t,J.HTML),t.ackSelfClosing=!0}function zfe(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._appendElement(t,J.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function Bfe(e,t){t.tagName=Y.IMG,t.tagID=X.IMG,A7(e,t)}function Vfe(e,t){e._insertElement(t,J.HTML),e.skipNextNewLine=!0,e.tokenizer.state=H5.RCDATA,e.originalInsertionMode=e.insertionMode,e.framesetOk=!1,e.insertionMode=$.TEXT}function Hfe(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._reconstructActiveFormattingElements(),e.framesetOk=!1,e._switchToTextParsing(t,H5.RAWTEXT)}function Ufe(e,t){e.framesetOk=!1,e._switchToTextParsing(t,H5.RAWTEXT)}function M7(e,t){e._switchToTextParsing(t,H5.RAWTEXT)}function Wfe(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML),e.framesetOk=!1,e.insertionMode=e.insertionMode===$.IN_TABLE||e.insertionMode===$.IN_CAPTION||e.insertionMode===$.IN_TABLE_BODY||e.insertionMode===$.IN_ROW||e.insertionMode===$.IN_CELL?$.IN_SELECT_IN_TABLE:$.IN_SELECT}function Gfe(e,t){e.openElements.currentTagId===X.OPTION&&e.openElements.pop(),e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML)}function Kfe(e,t){e.openElements.hasInScope(X.RUBY)&&e.openElements.generateImpliedEndTags(),e._insertElement(t,J.HTML)}function qfe(e,t){e.openElements.hasInScope(X.RUBY)&&e.openElements.generateImpliedEndTagsWithExclusion(X.RTC),e._insertElement(t,J.HTML)}function Jfe(e,t){e._reconstructActiveFormattingElements(),l7(t),d7(t),t.selfClosing?e._appendElement(t,J.MATHML):e._insertElement(t,J.MATHML),t.ackSelfClosing=!0}function Yfe(e,t){e._reconstructActiveFormattingElements(),u7(t),d7(t),t.selfClosing?e._appendElement(t,J.SVG):e._insertElement(t,J.SVG),t.ackSelfClosing=!0}function N7(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML)}function P7(e,t){switch(t.tagID){case X.I:case X.S:case X.B:case X.U:case X.EM:case X.TT:case X.BIG:case X.CODE:case X.FONT:case X.SMALL:case X.STRIKE:case X.STRONG:Nfe(e,t);break;case X.A:Mfe(e,t);break;case X.H1:case X.H2:case X.H3:case X.H4:case X.H5:case X.H6:Dfe(e,t);break;case X.P:case X.DL:case X.OL:case X.UL:case X.DIV:case X.DIR:case X.NAV:case X.MAIN:case X.MENU:case X.ASIDE:case X.CENTER:case X.FIGURE:case X.FOOTER:case X.HEADER:case X.HGROUP:case X.DIALOG:case X.DETAILS:case X.ADDRESS:case X.ARTICLE:case X.SEARCH:case X.SECTION:case X.SUMMARY:case X.FIELDSET:case X.BLOCKQUOTE:case X.FIGCAPTION:Efe(e,t);break;case X.LI:case X.DD:case X.DT:kfe(e,t);break;case X.BR:case X.IMG:case X.WBR:case X.AREA:case X.EMBED:case X.KEYGEN:A7(e,t);break;case X.HR:zfe(e,t);break;case X.RB:case X.RTC:Kfe(e,t);break;case X.RT:case X.RP:qfe(e,t);break;case X.PRE:case X.LISTING:k7(e,t);break;case X.XMP:Hfe(e,t);break;case X.SVG:Yfe(e,t);break;case X.HTML:Cfe(e,t);break;case X.BASE:case X.LINK:case X.META:case X.STYLE:case X.TITLE:case X.SCRIPT:case X.BGSOUND:case X.BASEFONT:case X.TEMPLATE:x7(e,t);break;case X.BODY:wfe(e,t);break;case X.FORM:Ofe(e,t);break;case X.NOBR:Pfe(e,t);break;case X.MATH:Jfe(e,t);break;case X.TABLE:Ife(e,t);break;case X.INPUT:Lfe(e,t);break;case X.PARAM:case X.TRACK:case X.SOURCE:Rfe(e,t);break;case X.IMAGE:Bfe(e,t);break;case X.BUTTON:jfe(e,t);break;case X.APPLET:case X.OBJECT:case X.MARQUEE:Ffe(e,t);break;case X.IFRAME:Ufe(e,t);break;case X.SELECT:Wfe(e,t);break;case X.OPTION:case X.OPTGROUP:Gfe(e,t);break;case X.NOEMBED:case X.NOFRAMES:M7(e,t);break;case X.FRAMESET:Tfe(e,t);break;case X.TEXTAREA:Vfe(e,t);break;case X.NOSCRIPT:e.options.scriptingEnabled?M7(e,t):N7(e,t);break;case X.PLAINTEXT:Afe(e,t);break;case X.COL:case X.TH:case X.TD:case X.TR:case X.HEAD:case X.FRAME:case X.TBODY:case X.TFOOT:case X.THEAD:case X.CAPTION:case X.COLGROUP:break;default:N7(e,t)}}function Xfe(e,t){if(e.openElements.hasInScope(X.BODY)&&(e.insertionMode=$.AFTER_BODY,e.options.sourceCodeLocationInfo)){let n=e.openElements.tryPeekProperlyNestedBodyElement();n&&e._setEndLocation(n,t)}}function Zfe(e,t){e.openElements.hasInScope(X.BODY)&&(e.insertionMode=$.AFTER_BODY,t9(e,t))}function Qfe(e,t){let n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n))}function $fe(e){let t=e.openElements.tmplCount>0,{formElement:n}=e;t||(e.formElement=null),(n||t)&&e.openElements.hasInScope(X.FORM)&&(e.openElements.generateImpliedEndTags(),t?e.openElements.popUntilTagNamePopped(X.FORM):n&&e.openElements.remove(n))}function epe(e){e.openElements.hasInButtonScope(X.P)||e._insertFakeElement(Y.P,X.P),e._closePElement()}function tpe(e){e.openElements.hasInListItemScope(X.LI)&&(e.openElements.generateImpliedEndTagsWithExclusion(X.LI),e.openElements.popUntilTagNamePopped(X.LI))}function npe(e,t){let n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTagsWithExclusion(n),e.openElements.popUntilTagNamePopped(n))}function rpe(e){e.openElements.hasNumberedHeaderInScope()&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilNumberedHeaderPopped())}function ipe(e,t){let n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n),e.activeFormattingElements.clearToLastMarker())}function ape(e){e._reconstructActiveFormattingElements(),e._insertFakeElement(Y.BR,X.BR),e.openElements.pop(),e.framesetOk=!1}function F7(e,t){let n=t.tagName,r=t.tagID;for(let t=e.openElements.stackTop;t>0;t--){let i=e.openElements.items[t],a=e.openElements.tagIDs[t];if(r===a&&(r!==X.UNKNOWN||e.treeAdapter.getTagName(i)===n)){e.openElements.generateImpliedEndTagsWithExclusion(r),e.openElements.stackTop>=t&&e.openElements.shortenToLength(t);break}if(e._isSpecialElement(i,a))break}}function I7(e,t){switch(t.tagID){case X.A:case X.B:case X.I:case X.S:case X.U:case X.EM:case X.TT:case X.BIG:case X.CODE:case X.FONT:case X.NOBR:case X.SMALL:case X.STRIKE:case X.STRONG:h7(e,t);break;case X.P:epe(e);break;case X.DL:case X.UL:case X.OL:case X.DIR:case X.DIV:case X.NAV:case X.PRE:case X.MAIN:case X.MENU:case X.ASIDE:case X.BUTTON:case X.CENTER:case X.FIGURE:case X.FOOTER:case X.HEADER:case X.HGROUP:case X.DIALOG:case X.ADDRESS:case X.ARTICLE:case X.DETAILS:case X.SEARCH:case X.SECTION:case X.SUMMARY:case X.LISTING:case X.FIELDSET:case X.BLOCKQUOTE:case X.FIGCAPTION:Qfe(e,t);break;case X.LI:tpe(e);break;case X.DD:case X.DT:npe(e,t);break;case X.H1:case X.H2:case X.H3:case X.H4:case X.H5:case X.H6:rpe(e);break;case X.BR:ape(e);break;case X.BODY:Xfe(e,t);break;case X.HTML:Zfe(e,t);break;case X.FORM:$fe(e);break;case X.APPLET:case X.OBJECT:case X.MARQUEE:ipe(e,t);break;case X.TEMPLATE:S7(e,t);break;default:F7(e,t)}}function L7(e,t){e.tmplInsertionModeStack.length>0?e9(e,t):_7(e,t)}function ope(e,t){var n;t.tagID===X.SCRIPT&&((n=e.scriptHandler)==null||n.call(e,e.openElements.current)),e.openElements.pop(),e.insertionMode=e.originalInsertionMode}function spe(e,t){e._err(t,q.eofInElementThatCanContainOnlyText),e.openElements.pop(),e.insertionMode=e.originalInsertionMode,e.onEof(t)}function R7(e,t){if(e.openElements.currentTagId!==void 0&&f7.has(e.openElements.currentTagId))switch(e.pendingCharacterTokens.length=0,e.hasNonWhitespacePendingCharacterToken=!1,e.originalInsertionMode=e.insertionMode,e.insertionMode=$.IN_TABLE_TEXT,t.type){case j5.CHARACTER:U7(e,t);break;case j5.WHITESPACE_CHARACTER:H7(e,t)}else V7(e,t)}function cpe(e,t){e.openElements.clearBackToTableContext(),e.activeFormattingElements.insertMarker(),e._insertElement(t,J.HTML),e.insertionMode=$.IN_CAPTION}function lpe(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,J.HTML),e.insertionMode=$.IN_COLUMN_GROUP}function upe(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(Y.COLGROUP,X.COLGROUP),e.insertionMode=$.IN_COLUMN_GROUP,K7(e,t)}function dpe(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,J.HTML),e.insertionMode=$.IN_TABLE_BODY}function fpe(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(Y.TBODY,X.TBODY),e.insertionMode=$.IN_TABLE_BODY,J7(e,t)}function ppe(e,t){e.openElements.hasInTableScope(X.TABLE)&&(e.openElements.popUntilTagNamePopped(X.TABLE),e._resetInsertionMode(),e._processStartTag(t))}function mpe(e,t){j7(t)?e._appendElement(t,J.HTML):V7(e,t),t.ackSelfClosing=!0}function hpe(e,t){!e.formElement&&e.openElements.tmplCount===0&&(e._insertElement(t,J.HTML),e.formElement=e.openElements.current,e.openElements.pop())}function z7(e,t){switch(t.tagID){case X.TD:case X.TH:case X.TR:fpe(e,t);break;case X.STYLE:case X.SCRIPT:case X.TEMPLATE:x7(e,t);break;case X.COL:upe(e,t);break;case X.FORM:hpe(e,t);break;case X.TABLE:ppe(e,t);break;case X.TBODY:case X.TFOOT:case X.THEAD:dpe(e,t);break;case X.INPUT:mpe(e,t);break;case X.CAPTION:cpe(e,t);break;case X.COLGROUP:lpe(e,t);break;default:V7(e,t)}}function B7(e,t){switch(t.tagID){case X.TABLE:e.openElements.hasInTableScope(X.TABLE)&&(e.openElements.popUntilTagNamePopped(X.TABLE),e._resetInsertionMode());break;case X.TEMPLATE:S7(e,t);break;case X.BODY:case X.CAPTION:case X.COL:case X.COLGROUP:case X.HTML:case X.TBODY:case X.TD:case X.TFOOT:case X.TH:case X.THEAD:case X.TR:break;default:V7(e,t)}}function V7(e,t){let n=e.fosterParentingEnabled;e.fosterParentingEnabled=!0,E7(e,t),e.fosterParentingEnabled=n}function H7(e,t){e.pendingCharacterTokens.push(t)}function U7(e,t){e.pendingCharacterTokens.push(t),e.hasNonWhitespacePendingCharacterToken=!0}function W7(e,t){let n=0;if(e.hasNonWhitespacePendingCharacterToken)for(;n0&&e.openElements.currentTagId===X.OPTION&&e.openElements.tagIDs[e.openElements.stackTop-1]===X.OPTGROUP&&e.openElements.pop(),e.openElements.currentTagId===X.OPTGROUP&&e.openElements.pop();break;case X.OPTION:e.openElements.currentTagId===X.OPTION&&e.openElements.pop();break;case X.SELECT:e.openElements.hasInSelectScope(X.SELECT)&&(e.openElements.popUntilTagNamePopped(X.SELECT),e._resetInsertionMode());break;case X.TEMPLATE:S7(e,t)}}function xpe(e,t){let n=t.tagID;n===X.CAPTION||n===X.TABLE||n===X.TBODY||n===X.TFOOT||n===X.THEAD||n===X.TR||n===X.TD||n===X.TH?(e.openElements.popUntilTagNamePopped(X.SELECT),e._resetInsertionMode(),e._processStartTag(t)):Q7(e,t)}function Spe(e,t){let n=t.tagID;n===X.CAPTION||n===X.TABLE||n===X.TBODY||n===X.TFOOT||n===X.THEAD||n===X.TR||n===X.TD||n===X.TH?e.openElements.hasInTableScope(n)&&(e.openElements.popUntilTagNamePopped(X.SELECT),e._resetInsertionMode(),e.onEndTag(t)):$7(e,t)}function Cpe(e,t){switch(t.tagID){case X.BASE:case X.BASEFONT:case X.BGSOUND:case X.LINK:case X.META:case X.NOFRAMES:case X.SCRIPT:case X.STYLE:case X.TEMPLATE:case X.TITLE:x7(e,t);break;case X.CAPTION:case X.COLGROUP:case X.TBODY:case X.TFOOT:case X.THEAD:e.tmplInsertionModeStack[0]=$.IN_TABLE,e.insertionMode=$.IN_TABLE,z7(e,t);break;case X.COL:e.tmplInsertionModeStack[0]=$.IN_COLUMN_GROUP,e.insertionMode=$.IN_COLUMN_GROUP,K7(e,t);break;case X.TR:e.tmplInsertionModeStack[0]=$.IN_TABLE_BODY,e.insertionMode=$.IN_TABLE_BODY,J7(e,t);break;case X.TD:case X.TH:e.tmplInsertionModeStack[0]=$.IN_ROW,e.insertionMode=$.IN_ROW,X7(e,t);break;default:e.tmplInsertionModeStack[0]=$.IN_BODY,e.insertionMode=$.IN_BODY,P7(e,t)}}function wpe(e,t){t.tagID===X.TEMPLATE&&S7(e,t)}function e9(e,t){e.openElements.tmplCount>0?(e.openElements.popUntilTagNamePopped(X.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode(),e.onEof(t)):_7(e,t)}function Tpe(e,t){t.tagID===X.HTML?P7(e,t):n9(e,t)}function t9(e,t){if(t.tagID===X.HTML){if(e.fragmentContext||(e.insertionMode=$.AFTER_AFTER_BODY),e.options.sourceCodeLocationInfo&&e.openElements.tagIDs[0]===X.HTML){e._setEndLocation(e.openElements.items[0],t);let n=e.openElements.items[1];n&&!e.treeAdapter.getNodeSourceCodeLocation(n)?.endTag&&e._setEndLocation(n,t)}}else n9(e,t)}function n9(e,t){e.insertionMode=$.IN_BODY,E7(e,t)}function Epe(e,t){switch(t.tagID){case X.HTML:P7(e,t);break;case X.FRAMESET:e._insertElement(t,J.HTML);break;case X.FRAME:e._appendElement(t,J.HTML),t.ackSelfClosing=!0;break;case X.NOFRAMES:x7(e,t)}}function Dpe(e,t){t.tagID===X.FRAMESET&&!e.openElements.isRootHtmlElementCurrent()&&(e.openElements.pop(),!e.fragmentContext&&e.openElements.currentTagId!==X.FRAMESET&&(e.insertionMode=$.AFTER_FRAMESET))}function Ope(e,t){switch(t.tagID){case X.HTML:P7(e,t);break;case X.NOFRAMES:x7(e,t)}}function kpe(e,t){t.tagID===X.HTML&&(e.insertionMode=$.AFTER_AFTER_FRAMESET)}function Ape(e,t){t.tagID===X.HTML?P7(e,t):r9(e,t)}function r9(e,t){e.insertionMode=$.IN_BODY,E7(e,t)}function jpe(e,t){switch(t.tagID){case X.HTML:P7(e,t);break;case X.NOFRAMES:x7(e,t)}}function Mpe(e,t){t.chars=`�`,e._insertCharacters(t)}function Npe(e,t){e._insertCharacters(t),e.framesetOk=!1}function i9(e){for(;e.treeAdapter.getNamespaceURI(e.openElements.current)!==J.HTML&&e.openElements.currentTagId!==void 0&&!e._isIntegrationPoint(e.openElements.currentTagId,e.openElements.current);)e.openElements.pop()}function Ppe(e,t){if(Xde(t))i9(e),e._startTagOutsideForeignContent(t);else{let n=e._getAdjustedCurrentElement(),r=e.treeAdapter.getNamespaceURI(n);r===J.MATHML?l7(t):r===J.SVG&&(Zde(t),u7(t)),d7(t),t.selfClosing?e._appendElement(t,r):e._insertElement(t,r),t.ackSelfClosing=!0}}function Fpe(e,t){if(t.tagID===X.P||t.tagID===X.BR){i9(e),e._endTagOutsideForeignContent(t);return}for(let n=e.openElements.stackTop;n>0;n--){let r=e.openElements.items[n];if(e.treeAdapter.getNamespaceURI(r)===J.HTML){e._endTagOutsideForeignContent(t);break}let i=e.treeAdapter.getTagName(r);if(i.toLowerCase()===t.tagName){t.tagName=i,e.openElements.shortenToLength(n);break}}}Y.AREA,Y.BASE,Y.BASEFONT,Y.BGSOUND,Y.BR,Y.COL,Y.EMBED,Y.FRAME,Y.HR,Y.IMG,Y.INPUT,Y.KEYGEN,Y.LINK,Y.META,Y.PARAM,Y.SOURCE,Y.TRACK,Y.WBR;var Ipe=/<(\/?)(iframe|noembed|noframes|plaintext|script|style|textarea|title|xmp)(?=[\t\n\f\r />])/gi,Lpe=new Set([`mdxFlowExpression`,`mdxJsxFlowElement`,`mdxJsxTextElement`,`mdxTextExpression`,`mdxjsEsm`]),a9={sourceCodeLocationInfo:!0,scriptingEnabled:!1};function o9(e,t){let n=qpe(e),r=O8(`type`,{handlers:{root:Rpe,element:zpe,text:Bpe,comment:c9,doctype:Vpe,raw:Upe},unknown:Wpe}),i={parser:n?new m7(a9):m7.getFragmentParser(void 0,a9),handle(e){r(e,i)},stitches:!1,options:t||{}};r(e,i),l9(i,V4());let a=Yue(n?i.parser.document:i.parser.getFragment(),{file:i.options.file});return i.stitches&&J6(a,`comment`,function(e,t,n){let r=e;if(r.value.stitch&&n&&t!==void 0){let e=n.children;return e[t]=r.value.stitch,t}}),a.type===`root`&&a.children.length===1&&a.children[0].type===e.type?a.children[0]:a}function s9(e,t){let n=-1;if(e)for(;++n4&&(t.parser.tokenizer.state=0);let n={type:j5.CHARACTER,chars:e.value,location:d9(e)};l9(t,V4(e)),t.parser.currentToken=n,t.parser._processToken(t.parser.currentToken)}function Vpe(e,t){let n={type:j5.DOCTYPE,name:`html`,forceQuirks:!1,publicId:``,systemId:``,location:d9(e)};l9(t,V4(e)),t.parser.currentToken=n,t.parser._processToken(t.parser.currentToken)}function Hpe(e,t){t.stitches=!0;let n=Jpe(e);`children`in e&&`children`in n&&(n.children=o9({type:`root`,children:e.children},t.options).children),c9({type:`comment`,value:{stitch:n}},t)}function c9(e,t){let n=e.value,r={type:j5.COMMENT,data:n,location:d9(e)};l9(t,V4(e)),t.parser.currentToken=r,t.parser._processToken(t.parser.currentToken)}function Upe(e,t){if(t.parser.tokenizer.preprocessor.html=``,t.parser.tokenizer.preprocessor.pos=-1,t.parser.tokenizer.preprocessor.lastGapPos=-2,t.parser.tokenizer.preprocessor.gapStack=[],t.parser.tokenizer.preprocessor.skipNextNewLine=!1,t.parser.tokenizer.preprocessor.lastChunkWritten=!1,t.parser.tokenizer.preprocessor.endOfChunkHit=!1,t.parser.tokenizer.preprocessor.isEol=!1,u9(t,V4(e)),t.parser.tokenizer.write(t.options.tagfilter?e.value.replace(Ipe,`<$1$2`):e.value,!1),t.parser.tokenizer._runParsingLoop(),t.parser.tokenizer.state===72||t.parser.tokenizer.state===78){t.parser.tokenizer.preprocessor.lastChunkWritten=!0;let e=t.parser.tokenizer._consume();t.parser.tokenizer._callState(e)}}function Wpe(e,t){let n=e;if(t.options.passThrough&&t.options.passThrough.includes(n.type))Hpe(n,t);else{let e=``;throw Lpe.has(n.type)&&(e=". It looks like you are using MDX nodes with `hast-util-raw` (or `rehype-raw`). If you use this because you are using remark or rehype plugins that inject `'html'` nodes, then please raise an issue with that plugin, as its a bad and slow idea. If you use this because you are using markdown syntax, then you have to configure this utility (or plugin) to pass through these nodes (see `passThrough` in docs), but you can also migrate to use the MDX syntax"),Error("Cannot compile `"+n.type+"` node"+e)}}function l9(e,t){u9(e,t);let n=e.parser.tokenizer.currentCharacterToken;n&&n.location&&(n.location.endLine=e.parser.tokenizer.preprocessor.line,n.location.endCol=e.parser.tokenizer.preprocessor.col+1,n.location.endOffset=e.parser.tokenizer.preprocessor.offset+1,e.parser.currentToken=n,e.parser._processToken(e.parser.currentToken)),e.parser.tokenizer.paused=!1,e.parser.tokenizer.inLoop=!1,e.parser.tokenizer.active=!1,e.parser.tokenizer.returnState=H5.DATA,e.parser.tokenizer.charRefCode=-1,e.parser.tokenizer.consumedAfterSnapshot=-1,e.parser.tokenizer.currentLocation=null,e.parser.tokenizer.currentCharacterToken=null,e.parser.tokenizer.currentToken=null,e.parser.tokenizer.currentAttr={name:``,value:``}}function u9(e,t){if(t&&t.offset!==void 0){let n={startLine:t.line,startCol:t.column,startOffset:t.offset,endLine:-1,endCol:-1,endOffset:-1};e.parser.tokenizer.preprocessor.lineStartPos=-t.column+1,e.parser.tokenizer.preprocessor.droppedBufferSize=t.offset,e.parser.tokenizer.preprocessor.line=t.line,e.parser.tokenizer.currentLocation=n}}function Gpe(e,t){let n=e.tagName.toLowerCase();if(t.parser.tokenizer.state===H5.PLAINTEXT)return;l9(t,V4(e));let r=t.parser.openElements.current,i=`namespaceURI`in r?r.namespaceURI:_5.html;i===_5.html&&n===`svg`&&(i=_5.svg);let a=ede({...e,children:[]},{space:i===_5.svg?`svg`:`html`}),o={type:j5.START_TAG,tagName:n,tagID:B5(n),selfClosing:!1,ackSelfClosing:!1,attrs:`attrs`in a?a.attrs:[],location:d9(e)};t.parser.currentToken=o,t.parser._processToken(t.parser.currentToken),t.parser.tokenizer.lastStartTagName=n}function Kpe(e,t){let n=e.tagName.toLowerCase();if(!t.parser.tokenizer.inForeignNode&&cde.includes(n)||t.parser.tokenizer.state===H5.PLAINTEXT)return;l9(t,B4(e));let r={type:j5.END_TAG,tagName:n,tagID:B5(n),selfClosing:!1,ackSelfClosing:!1,attrs:[],location:d9(e)};t.parser.currentToken=r,t.parser._processToken(t.parser.currentToken),n===t.parser.tokenizer.lastStartTagName&&(t.parser.tokenizer.state===H5.RCDATA||t.parser.tokenizer.state===H5.RAWTEXT||t.parser.tokenizer.state===H5.SCRIPT_DATA)&&(t.parser.tokenizer.state=H5.DATA)}function qpe(e){let t=e.type===`root`?e.children[0]:e;return!!(t&&(t.type===`doctype`||t.type===`element`&&t.tagName.toLowerCase()===`html`))}function d9(e){let t=V4(e)||{line:void 0,column:void 0,offset:void 0},n=B4(e)||{line:void 0,column:void 0,offset:void 0};return{startLine:t.line,startCol:t.column,startOffset:t.offset,endLine:n.line,endCol:n.column,endOffset:n.offset}}function Jpe(e){return`children`in e?U6({...e,children:[]}):U6(e)}function Ype(e){return function(t,n){return o9(t,{...e,file:n})}}var f9=[`ariaDescribedBy`,`ariaLabel`,`ariaLabelledBy`],p9={ancestors:{tbody:[`table`],td:[`table`],th:[`table`],thead:[`table`],tfoot:[`table`],tr:[`table`]},attributes:{a:[...f9,`dataFootnoteBackref`,`dataFootnoteRef`,[`className`,`data-footnote-backref`],`href`],blockquote:[`cite`],code:[[`className`,/^language-./]],del:[`cite`],div:[`itemScope`,`itemType`],dl:[...f9],h2:[[`className`,`sr-only`]],img:[...f9,`longDesc`,`src`],input:[[`disabled`,!0],[`type`,`checkbox`]],ins:[`cite`],li:[[`className`,`task-list-item`]],ol:[...f9,[`className`,`contains-task-list`]],q:[`cite`],section:[`dataFootnotes`,[`className`,`footnotes`]],source:[`srcSet`],summary:[...f9],table:[...f9],ul:[...f9,[`className`,`contains-task-list`]],"*":`abbr.accept.acceptCharset.accessKey.action.align.alt.axis.border.cellPadding.cellSpacing.char.charOff.charSet.checked.clear.colSpan.color.cols.compact.coords.dateTime.dir.encType.frame.hSpace.headers.height.hrefLang.htmlFor.id.isMap.itemProp.label.lang.maxLength.media.method.multiple.name.noHref.noShade.noWrap.open.prompt.readOnly.rev.rowSpan.rows.rules.scope.selected.shape.size.span.start.summary.tabIndex.title.useMap.vAlign.value.width`.split(`.`)},clobber:[`ariaDescribedBy`,`ariaLabelledBy`,`id`,`name`],clobberPrefix:`user-content-`,protocols:{cite:[`http`,`https`],href:[`http`,`https`,`irc`,`ircs`,`mailto`,`xmpp`],longDesc:[`http`,`https`],src:[`http`,`https`]},required:{input:{disabled:!0,type:`checkbox`}},strip:[`script`],tagNames:`a.b.blockquote.br.code.dd.del.details.div.dl.dt.em.h1.h2.h3.h4.h5.h6.hr.i.img.input.ins.kbd.li.ol.p.picture.pre.q.rp.rt.ruby.s.samp.section.source.span.strike.strong.sub.summary.sup.table.tbody.td.tfoot.th.thead.tr.tt.ul.var`.split(`.`)},m9={}.hasOwnProperty;function Xpe(e,t){let n={type:`root`,children:[]},r=h9({schema:t?{...p9,...t}:p9,stack:[]},e);return r&&(Array.isArray(r)?r.length===1?n=r[0]:n.children=r:n=r),n}function h9(e,t){if(t&&typeof t==`object`){let n=t;switch(typeof n.type==`string`?n.type:``){case`comment`:return Zpe(e,n);case`doctype`:return Qpe(e,n);case`element`:return $pe(e,n);case`root`:return eme(e,n);case`text`:return tme(e,n)}}}function Zpe(e,t){if(e.schema.allowComments){let e=typeof t.value==`string`?t.value:``,n=e.indexOf(`-->`),r={type:`comment`,value:n<0?e:e.slice(0,n)};return y9(r,t),r}}function Qpe(e,t){if(e.schema.allowDoctypes){let e={type:`doctype`};return y9(e,t),e}}function $pe(e,t){let n=typeof t.tagName==`string`?t.tagName:``;e.stack.push(n);let r=g9(e,t.children),i=nme(e,t.properties);e.stack.pop();let a=!1;if(n&&n!==`*`&&(!e.schema.tagNames||e.schema.tagNames.includes(n))&&(a=!0,e.schema.ancestors&&m9.call(e.schema.ancestors,n))){let t=e.schema.ancestors[n],r=-1;for(a=!1;++r1){let e=!1,n=0;for(;++n-1&&a>c||o>-1&&a>o||s>-1&&a>s)return!0;let l=-1;for(;++l4&&t.slice(0,4).toLowerCase()===`data`)return n}function ame(e){return function(t){return Xpe(t,e)}}var x9=_.forwardRef(({className:e,type:t,...n},r)=>(0,I.jsx)(`input`,{type:t,className:L(`flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50`,e),ref:r,...n}));x9.displayName=`Input`;var ome=[{value:`Passed`,label:`Passed`,icon:pm,variant:`success`},{value:`Failed`,label:`Failed`,icon:_m,variant:`destructive`},{value:`Error`,label:`Error`,icon:_m,variant:`destructive`},{value:`Investigate`,label:`Investigate`,icon:Dm,variant:`warning`},{value:`Skipped`,label:`Skipped`,icon:km,variant:`secondary`},{value:`Planned`,label:`Planned`,icon:km,variant:`secondary`}],S9=[{label:`Critical`,value:`Critical`,icon:ym},{label:`High`,value:`High`,icon:Vee},{label:`Medium`,value:`Medium`,icon:zee},{label:`Low`,value:`Low`,icon:Lee},{label:`Unranked`,value:`Unranked`,icon:xm}];function C9({Item:e}){let t=ome.find(t=>t.value===e.TestStatus);return t?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(d1,{variant:t.variant,children:(0,I.jsx)(`span`,{children:t.label})})}):null}function w9({columns:e,data:t,pillar:n}){let r=n===`Infrastructure`?`Severity`:`Risk`,[i,a]=_.useState([{id:`TestRisk`,desc:!1},{id:`TestStatus`,desc:!1}]),[o,s]=_.useState([]),[c,l]=_.useState(``),[u,d]=_.useState([]),[f,p]=_.useState([]),[m,h]=_.useState([]),[g,v]=_.useState(!1),[y,b]=_.useState({TestImpact:!1,TestImplementationCost:!1,TestId:!1,TestSfiPillar:!1,TestMinimumLicense:!1,TestCategory:n===`Devices`}),[x,S]=_.useState({}),C=_.useMemo(()=>n?t.filter(e=>Array.isArray(e.TestPillar)?e.TestPillar.includes(n):e.TestPillar===n):t,[t,n]);_.useEffect(()=>{p([])},[n]);let w=_.useMemo(()=>{let e=C;return u.length>0&&(e=e.filter(e=>e.TestSfiPillar&&u.includes(e.TestSfiPillar))),f.length>0&&(e=e.filter(e=>e.TestRisk&&f.includes(e.TestRisk))),e=m.length>0?e.filter(e=>e.TestStatus&&m.includes(e.TestStatus)):e.filter(e=>e.TestStatus!==`Planned`&&(g||e.TestStatus!==`Skipped`)),e},[C,u,f,m,g]),T=_.useMemo(()=>{let e=C;return u.length>0&&(e=e.filter(e=>e.TestSfiPillar&&u.includes(e.TestSfiPillar))),f.length>0&&(e=e.filter(e=>e.TestRisk&&f.includes(e.TestRisk))),e.some(e=>e.TestStatus===`Skipped`)},[C,u,f]),E=_.useMemo(()=>{let e=C.map(e=>e.TestSfiPillar).filter(e=>e!=null);return Array.from(new Set(e)).sort()},[C]),D=_.useMemo(()=>{let e=C.map(e=>e.TestRisk).filter(e=>e!=null),t=Array.from(new Set(e)),n=[`Critical`,`High`,`Medium`,`Low`,`Unranked`];return t.sort((e,t)=>{let r=n.indexOf(e),i=n.indexOf(t);return r!==-1&&i!==-1?r-i:r===-1?i===-1?e.localeCompare(t):1:-1})},[C]),O=_.useMemo(()=>{let e=C.map(e=>e.TestStatus).filter(e=>e!=null),t=Array.from(new Set(e)),n=[`Passed`,`Failed`,`Planned`];return t.sort((e,t)=>{let r=n.indexOf(e),i=n.indexOf(t);return r!==-1&&i!==-1?r-i:r===-1?i===-1?e.localeCompare(t):1:-1})},[C]),k=e=>e.includes(`Monitor and detect`)?Zs:e.includes(`Protect engineering`)?mc:e.includes(`Protect identities`)?tc:e.includes(`Protect tenants`)?Hs:e.includes(`Accelerate response`)?gc:lc,A=L2({data:w,columns:e,meta:{riskLabel:r},enableRowSelection:!0,getCoreRowModel:D2(),onSortingChange:a,getSortedRowModel:M2(),onGlobalFilterChange:l,onColumnFiltersChange:s,getFilteredRowModel:j2(),onColumnVisibilityChange:b,onRowSelectionChange:e=>{S({}),S(e)},state:{sorting:i,columnFilters:o,globalFilter:c,columnVisibility:y,rowSelection:x}}),[j,M]=_.useState(!1),[N,P]=_.useState(null),F=N?.TestPillar??null,ee=Array.isArray(F)?F.includes(`Infrastructure`):F===`Infrastructure`,te=ee?[Ype,ame]:[];return(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`div`,{className:`flex items-center py-4 justify-between`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-4`,children:[(0,I.jsx)(x9,{placeholder:`Search by name...`,value:c??``,onChange:e=>A.setGlobalFilter(String(e.target.value)),className:`max-w-sm`}),(0,I.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,I.jsxs)(`span`,{className:`text-xs font-medium text-muted-foreground mr-1`,children:[r,`:`]}),D.map(e=>{let n=f.includes(e),r=t.filter(t=>t.TestRisk===e).length;return(0,I.jsx)(zc,{variant:n?`default`:`outline`,size:`sm`,onClick:()=>{p(n?t=>t.filter(t=>t!==e):t=>[...t,e])},className:`text-xs h-6 px-3 py-1 rounded-full ${n?`bg-purple-600 hover:bg-purple-700 text-white`:`hover:bg-purple-50 hover:text-purple-700 hover:border-purple-300 dark:hover:bg-purple-950 dark:hover:text-purple-300`}`,title:`${e} (${r} tests)`,children:e},e)})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,I.jsx)(`span`,{className:`text-xs font-medium text-muted-foreground mr-1`,children:`Status:`}),O.map(e=>{let n=m.includes(e),r=t.filter(t=>t.TestStatus===e).length;return(0,I.jsx)(zc,{variant:n?`default`:`outline`,size:`sm`,onClick:()=>{h(n?t=>t.filter(t=>t!==e):t=>[...t,e])},className:`text-xs h-6 px-3 py-1 rounded-full ${((e,t)=>e===`Passed`?t?`bg-green-600 hover:bg-green-700 text-white`:`hover:bg-green-50 hover:text-green-700 hover:border-green-300 dark:hover:bg-green-950 dark:hover:text-green-300`:e===`Failed`?t?`bg-red-600 hover:bg-red-700 text-white`:`hover:bg-red-50 hover:text-red-700 hover:border-red-300 dark:hover:bg-red-950 dark:hover:text-red-300`:t?`bg-gray-600 hover:bg-gray-700 text-white`:`hover:bg-gray-50 hover:text-gray-700 hover:border-gray-300 dark:hover:bg-gray-950 dark:hover:text-gray-300`)(e,n)}`,title:`${e} (${r} tests)`,children:e},e)})]})]}),(0,I.jsx)(`div`,{className:`flex items-center gap-4`,children:(0,I.jsxs)(am,{children:[(0,I.jsx)(om,{asChild:!0,children:(0,I.jsx)(zc,{variant:`outline`,size:`sm`,children:(0,I.jsx)(Xs,{className:`h-4 w-4`})})}),(0,I.jsx)(sm,{align:`end`,children:A.getAllColumns().filter(e=>e.getCanHide()).filter(e=>n!==`Infrastructure`||![`TestImpact`,`TestImplementationCost`,`TestMinimumLicense`].includes(e.id)).map(e=>{let t=e.id===`TestRisk`?r:e.columnDef.meta?.label??e.id;return(0,I.jsx)(lm,{className:`capitalize`,checked:e.getIsVisible(),onCheckedChange:t=>e.toggleVisibility(!!t),children:t},e.id)})})]})})]}),(0,I.jsxs)(`div`,{className:`mb-4`,children:[(0,I.jsxs)(`div`,{className:`flex items-center justify-between mb-3`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(`span`,{className:`text-sm font-medium`,children:`Filter by SFI Pillar:`}),u.length>0&&(0,I.jsxs)(zc,{variant:`ghost`,size:`sm`,onClick:()=>d([]),className:`h-6 px-2 text-xs text-muted-foreground hover:text-foreground`,children:[`Clear All (`,u.length,`)`]})]}),(0,I.jsxs)(`div`,{className:`flex flex-col items-end gap-1`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-4`,children:[(u.length>0||f.length>0||m.length>0||g)&&(0,I.jsx)(zc,{variant:`ghost`,size:`sm`,onClick:()=>{d([]),p([]),h([]),v(!1)},className:`h-6 px-2 text-xs text-muted-foreground hover:text-foreground`,children:`Clear All Filters`}),(0,I.jsxs)(`div`,{className:`text-xs text-muted-foreground`,children:[`Showing `,w.length,` of `,C.length,` tests`]})]}),T&&(0,I.jsxs)(`label`,{className:`flex items-center gap-2 cursor-pointer select-none w-fit`,children:[(0,I.jsx)(`input`,{type:`checkbox`,checked:g,onChange:e=>v(e.target.checked),className:`h-3.5 w-3.5 rounded border-gray-300 accent-gray-600 cursor-pointer`}),(0,I.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:`Show skipped tests`})]})]})]}),(0,I.jsx)(`div`,{className:`flex flex-wrap gap-2`,children:E.map(e=>{let n=u.includes(e),r=t.filter(t=>t.TestSfiPillar===e).length,i=k(e);return(0,I.jsxs)(zc,{variant:n?`default`:`outline`,size:`sm`,onClick:()=>{d(n?t=>t.filter(t=>t!==e):t=>[...t,e])},className:`text-xs max-w-96 h-auto py-1 px-4 rounded-full ${n?`bg-blue-600 hover:bg-blue-700 text-white`:`hover:bg-blue-50 hover:text-blue-700 hover:border-blue-300 dark:hover:bg-blue-950 dark:hover:text-blue-300`}`,title:`${e} (${r} tests)`,children:[(0,I.jsx)(i,{className:`mr-2 h-3 w-3 flex-shrink-0`}),(0,I.jsx)(`span`,{className:`whitespace-normal text-left leading-tight`,children:e})]},e)})})]}),(0,I.jsx)(`div`,{className:`rounded-md border`,children:(0,I.jsxs)(R2,{children:[(0,I.jsx)(z2,{children:A.getHeaderGroups().map(e=>(0,I.jsx)(H2,{children:e.headers.map(e=>(0,I.jsx)(U2,{children:e.isPlaceholder?null:N2(e.column.columnDef.header,e.getContext())},e.id))},e.id))}),(0,I.jsx)(B2,{children:A.getRowModel().rows?.length?A.getRowModel().rows.map(e=>(0,I.jsx)(H2,{className:`cursor-pointer`,"data-state":e.getIsSelected()&&`selected`,onClick:()=>{P(e.original),M(!0)},children:e.getVisibleCells().map(e=>(0,I.jsx)(W,{children:N2(e.column.columnDef.cell,e.getContext())},e.id))},e.id)):(0,I.jsx)(H2,{children:(0,I.jsx)(W,{colSpan:e.length,className:`h-24 text-center`,children:`No results.`})})})]})}),(0,I.jsx)(_c,{open:j,onOpenChange:M,children:(0,I.jsxs)(Sc,{side:`right`,className:`md:min-w-[700px] lg:min-w-[900px] overflow-y-auto`,allowMaximize:!0,children:[(0,I.jsx)(Cc,{children:(0,I.jsx)(wc,{className:`text-2xl text-left`,children:N?.TestTitle})}),(0,I.jsx)(`div`,{className:`grid pt-10 gap-6`,children:(0,I.jsx)(vW,{children:(0,I.jsx)(yW,{children:(0,I.jsxs)(`div`,{className:`mt-2 text-sm ${ee?`flex flex-col gap-y-2`:`grid grid-cols-3 gap-y-2`}`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(uc,{className:`h-4 w-4 text-foreground`}),(0,I.jsx)(`span`,{className:`font-semibold`,children:ee?`Severity:`:`Risk:`}),(0,I.jsx)(`span`,{children:N?.TestRisk??`N/A`})]}),!ee&&(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(pc,{className:`h-4 w-4 text-foreground`}),(0,I.jsx)(`span`,{className:`font-semibold`,children:`User Impact:`}),(0,I.jsx)(`span`,{children:N?.TestImpact??`N/A`})]}),!ee&&(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(sc,{className:`h-4 w-4 text-foreground`}),(0,I.jsx)(`span`,{className:`font-semibold`,children:`Implementation Effort:`}),(0,I.jsx)(`span`,{children:N?.TestImplementationCost??`N/A`})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(Qs,{className:`h-4 w-4 text-foreground`}),(0,I.jsx)(`span`,{className:`font-semibold`,children:`Test ID:`}),(0,I.jsx)(`span`,{children:N?.TestId??`N/A`})]}),!ee&&(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(zs,{className:`h-4 w-4 text-foreground`}),(0,I.jsx)(`span`,{className:`font-semibold`,children:`License:`}),(0,I.jsx)(`div`,{className:`flex items-center gap-1 flex-wrap`,children:N?.TestMinimumLicense&&Array.isArray(N.TestMinimumLicense)?N.TestMinimumLicense.map((e,t)=>(0,I.jsx)(`span`,{className:`px-2 py-0.5 text-xs font-medium bg-purple-100 text-purple-800 dark:bg-purple-900 dark:text-purple-200 rounded-md`,children:e},t)):(0,I.jsx)(`span`,{children:N?.TestMinimumLicense??`N/A`})})]})]})})})}),(0,I.jsxs)(`div`,{className:`grid pt-10 gap-6`,children:[(0,I.jsxs)(vW,{children:[(0,I.jsx)(yW,{children:(0,I.jsx)(bW,{children:(0,I.jsxs)(`div`,{className:`flex`,children:[(0,I.jsx)(`span`,{className:`pr-3`,children:` Test result → `}),(0,I.jsx)(C9,{Item:N})]})})}),(0,I.jsx)(SW,{children:(0,I.jsx)(_8,{className:`prose max-w-fit dark:prose-invert`,remarkPlugins:[d5],rehypePlugins:te,children:N?.TestResult})})]}),(0,I.jsxs)(vW,{children:[(0,I.jsx)(yW,{children:(0,I.jsx)(bW,{children:`What was checked`})}),(0,I.jsx)(SW,{children:(0,I.jsx)(_8,{className:`prose max-w-fit dark:prose-invert`,remarkPlugins:[d5],rehypePlugins:te,children:N?.TestDescription})})]})]})]})})]})}var T9={Critical:0,High:1,Medium:2,Low:3,Unranked:4},E9={Failed:0,Passed:1,Skipped:2,Planned:3},D9=[{accessorKey:`TestId`,header:({column:e})=>(0,I.jsxs)(zc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`ID`,(0,I.jsx)(Rs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=e.getValue(`TestId`),n=t&&t.length>5?t.slice(-5):t;return(0,I.jsx)(`span`,{title:t,children:n})},meta:{label:`ID`}},{accessorKey:`TestTitle`,meta:{label:`Name`},header:({column:e})=>(0,I.jsxs)(zc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`Name`,(0,I.jsx)(Rs,{className:`ml-2 h-4 w-4`})]})},{accessorKey:`TestCategory`,meta:{label:`Category`},header:({column:e})=>(0,I.jsxs)(zc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`Category`,(0,I.jsx)(Rs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=e.getValue(`TestCategory`);return t?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{children:t})}):(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`N/A`})})}},{accessorKey:`TestSfiPillar`,meta:{label:`SFI Pillar`},header:({column:e})=>(0,I.jsxs)(zc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`SFI Pillar`,(0,I.jsx)(Rs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=e.getValue(`TestSfiPillar`);return t?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{className:`px-2 py-1 text-xs font-medium bg-blue-100 text-blue-800 rounded-md`,children:t})}):(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`N/A`})})}},{accessorKey:`TestMinimumLicense`,meta:{label:`Minimum License`},header:({column:e})=>(0,I.jsxs)(zc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`Min. License`,(0,I.jsx)(Rs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=e.getValue(`TestMinimumLicense`);if(!t)return(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`N/A`})});let n=Array.isArray(t)?t:[t];return n.length===0?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`N/A`})}):(0,I.jsx)(`div`,{className:`flex items-center gap-1 flex-wrap`,children:n.map((e,t)=>(0,I.jsx)(`span`,{className:`px-2 py-1 text-xs font-medium bg-purple-100 text-purple-800 rounded-md`,children:e},t))})}},{accessorKey:`TestImpact`,meta:{label:`User Impact`},header:({column:e})=>(0,I.jsxs)(zc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`User Impact`,(0,I.jsx)(Rs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=S9.find(t=>t.value===e.getValue(`TestImpact`));return t?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{children:t.label})}):null}},{accessorKey:`TestImplementationCost`,meta:{label:`Implementation Effort`},header:({column:e})=>(0,I.jsxs)(zc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`Imp. Effort`,(0,I.jsx)(Rs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=S9.find(t=>t.value===e.getValue(`TestImplementationCost`));return t?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{children:t.label})}):null}},{accessorKey:`TestRisk`,meta:{label:`Risk`},sortingFn:(e,t,n)=>(T9[e.getValue(n)]??1/0)-(T9[t.getValue(n)]??1/0),header:({column:e,table:t})=>{let n=t.options.meta?.riskLabel??`Risk`;return(0,I.jsxs)(zc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[n,(0,I.jsx)(Rs,{className:`ml-2 h-4 w-4`})]})},cell:({row:e})=>{let t=S9.find(t=>t.value===e.getValue(`TestRisk`));return t?(0,I.jsxs)(`div`,{className:`flex items-center`,children:[t.icon&&(0,I.jsx)(t.icon,{className:`mr-2 h-4 w-4 text-muted-foreground`}),(0,I.jsx)(`span`,{children:t.label})]}):null}},{accessorKey:`TestStatus`,meta:{label:`Status`},sortingFn:(e,t,n)=>(E9[e.getValue(n)]??3)-(E9[t.getValue(n)]??3),header:({column:e})=>(0,I.jsxs)(zc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`Status`,(0,I.jsx)(Rs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>(0,I.jsx)(C9,{Item:e.original})}];function sme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(l0,{children:(0,I.jsx)(u0,{children:`Identity`})}),(0,I.jsxs)(vW,{children:[(0,I.jsxs)(yW,{children:[(0,I.jsx)(bW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsxs)(xW,{children:[`The results presented below are based on the security principles detailed in the`,` `,(0,I.jsx)(`a`,{href:`https://learn.microsoft.com/en-us/entra/fundamentals/configure-security`,target:`_blank`,rel:`noopener noreferrer`,className:`text-primary font-medium underline underline-offset-4 hover:underline`,children:`Configuring Microsoft Entra for increased security`}),` `,`guide.`]})]}),(0,I.jsx)(SW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(w9,{columns:D9,data:z.Tests,pillar:`Identity`})})]})]})}var O9=`Tabs`,[cme,lme]=pi(O9,[jd]),k9=jd(),[ume,A9]=cme(O9),j9=_.forwardRef((e,t)=>{let{__scopeTabs:n,value:r,onValueChange:i,defaultValue:a,orientation:o=`horizontal`,dir:s,activationMode:c=`automatic`,...l}=e,u=Jc(s),[d,f]=bi({prop:r,onChange:i,defaultProp:a??``,caller:O9});return(0,I.jsx)(ume,{scope:n,baseId:vi(),value:d,onValueChange:f,orientation:o,dir:u,activationMode:c,children:(0,I.jsx)(ki.div,{dir:u,"data-orientation":o,...l,ref:t})})});j9.displayName=O9;var M9=`TabsList`,N9=_.forwardRef((e,t)=>{let{__scopeTabs:n,loop:r=!0,...i}=e,a=A9(M9,n),o=k9(n);return(0,I.jsx)(Ud,{asChild:!0,...o,orientation:a.orientation,dir:a.dir,loop:r,children:(0,I.jsx)(ki.div,{role:`tablist`,"aria-orientation":a.orientation,...i,ref:t})})});N9.displayName=M9;var P9=`TabsTrigger`,F9=_.forwardRef((e,t)=>{let{__scopeTabs:n,value:r,disabled:i=!1,...a}=e,o=A9(P9,n),s=k9(n),c=R9(o.baseId,r),l=z9(o.baseId,r),u=r===o.value;return(0,I.jsx)(Wd,{asChild:!0,...s,focusable:!i,active:u,children:(0,I.jsx)(ki.button,{type:`button`,role:`tab`,"aria-selected":u,"aria-controls":l,"data-state":u?`active`:`inactive`,"data-disabled":i?``:void 0,disabled:i,id:c,...a,ref:t,onMouseDown:ci(e.onMouseDown,e=>{!i&&e.button===0&&e.ctrlKey===!1?o.onValueChange(r):e.preventDefault()}),onKeyDown:ci(e.onKeyDown,e=>{[` `,`Enter`].includes(e.key)&&o.onValueChange(r)}),onFocus:ci(e.onFocus,()=>{let e=o.activationMode!==`manual`;!u&&!i&&e&&o.onValueChange(r)})})})});F9.displayName=P9;var I9=`TabsContent`,L9=_.forwardRef((e,t)=>{let{__scopeTabs:n,value:r,forceMount:i,children:a,...o}=e,s=A9(I9,n),c=R9(s.baseId,r),l=z9(s.baseId,r),u=r===s.value,d=_.useRef(u);return _.useEffect(()=>{let e=requestAnimationFrame(()=>d.current=!1);return()=>cancelAnimationFrame(e)},[]),(0,I.jsx)(da,{present:i||u,children:({present:n})=>(0,I.jsx)(ki.div,{"data-state":u?`active`:`inactive`,"data-orientation":s.orientation,role:`tabpanel`,"aria-labelledby":c,hidden:!n,id:l,tabIndex:0,...o,ref:t,style:{...e.style,animationDuration:d.current?`0s`:void 0},children:n&&a})})});L9.displayName=I9;function R9(e,t){return`${e}-trigger-${t}`}function z9(e,t){return`${e}-content-${t}`}var dme=j9,B9=N9,V9=F9,H9=L9,fme=dme,U9=_.forwardRef(({className:e,...t},n)=>(0,I.jsx)(B9,{ref:n,className:L(`inline-flex h-10 items-center justify-center rounded-md bg-muted p-1 text-muted-foreground`,e),...t}));U9.displayName=B9.displayName;var W9=_.forwardRef(({className:e,...t},n)=>(0,I.jsx)(V9,{ref:n,className:L(`inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow-sm`,e),...t}));W9.displayName=V9.displayName;var G9=_.forwardRef(({className:e,...t},n)=>(0,I.jsx)(H9,{ref:n,className:L(`mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2`,e),...t}));G9.displayName=H9.displayName;function pme(){let e=z.TenantInfo?.ConfigWindowsEnrollment,t=z.TenantInfo?.ConfigDeviceEnrollmentRestriction,n=z.TenantInfo?.ConfigDeviceCompliancePolicies,r=z.TenantInfo?.ConfigDeviceAppProtectionPolicies;return(0,I.jsxs)(`div`,{className:`p-4`,children:[(0,I.jsx)(`h2`,{className:`text-lg font-semibold mb-4`,children:`Windows automatic enrollment`}),(0,I.jsx)(`p`,{className:`text-sm text-gray-600 mb-4`,children:`Configure Windows devices to enroll when they join or register with Azure Active Directory. We recommend setting this to all instead of selected groups and using enrollment restrictions to configure the intake of users.`}),e&&e.length>0?(0,I.jsxs)(R2,{children:[(0,I.jsx)(z2,{children:(0,I.jsxs)(H2,{children:[(0,I.jsx)(U2,{children:`Type`}),(0,I.jsx)(U2,{children:`Policy Name`}),(0,I.jsx)(U2,{children:`Applies To`}),(0,I.jsx)(U2,{children:`Groups`})]})}),(0,I.jsx)(B2,{children:e.map((e,t)=>(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{children:e.Type}),(0,I.jsx)(W,{children:e.PolicyName}),(0,I.jsx)(W,{children:e.AppliesTo}),(0,I.jsx)(W,{children:e.Groups})]},t))})]}):(0,I.jsx)(`p`,{children:`No Windows enrollment configuration found.`}),(0,I.jsx)(`h2`,{className:`text-lg font-semibold mb-4 mt-8`,children:`Enrollment device platform restrictions`}),(0,I.jsx)(`p`,{className:`text-sm text-gray-600 mb-4`,children:`Device enrollment restrictions let you restrict devices from enrolling in Intune based on certain device attributes. Device platform restrictions restrict devices based on device platform, version, manufacturer, or ownership type.`}),t&&t.length>0?(0,I.jsxs)(R2,{children:[(0,I.jsx)(z2,{children:(0,I.jsxs)(H2,{children:[(0,I.jsx)(U2,{children:`Platform`}),(0,I.jsx)(U2,{children:`Priority`}),(0,I.jsx)(U2,{children:`Name`}),(0,I.jsx)(U2,{children:`MDM`}),(0,I.jsx)(U2,{children:`Min Ver`}),(0,I.jsx)(U2,{children:`Max Ver`}),(0,I.jsx)(U2,{children:`Personally owned`}),(0,I.jsx)(U2,{children:`Blocked manuf.`}),(0,I.jsx)(U2,{children:`Scope`}),(0,I.jsx)(U2,{children:`Assigned to`})]})}),(0,I.jsx)(B2,{children:t.map((e,t)=>(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{children:e.Platform}),(0,I.jsx)(W,{children:e.Priority}),(0,I.jsx)(W,{children:e.Name}),(0,I.jsx)(W,{children:e.MDM}),(0,I.jsx)(W,{children:e.MinVer}),(0,I.jsx)(W,{children:e.MaxVer}),(0,I.jsx)(W,{children:e.PersonallyOwned}),(0,I.jsx)(W,{children:e.BlockedManufacturers}),(0,I.jsx)(W,{children:e.Scope}),(0,I.jsx)(W,{children:e.AssignedTo})]},t))})]}):(0,I.jsx)(`p`,{children:`No device enrollment restrictions found.`}),(0,I.jsx)(`h2`,{className:`text-lg font-semibold mb-4 mt-8`,children:`Compliance policies`}),(0,I.jsx)(`p`,{className:`text-sm text-gray-600 mb-4`,children:`Device compliance policies define the rules and settings that devices must meet to be considered compliant. These policies help ensure that devices accessing organizational resources meet minimum security requirements.`}),n&&n.length>0?(0,I.jsx)(`div`,{className:`overflow-x-auto`,children:(0,I.jsxs)(R2,{children:[(0,I.jsx)(z2,{children:(0,I.jsxs)(H2,{children:[(0,I.jsx)(U2,{className:`font-semibold`,children:`Setting`}),n.map((e,t)=>(0,I.jsx)(U2,{className:`min-w-[150px]`,children:e.PolicyName},t))]})}),(0,I.jsxs)(B2,{children:[(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Platform`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.Platform},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Defender ATP`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.DefenderForEndPoint},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Min OS Version`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.MinOsVersion},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Max OS Version`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.MaxOsVersion},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Require Password`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.RequirePswd},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Min Password Length`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.MinPswdLength},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Password Type`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.PasswordType},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Password Expiry Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.PswdExpiryDays},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Previous Passwords Blocked`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.CountOfPreviousPswdToBlock},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Max Inactivity Min`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.MaxInactivityMin},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Require Encryption`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.RequireEncryption},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Rooted/Jailbroken`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.RootedJailbrokenDevices},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Max Threat Level`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.MaxDeviceThreatLevel},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Require Firewall`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.RequireFirewall},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Push Notification Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.ActionForNoncomplianceDaysPushNotification},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Send Email Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.ActionForNoncomplianceDaysSendEmail},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Remote Lock Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.ActionForNoncomplianceDaysRemoteLock},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Block Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.ActionForNoncomplianceDaysBlock},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Retire Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.ActionForNoncomplianceDaysRetire},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Scope`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.Scope},t))]})]})]})}):(0,I.jsx)(`p`,{children:`No device compliance policies found.`}),(0,I.jsx)(`h2`,{className:`text-lg font-semibold mb-4 mt-8`,children:`App protection policies`}),(0,I.jsx)(`p`,{className:`text-sm text-gray-600 mb-4`,children:`App protection policies (APP) are rules that ensure an organization's data remains safe or contained in a managed app. A policy can be a rule that is enforced when the user attempts to access or move "corporate" data, or a set of actions that are prohibited or monitored when the user is inside the app. A managed app is an app that has app protection policies applied to it, and can be managed by Intune.`}),r&&r.length>0?(0,I.jsx)(`div`,{className:`overflow-x-auto`,children:(0,I.jsxs)(R2,{children:[(0,I.jsx)(z2,{children:(0,I.jsxs)(H2,{children:[(0,I.jsx)(U2,{className:`font-semibold`,children:`Setting`}),r.map((e,t)=>(0,I.jsx)(U2,{className:`min-w-[150px]`,children:e.Name},t))]})}),(0,I.jsxs)(B2,{children:[(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Platform`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.Platform},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Public Apps`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.AppsPublic},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Custom Apps`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.AppsCustom},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Backup to Cloud`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.BackupOrgDataToICloudOrGoogle},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Send Data to Other Apps`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.SendOrgDataToOtherApps},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Apps to Exempt`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.AppsToExempt},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Save Copies`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.SaveCopiesOfOrgData},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Allow Save to Selected Services`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.AllowUserToSaveCopiesToSelectedServices},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Transfer Telecom Data To`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.DataProtectionTransferTelecommunicationDataTo},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Receive Data From Other Apps`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.DataProtectionReceiveDataFromOtherApps},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Rooted/Jailbroken Devices`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.ConditionalLaunchDeviceRootedJailbrokenDevices},t))]}),(0,I.jsxs)(H2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Scope`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.Scope},t))]})]})]})}):(0,I.jsx)(`p`,{children:`No app protection policies found.`})]})}function mme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(l0,{children:(0,I.jsx)(u0,{children:`Devices`})}),(0,I.jsxs)(fme,{defaultValue:`assessment`,className:`w-full`,children:[(0,I.jsxs)(U9,{className:`grid w-full grid-cols-2`,children:[(0,I.jsxs)(W9,{value:`assessment`,className:`flex items-center gap-2`,children:[(0,I.jsx)(Us,{className:`h-4 w-4`}),`Assessment results`]}),(0,I.jsxs)(W9,{value:`config`,className:`flex items-center gap-2`,children:[(0,I.jsx)(sc,{className:`h-4 w-4`}),`Config`]})]}),(0,I.jsx)(G9,{value:`assessment`,className:`space-y-4`,children:(0,I.jsxs)(vW,{children:[(0,I.jsxs)(yW,{children:[(0,I.jsx)(bW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsxs)(xW,{children:[`The results presented below are based on the security principles detailed in the`,` `,(0,I.jsx)(`a`,{href:`https://learn.microsoft.com/intune/intune-service/protect/zero-trust-configure-security`,target:`_blank`,rel:`noopener noreferrer`,className:`text-primary font-medium underline underline-offset-4 hover:underline`,children:`Configuring Microsoft Intune for increased security`}),` `,`guide.`]})]}),(0,I.jsx)(SW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(w9,{columns:D9,data:z.Tests,pillar:`Devices`})})]})}),(0,I.jsx)(G9,{value:`config`,className:`space-y-4`,children:(0,I.jsxs)(vW,{children:[(0,I.jsxs)(yW,{children:[(0,I.jsx)(bW,{className:`mb-3`,children:`Device Configuration`}),(0,I.jsx)(xW,{children:`Device configuration settings and options.`})]}),(0,I.jsx)(SW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(pme,{})})]})})]})]})}function hme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(l0,{children:(0,I.jsx)(u0,{children:`Apps`})}),(0,I.jsx)(vW,{children:(0,I.jsxs)(yW,{children:[(0,I.jsx)(bW,{children:`Coming soon`}),(0,I.jsx)(xW,{children:`He that can have patience can have what he will. - Benjamin Franklin`})]})})]})}function K9(e){switch(e){case`Passed`:return`success`;case`Failed`:return`destructive`;case`Investigate`:return`warning`;default:return`secondary`}}var gme=({data:e})=>{let t=(0,_.useContext)(cr),n=t.theme===`dark`||t.theme===`system`&&window.matchMedia(`(prefers-color-scheme: dark)`).matches;return(0,I.jsxs)(I.Fragment,{children:[(e.overallStatus||e.gates?.length)&&(0,I.jsxs)(`div`,{className:`mb-3 flex flex-wrap items-center gap-x-5 gap-y-2 text-sm`,"aria-label":`Microsoft 365 protection circuit verdicts`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2 font-medium`,children:[(0,I.jsx)(`span`,{children:`Circuit`}),(0,I.jsx)(d1,{variant:K9(e.overallStatus),children:e.overallStatus??`Unavailable`})]}),e.gates?.map(e=>(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(`span`,{children:e.name}),(0,I.jsx)(d1,{variant:K9(e.status),children:e.status})]},e.testId))]}),(0,I.jsx)(`div`,{className:`h-80`,children:(0,I.jsx)(o1,{isDark:n,data:{nodes:[{id:`Total M365 traffic`,nodeColor:`hsl(215, 16%, 47%)`},{id:`Unprotected - not acquired`,nodeColor:`hsl(0, 84%, 60%)`},{id:`Acquired via Global Secure Access`,nodeColor:`hsl(142, 71%, 45%)`},{id:`Enforced - compliant network`,nodeColor:`hsl(142, 71%, 45%)`},{id:`Acquired but not enforced`,nodeColor:`hsl(0, 84%, 60%)`},{id:`Acquired, enforcement needs review`,nodeColor:`hsl(45, 93%, 47%)`},{id:`Acquisition needs review`,nodeColor:`hsl(45, 93%, 47%)`},{id:`Acquisition unavailable`,nodeColor:`hsl(215, 16%, 47%)`},{id:`Enforcement unavailable`,nodeColor:`hsl(215, 16%, 47%)`}],links:e.nodes}})})]})};function _me(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(l0,{children:(0,I.jsx)(u0,{children:`Network`})}),(y1()||S1()||z.TenantInfo?.OverviewM365ProtectionCircuit?.nodes)&&(0,I.jsx)(vW,{className:`mb-6`,children:(0,I.jsx)(SW,{className:`px-4 pb-3 pt-1`,children:(0,I.jsx)(mg,{type:`single`,collapsible:!0,defaultValue:`network-insights`,className:`w-full`,children:(0,I.jsxs)(hg,{value:`network-insights`,className:`border-b-0`,children:[(0,I.jsx)(gg,{className:`py-3 hover:no-underline`,children:(0,I.jsxs)(`div`,{className:`flex items-center gap-2 text-left`,children:[(0,I.jsx)(ac,{className:`size-5`}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-base font-semibold`,children:`Network insights`}),(0,I.jsx)(`div`,{className:`text-sm font-normal text-muted-foreground`,children:`Secure Web Gateway, Private Access, and Microsoft 365 protection posture.`})]})]})}),(0,I.jsxs)(_g,{className:`pb-2`,children:[y1()&&(0,I.jsxs)(vW,{className:`h-full`,children:[(0,I.jsxs)(yW,{className:`flex-row space-y-0 pb-2`,children:[(0,I.jsx)(cc,{className:`size-8 pr-2`}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(bW,{className:`text-2xl tabular-nums`,children:`SWG defense-in-depth`}),(0,I.jsx)(xW,{className:`mt-1`,children:`Secure Web Gateway defense layers — internet traffic inspection posture`})]})]}),(0,I.jsx)(SW,{children:(0,I.jsx)(b1,{})})]}),(S1()||z.TenantInfo?.OverviewM365ProtectionCircuit?.nodes)&&(0,I.jsxs)(`div`,{className:`mt-6 grid grid-cols-1 items-stretch gap-6 lg:grid-cols-2`,children:[S1()&&(0,I.jsx)(C1,{}),z.TenantInfo?.OverviewM365ProtectionCircuit?.nodes&&(0,I.jsxs)(vW,{className:`h-full`,children:[(0,I.jsxs)(yW,{className:`flex-row space-y-0 pb-2`,children:[(0,I.jsx)(cc,{className:`size-8 pr-2`}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(bW,{className:`text-2xl tabular-nums`,children:`Microsoft 365 protection circuit`}),(0,I.jsx)(xW,{className:`mt-1`,children:`Global Secure Access acquisition and compliant network enforcement`})]})]}),(0,I.jsx)(SW,{className:`w-full`,children:(0,I.jsx)(gme,{data:z.TenantInfo.OverviewM365ProtectionCircuit})}),(0,I.jsx)(CW,{className:`text-sm text-muted-foreground`,children:z.TenantInfo.OverviewM365ProtectionCircuit.description})]})]})]})]})})})}),(0,I.jsxs)(vW,{children:[(0,I.jsxs)(yW,{children:[(0,I.jsx)(bW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsxs)(xW,{children:[`The results presented below are based on the security principles detailed in the`,` `,(0,I.jsx)(`a`,{href:`https://learn.microsoft.com/en-us/entra/fundamentals/configure-security`,target:`_blank`,rel:`noopener noreferrer`,className:`text-primary font-medium underline underline-offset-4 hover:underline`,children:`Configuring Microsoft Entra and Azure for increased security`}),` `,`guide.`]})]}),(0,I.jsx)(SW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(w9,{columns:D9,data:z.Tests,pillar:`Network`})})]})]})}function vme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(l0,{children:(0,I.jsx)(u0,{children:`Infrastructure`})}),(0,I.jsxs)(vW,{children:[(0,I.jsxs)(yW,{children:[(0,I.jsx)(bW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsx)(xW,{children:`The results below are based on Microsoft Defender for Cloud recommendations identified in the scanned environment. You must apply the following tag to each Azure subscription which you want to be included in the scan: ZeroTrustAssessment:Infrastructure.`})]}),(0,I.jsx)(SW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(w9,{columns:D9,data:z.Tests,pillar:`Infrastructure`})})]})]})}function yme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(l0,{children:(0,I.jsx)(u0,{children:`Data`})}),(0,I.jsxs)(vW,{children:[(0,I.jsxs)(yW,{children:[(0,I.jsx)(bW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsxs)(xW,{children:[`The results presented below are based on the security principles detailed in the`,` `,(0,I.jsx)(`a`,{href:`https://learn.microsoft.com/en-us/purview/configure-security`,target:`_blank`,rel:`noopener noreferrer`,className:`text-primary font-medium underline underline-offset-4 hover:underline`,children:`Configuring Microsoft Purview for increased security`}),` `,`guide.`]})]}),(0,I.jsx)(SW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(w9,{columns:D9,data:z.Tests,pillar:`Data`})})]})]})}function bme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(l0,{children:(0,I.jsx)(u0,{children:`Security Operations`})}),(0,I.jsxs)(vW,{children:[(0,I.jsxs)(yW,{children:[(0,I.jsx)(bW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsx)(xW,{children:`The results presented below are based on Zero Trust security principles for security operations.`})]}),(0,I.jsx)(SW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(w9,{columns:D9,data:z.Tests,pillar:`SecOps`})})]})]})}function xme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(l0,{children:(0,I.jsx)(u0,{children:`AI`})}),(0,I.jsxs)(vW,{children:[(0,I.jsxs)(yW,{children:[(0,I.jsx)(bW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsx)(xW,{children:`The results presented below are based on Zero Trust security principles for AI workloads.`})]}),(0,I.jsx)(SW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(w9,{columns:D9,data:z.Tests,pillar:`AI`})})]})]})}var Sme=zn([{path:`/`,element:(0,I.jsx)(bg,{}),children:[{path:``,element:(0,I.jsx)(J1,{})},{path:`identity`,element:(0,I.jsx)(sme,{})},{path:`devices`,element:(0,I.jsx)(mme,{})},{path:`apps`,element:(0,I.jsx)(hme,{})},{path:`network`,element:(0,I.jsx)(_me,{})},{path:`infrastructure`,element:(0,I.jsx)(vme,{})},{path:`data`,element:(0,I.jsx)(yme,{})},{path:`secops`,element:(0,I.jsx)(bme,{})},{path:`ai`,element:(0,I.jsx)(xme,{})}]},{path:`*`,element:(0,I.jsx)(xg,{})}],{basename:{basename:``}.basename});function Cme(e){if(!e||typeof document>`u`)return;let t=document.head||document.getElementsByTagName(`head`)[0],n=document.createElement(`style`);n.type=`text/css`,t.appendChild(n),n.styleSheet?n.styleSheet.cssText=e:n.appendChild(document.createTextNode(e))}var wme=e=>{switch(e){case`success`:return Dme;case`info`:return kme;case`warning`:return Ome;case`error`:return Ame;default:return null}},Tme=Array(12).fill(0),Eme=({visible:e,className:t})=>_.createElement(`div`,{className:[`sonner-loading-wrapper`,t].filter(Boolean).join(` `),"data-visible":e},_.createElement(`div`,{className:`sonner-spinner`},Tme.map((e,t)=>_.createElement(`div`,{className:`sonner-loading-bar`,key:`spinner-bar-${t}`})))),Dme=_.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 20 20`,fill:`currentColor`,height:`20`,width:`20`},_.createElement(`path`,{fillRule:`evenodd`,d:`M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z`,clipRule:`evenodd`})),Ome=_.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`currentColor`,height:`20`,width:`20`},_.createElement(`path`,{fillRule:`evenodd`,d:`M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003zM12 8.25a.75.75 0 01.75.75v3.75a.75.75 0 01-1.5 0V9a.75.75 0 01.75-.75zm0 8.25a.75.75 0 100-1.5.75.75 0 000 1.5z`,clipRule:`evenodd`})),kme=_.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 20 20`,fill:`currentColor`,height:`20`,width:`20`},_.createElement(`path`,{fillRule:`evenodd`,d:`M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z`,clipRule:`evenodd`})),Ame=_.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 20 20`,fill:`currentColor`,height:`20`,width:`20`},_.createElement(`path`,{fillRule:`evenodd`,d:`M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z`,clipRule:`evenodd`})),jme=_.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:`12`,height:`12`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:`1.5`,strokeLinecap:`round`,strokeLinejoin:`round`},_.createElement(`line`,{x1:`18`,y1:`6`,x2:`6`,y2:`18`}),_.createElement(`line`,{x1:`6`,y1:`6`,x2:`18`,y2:`18`})),Mme=()=>{let[e,t]=_.useState(document.hidden);return _.useEffect(()=>{let e=()=>{t(document.hidden)};return document.addEventListener(`visibilitychange`,e),()=>window.removeEventListener(`visibilitychange`,e)},[]),e},q9=1,J9=new class{constructor(){this.subscribe=e=>(this.subscribers.push(e),()=>{let t=this.subscribers.indexOf(e);this.subscribers.splice(t,1)}),this.publish=e=>{this.subscribers.forEach(t=>t(e))},this.addToast=e=>{this.publish(e),this.toasts=[...this.toasts,e]},this.create=e=>{let{message:t,...n}=e,r=typeof e?.id==`number`||e.id?.length>0?e.id:q9++,i=this.toasts.find(e=>e.id===r),a=e.dismissible===void 0||e.dismissible;return this.dismissedToasts.has(r)&&this.dismissedToasts.delete(r),i?this.toasts=this.toasts.map(n=>n.id===r?(this.publish({...n,...e,id:r,title:t}),{...n,...e,id:r,dismissible:a,title:t}):n):this.addToast({title:t,...n,dismissible:a,id:r}),r},this.dismiss=e=>(e?(this.dismissedToasts.add(e),requestAnimationFrame(()=>this.subscribers.forEach(t=>t({id:e,dismiss:!0})))):this.toasts.forEach(e=>{this.subscribers.forEach(t=>t({id:e.id,dismiss:!0}))}),e),this.message=(e,t)=>this.create({...t,message:e}),this.error=(e,t)=>this.create({...t,message:e,type:`error`}),this.success=(e,t)=>this.create({...t,type:`success`,message:e}),this.info=(e,t)=>this.create({...t,type:`info`,message:e}),this.warning=(e,t)=>this.create({...t,type:`warning`,message:e}),this.loading=(e,t)=>this.create({...t,type:`loading`,message:e}),this.promise=(e,t)=>{if(!t)return;let n;t.loading!==void 0&&(n=this.create({...t,promise:e,type:`loading`,message:t.loading,description:typeof t.description==`function`?void 0:t.description}));let r=Promise.resolve(e instanceof Function?e():e),i=n!==void 0,a,o=r.then(async e=>{if(a=[`resolve`,e],_.isValidElement(e))i=!1,this.create({id:n,type:`default`,message:e});else if(Pme(e)&&!e.ok){i=!1;let r=typeof t.error==`function`?await t.error(`HTTP error! status: ${e.status}`):t.error,a=typeof t.description==`function`?await t.description(`HTTP error! status: ${e.status}`):t.description,o=typeof r==`object`&&!_.isValidElement(r)?r:{message:r};this.create({id:n,type:`error`,description:a,...o})}else if(e instanceof Error){i=!1;let r=typeof t.error==`function`?await t.error(e):t.error,a=typeof t.description==`function`?await t.description(e):t.description,o=typeof r==`object`&&!_.isValidElement(r)?r:{message:r};this.create({id:n,type:`error`,description:a,...o})}else if(t.success!==void 0){i=!1;let r=typeof t.success==`function`?await t.success(e):t.success,a=typeof t.description==`function`?await t.description(e):t.description,o=typeof r==`object`&&!_.isValidElement(r)?r:{message:r};this.create({id:n,type:`success`,description:a,...o})}}).catch(async e=>{if(a=[`reject`,e],t.error!==void 0){i=!1;let r=typeof t.error==`function`?await t.error(e):t.error,a=typeof t.description==`function`?await t.description(e):t.description,o=typeof r==`object`&&!_.isValidElement(r)?r:{message:r};this.create({id:n,type:`error`,description:a,...o})}}).finally(()=>{i&&(this.dismiss(n),n=void 0),t.finally==null||t.finally.call(t)}),s=()=>new Promise((e,t)=>o.then(()=>a[0]===`reject`?t(a[1]):e(a[1])).catch(t));return typeof n!=`string`&&typeof n!=`number`?{unwrap:s}:Object.assign(n,{unwrap:s})},this.custom=(e,t)=>{let n=t?.id||q9++;return this.create({jsx:e(n),id:n,...t}),n},this.getActiveToasts=()=>this.toasts.filter(e=>!this.dismissedToasts.has(e.id)),this.subscribers=[],this.toasts=[],this.dismissedToasts=new Set}},Nme=(e,t)=>{let n=t?.id||q9++;return J9.addToast({title:e,...t,id:n}),n},Pme=e=>e&&typeof e==`object`&&`ok`in e&&typeof e.ok==`boolean`&&`status`in e&&typeof e.status==`number`,Y9=Object.assign(Nme,{success:J9.success,info:J9.info,warning:J9.warning,error:J9.error,custom:J9.custom,message:J9.message,promise:J9.promise,dismiss:J9.dismiss,loading:J9.loading},{getHistory:()=>J9.toasts,getToasts:()=>J9.getActiveToasts()});Cme(`[data-sonner-toaster][dir=ltr],html[dir=ltr]{--toast-icon-margin-start:-3px;--toast-icon-margin-end:4px;--toast-svg-margin-start:-1px;--toast-svg-margin-end:0px;--toast-button-margin-start:auto;--toast-button-margin-end:0;--toast-close-button-start:0;--toast-close-button-end:unset;--toast-close-button-transform:translate(-35%, -35%)}[data-sonner-toaster][dir=rtl],html[dir=rtl]{--toast-icon-margin-start:4px;--toast-icon-margin-end:-3px;--toast-svg-margin-start:0px;--toast-svg-margin-end:-1px;--toast-button-margin-start:0;--toast-button-margin-end:auto;--toast-close-button-start:unset;--toast-close-button-end:0;--toast-close-button-transform:translate(35%, -35%)}[data-sonner-toaster]{position:fixed;width:var(--width);font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--gray1:hsl(0, 0%, 99%);--gray2:hsl(0, 0%, 97.3%);--gray3:hsl(0, 0%, 95.1%);--gray4:hsl(0, 0%, 93%);--gray5:hsl(0, 0%, 90.9%);--gray6:hsl(0, 0%, 88.7%);--gray7:hsl(0, 0%, 85.8%);--gray8:hsl(0, 0%, 78%);--gray9:hsl(0, 0%, 56.1%);--gray10:hsl(0, 0%, 52.3%);--gray11:hsl(0, 0%, 43.5%);--gray12:hsl(0, 0%, 9%);--border-radius:8px;box-sizing:border-box;padding:0;margin:0;list-style:none;outline:0;z-index:999999999;transition:transform .4s ease}@media (hover:none) and (pointer:coarse){[data-sonner-toaster][data-lifted=true]{transform:none}}[data-sonner-toaster][data-x-position=right]{right:var(--offset-right)}[data-sonner-toaster][data-x-position=left]{left:var(--offset-left)}[data-sonner-toaster][data-x-position=center]{left:50%;transform:translateX(-50%)}[data-sonner-toaster][data-y-position=top]{top:var(--offset-top)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--offset-bottom)}[data-sonner-toast]{--y:translateY(100%);--lift-amount:calc(var(--lift) * var(--gap));z-index:var(--z-index);position:absolute;opacity:0;transform:var(--y);touch-action:none;transition:transform .4s,opacity .4s,height .4s,box-shadow .2s;box-sizing:border-box;outline:0;overflow-wrap:anywhere}[data-sonner-toast][data-styled=true]{padding:16px;background:var(--normal-bg);border:1px solid var(--normal-border);color:var(--normal-text);border-radius:var(--border-radius);box-shadow:0 4px 12px rgba(0,0,0,.1);width:var(--width);font-size:13px;display:flex;align-items:center;gap:6px}[data-sonner-toast]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-y-position=top]{top:0;--y:translateY(-100%);--lift:1;--lift-amount:calc(1 * var(--gap))}[data-sonner-toast][data-y-position=bottom]{bottom:0;--y:translateY(100%);--lift:-1;--lift-amount:calc(var(--lift) * var(--gap))}[data-sonner-toast][data-styled=true] [data-description]{font-weight:400;line-height:1.4;color:#3f3f3f}[data-rich-colors=true][data-sonner-toast][data-styled=true] [data-description]{color:inherit}[data-sonner-toaster][data-sonner-theme=dark] [data-description]{color:#e8e8e8}[data-sonner-toast][data-styled=true] [data-title]{font-weight:500;line-height:1.5;color:inherit}[data-sonner-toast][data-styled=true] [data-icon]{display:flex;height:16px;width:16px;position:relative;justify-content:flex-start;align-items:center;flex-shrink:0;margin-left:var(--toast-icon-margin-start);margin-right:var(--toast-icon-margin-end)}[data-sonner-toast][data-promise=true] [data-icon]>svg{opacity:0;transform:scale(.8);transform-origin:center;animation:sonner-fade-in .3s ease forwards}[data-sonner-toast][data-styled=true] [data-icon]>*{flex-shrink:0}[data-sonner-toast][data-styled=true] [data-icon] svg{margin-left:var(--toast-svg-margin-start);margin-right:var(--toast-svg-margin-end)}[data-sonner-toast][data-styled=true] [data-content]{display:flex;flex-direction:column;gap:2px}[data-sonner-toast][data-styled=true] [data-button]{border-radius:4px;padding-left:8px;padding-right:8px;height:24px;font-size:12px;color:var(--normal-bg);background:var(--normal-text);margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end);border:none;font-weight:500;cursor:pointer;outline:0;display:flex;align-items:center;flex-shrink:0;transition:opacity .4s,box-shadow .2s}[data-sonner-toast][data-styled=true] [data-button]:focus-visible{box-shadow:0 0 0 2px rgba(0,0,0,.4)}[data-sonner-toast][data-styled=true] [data-button]:first-of-type{margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end)}[data-sonner-toast][data-styled=true] [data-cancel]{color:var(--normal-text);background:rgba(0,0,0,.08)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-styled=true] [data-cancel]{background:rgba(255,255,255,.3)}[data-sonner-toast][data-styled=true] [data-close-button]{position:absolute;left:var(--toast-close-button-start);right:var(--toast-close-button-end);top:0;height:20px;width:20px;display:flex;justify-content:center;align-items:center;padding:0;color:var(--gray12);background:var(--normal-bg);border:1px solid var(--gray4);transform:var(--toast-close-button-transform);border-radius:50%;cursor:pointer;z-index:1;transition:opacity .1s,background .2s,border-color .2s}[data-sonner-toast][data-styled=true] [data-close-button]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-styled=true] [data-disabled=true]{cursor:not-allowed}[data-sonner-toast][data-styled=true]:hover [data-close-button]:hover{background:var(--gray2);border-color:var(--gray5)}[data-sonner-toast][data-swiping=true]::before{content:'';position:absolute;left:-100%;right:-100%;height:100%;z-index:-1}[data-sonner-toast][data-y-position=top][data-swiping=true]::before{bottom:50%;transform:scaleY(3) translateY(50%)}[data-sonner-toast][data-y-position=bottom][data-swiping=true]::before{top:50%;transform:scaleY(3) translateY(-50%)}[data-sonner-toast][data-swiping=false][data-removed=true]::before{content:'';position:absolute;inset:0;transform:scaleY(2)}[data-sonner-toast][data-expanded=true]::after{content:'';position:absolute;left:0;height:calc(var(--gap) + 1px);bottom:100%;width:100%}[data-sonner-toast][data-mounted=true]{--y:translateY(0);opacity:1}[data-sonner-toast][data-expanded=false][data-front=false]{--scale:var(--toasts-before) * 0.05 + 1;--y:translateY(calc(var(--lift-amount) * var(--toasts-before))) scale(calc(-1 * var(--scale)));height:var(--front-toast-height)}[data-sonner-toast]>*{transition:opacity .4s}[data-sonner-toast][data-x-position=right]{right:0}[data-sonner-toast][data-x-position=left]{left:0}[data-sonner-toast][data-expanded=false][data-front=false][data-styled=true]>*{opacity:0}[data-sonner-toast][data-visible=false]{opacity:0;pointer-events:none}[data-sonner-toast][data-mounted=true][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset)));height:var(--initial-height)}[data-sonner-toast][data-removed=true][data-front=true][data-swipe-out=false]{--y:translateY(calc(var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset) + var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=false]{--y:translateY(40%);opacity:0;transition:transform .5s,opacity .2s}[data-sonner-toast][data-removed=true][data-front=false]::before{height:calc(var(--initial-height) + 20%)}[data-sonner-toast][data-swiping=true]{transform:var(--y) translateY(var(--swipe-amount-y,0)) translateX(var(--swipe-amount-x,0));transition:none}[data-sonner-toast][data-swiped=true]{user-select:none}[data-sonner-toast][data-swipe-out=true][data-y-position=bottom],[data-sonner-toast][data-swipe-out=true][data-y-position=top]{animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=left]{animation-name:swipe-out-left}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=right]{animation-name:swipe-out-right}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=up]{animation-name:swipe-out-up}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=down]{animation-name:swipe-out-down}@keyframes swipe-out-left{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) - 100%));opacity:0}}@keyframes swipe-out-right{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) + 100%));opacity:0}}@keyframes swipe-out-up{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) - 100%));opacity:0}}@keyframes swipe-out-down{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) + 100%));opacity:0}}@media (max-width:600px){[data-sonner-toaster]{position:fixed;right:var(--mobile-offset-right);left:var(--mobile-offset-left);width:100%}[data-sonner-toaster][dir=rtl]{left:calc(var(--mobile-offset-left) * -1)}[data-sonner-toaster] [data-sonner-toast]{left:0;right:0;width:calc(100% - var(--mobile-offset-left) * 2)}[data-sonner-toaster][data-x-position=left]{left:var(--mobile-offset-left)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--mobile-offset-bottom)}[data-sonner-toaster][data-y-position=top]{top:var(--mobile-offset-top)}[data-sonner-toaster][data-x-position=center]{left:var(--mobile-offset-left);right:var(--mobile-offset-right);transform:none}}[data-sonner-toaster][data-sonner-theme=light]{--normal-bg:#fff;--normal-border:var(--gray4);--normal-text:var(--gray12);--success-bg:hsl(143, 85%, 96%);--success-border:hsl(145, 92%, 87%);--success-text:hsl(140, 100%, 27%);--info-bg:hsl(208, 100%, 97%);--info-border:hsl(221, 91%, 93%);--info-text:hsl(210, 92%, 45%);--warning-bg:hsl(49, 100%, 97%);--warning-border:hsl(49, 91%, 84%);--warning-text:hsl(31, 92%, 45%);--error-bg:hsl(359, 100%, 97%);--error-border:hsl(359, 100%, 94%);--error-text:hsl(360, 100%, 45%)}[data-sonner-toaster][data-sonner-theme=light] [data-sonner-toast][data-invert=true]{--normal-bg:#000;--normal-border:hsl(0, 0%, 20%);--normal-text:var(--gray1)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-invert=true]{--normal-bg:#fff;--normal-border:var(--gray3);--normal-text:var(--gray12)}[data-sonner-toaster][data-sonner-theme=dark]{--normal-bg:#000;--normal-bg-hover:hsl(0, 0%, 12%);--normal-border:hsl(0, 0%, 20%);--normal-border-hover:hsl(0, 0%, 25%);--normal-text:var(--gray1);--success-bg:hsl(150, 100%, 6%);--success-border:hsl(147, 100%, 12%);--success-text:hsl(150, 86%, 65%);--info-bg:hsl(215, 100%, 6%);--info-border:hsl(223, 43%, 17%);--info-text:hsl(216, 87%, 65%);--warning-bg:hsl(64, 100%, 6%);--warning-border:hsl(60, 100%, 9%);--warning-text:hsl(46, 87%, 65%);--error-bg:hsl(358, 76%, 10%);--error-border:hsl(357, 89%, 16%);--error-text:hsl(358, 100%, 81%)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]{background:var(--normal-bg);border-color:var(--normal-border);color:var(--normal-text)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]:hover{background:var(--normal-bg-hover);border-color:var(--normal-border-hover)}[data-rich-colors=true][data-sonner-toast][data-type=success]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=success] [data-close-button]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=info]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=info] [data-close-button]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning] [data-close-button]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=error]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}[data-rich-colors=true][data-sonner-toast][data-type=error] [data-close-button]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}.sonner-loading-wrapper{--size:16px;height:var(--size);width:var(--size);position:absolute;inset:0;z-index:10}.sonner-loading-wrapper[data-visible=false]{transform-origin:center;animation:sonner-fade-out .2s ease forwards}.sonner-spinner{position:relative;top:50%;left:50%;height:var(--size);width:var(--size)}.sonner-loading-bar{animation:sonner-spin 1.2s linear infinite;background:var(--gray11);border-radius:6px;height:8%;left:-10%;position:absolute;top:-3.9%;width:24%}.sonner-loading-bar:first-child{animation-delay:-1.2s;transform:rotate(.0001deg) translate(146%)}.sonner-loading-bar:nth-child(2){animation-delay:-1.1s;transform:rotate(30deg) translate(146%)}.sonner-loading-bar:nth-child(3){animation-delay:-1s;transform:rotate(60deg) translate(146%)}.sonner-loading-bar:nth-child(4){animation-delay:-.9s;transform:rotate(90deg) translate(146%)}.sonner-loading-bar:nth-child(5){animation-delay:-.8s;transform:rotate(120deg) translate(146%)}.sonner-loading-bar:nth-child(6){animation-delay:-.7s;transform:rotate(150deg) translate(146%)}.sonner-loading-bar:nth-child(7){animation-delay:-.6s;transform:rotate(180deg) translate(146%)}.sonner-loading-bar:nth-child(8){animation-delay:-.5s;transform:rotate(210deg) translate(146%)}.sonner-loading-bar:nth-child(9){animation-delay:-.4s;transform:rotate(240deg) translate(146%)}.sonner-loading-bar:nth-child(10){animation-delay:-.3s;transform:rotate(270deg) translate(146%)}.sonner-loading-bar:nth-child(11){animation-delay:-.2s;transform:rotate(300deg) translate(146%)}.sonner-loading-bar:nth-child(12){animation-delay:-.1s;transform:rotate(330deg) translate(146%)}@keyframes sonner-fade-in{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}@keyframes sonner-fade-out{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.8)}}@keyframes sonner-spin{0%{opacity:1}100%{opacity:.15}}@media (prefers-reduced-motion){.sonner-loading-bar,[data-sonner-toast],[data-sonner-toast]>*{transition:none!important;animation:none!important}}.sonner-loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transform-origin:center;transition:opacity .2s,transform .2s}.sonner-loader[data-visible=false]{opacity:0;transform:scale(.8) translate(-50%,-50%)}`);function X9(e){return e.label!==void 0}var Fme=3,Ime=`24px`,Lme=`16px`,Z9=4e3,Rme=356,zme=14,Bme=45,Vme=200;function Q9(...e){return e.filter(Boolean).join(` `)}function Hme(e){let[t,n]=e.split(`-`),r=[];return t&&r.push(t),n&&r.push(n),r}var Ume=e=>{let{invert:t,toast:n,unstyled:r,interacting:i,setHeights:a,visibleToasts:o,heights:s,index:c,toasts:l,expanded:u,removeToast:d,defaultRichColors:f,closeButton:p,style:m,cancelButtonStyle:h,actionButtonStyle:g,className:v=``,descriptionClassName:y=``,duration:b,position:x,gap:S,expandByDefault:C,classNames:w,icons:T,closeButtonAriaLabel:E=`Close toast`}=e,[D,O]=_.useState(null),[k,A]=_.useState(null),[j,M]=_.useState(!1),[N,P]=_.useState(!1),[F,ee]=_.useState(!1),[te,ne]=_.useState(!1),[re,ie]=_.useState(!1),[ae,oe]=_.useState(0),[se,ce]=_.useState(0),le=_.useRef(n.duration||b||Z9),ue=_.useRef(null),de=_.useRef(null),fe=c===0,pe=c+1<=o,me=n.type,he=n.dismissible!==!1,ge=n.className||``,_e=n.descriptionClassName||``,ve=_.useMemo(()=>s.findIndex(e=>e.toastId===n.id)||0,[s,n.id]),ye=_.useMemo(()=>n.closeButton??p,[n.closeButton,p]),be=_.useMemo(()=>n.duration||b||Z9,[n.duration,b]),xe=_.useRef(0),Se=_.useRef(0),Ce=_.useRef(0),we=_.useRef(null),[Te,Ee]=x.split(`-`),De=_.useMemo(()=>s.reduce((e,t,n)=>n>=ve?e:e+t.height,0),[s,ve]),Oe=Mme(),ke=n.invert||t,Ae=me===`loading`;Se.current=_.useMemo(()=>ve*S+De,[ve,De]),_.useEffect(()=>{le.current=be},[be]),_.useEffect(()=>{M(!0)},[]),_.useEffect(()=>{let e=de.current;if(e){let t=e.getBoundingClientRect().height;return ce(t),a(e=>[{toastId:n.id,height:t,position:n.position},...e]),()=>a(e=>e.filter(e=>e.toastId!==n.id))}},[a,n.id]),_.useLayoutEffect(()=>{if(!j)return;let e=de.current,t=e.style.height;e.style.height=`auto`;let r=e.getBoundingClientRect().height;e.style.height=t,ce(r),a(e=>e.find(e=>e.toastId===n.id)?e.map(e=>e.toastId===n.id?{...e,height:r}:e):[{toastId:n.id,height:r,position:n.position},...e])},[j,n.title,n.description,a,n.id,n.jsx,n.action,n.cancel]);let je=_.useCallback(()=>{P(!0),oe(Se.current),a(e=>e.filter(e=>e.toastId!==n.id)),setTimeout(()=>{d(n)},Vme)},[n,d,a,Se]);_.useEffect(()=>{if(n.promise&&me===`loading`||n.duration===1/0||n.type===`loading`)return;let e;return u||i||Oe?(()=>{if(Ce.current{n.onAutoClose==null||n.onAutoClose.call(n,n),je()},le.current)),()=>clearTimeout(e)},[u,i,n,me,Oe,je]),_.useEffect(()=>{n.delete&&(je(),n.onDismiss==null||n.onDismiss.call(n,n))},[je,n.delete]);function Me(){return T?.loading?_.createElement(`div`,{className:Q9(w?.loader,n?.classNames?.loader,`sonner-loader`),"data-visible":me===`loading`},T.loading):_.createElement(Eme,{className:Q9(w?.loader,n?.classNames?.loader),visible:me===`loading`})}let Ne=n.icon||T?.[me]||wme(me);return _.createElement(`li`,{tabIndex:0,ref:de,className:Q9(v,ge,w?.toast,n?.classNames?.toast,w?.default,w?.[me],n?.classNames?.[me]),"data-sonner-toast":``,"data-rich-colors":n.richColors??f,"data-styled":!(n.jsx||n.unstyled||r),"data-mounted":j,"data-promise":!!n.promise,"data-swiped":re,"data-removed":N,"data-visible":pe,"data-y-position":Te,"data-x-position":Ee,"data-index":c,"data-front":fe,"data-swiping":F,"data-dismissible":he,"data-type":me,"data-invert":ke,"data-swipe-out":te,"data-swipe-direction":k,"data-expanded":!!(u||C&&j),"data-testid":n.testId,style:{"--index":c,"--toasts-before":c,"--z-index":l.length-c,"--offset":`${N?ae:Se.current}px`,"--initial-height":C?`auto`:`${se}px`,...m,...n.style},onDragEnd:()=>{ee(!1),O(null),we.current=null},onPointerDown:e=>{e.button!==2&&(Ae||!he||(ue.current=new Date,oe(Se.current),e.target.setPointerCapture(e.pointerId),e.target.tagName!==`BUTTON`&&(ee(!0),we.current={x:e.clientX,y:e.clientY})))},onPointerUp:()=>{if(te||!he)return;we.current=null;let e=Number(de.current?.style.getPropertyValue(`--swipe-amount-x`).replace(`px`,``)||0),t=Number(de.current?.style.getPropertyValue(`--swipe-amount-y`).replace(`px`,``)||0),r=new Date().getTime()-ue.current?.getTime(),i=D===`x`?e:t,a=Math.abs(i)/r;if(Math.abs(i)>=Bme||a>.11){oe(Se.current),n.onDismiss==null||n.onDismiss.call(n,n),A(D===`x`?e>0?`right`:`left`:t>0?`down`:`up`),je(),ne(!0);return}var o,s;(o=de.current)==null||o.style.setProperty(`--swipe-amount-x`,`0px`),(s=de.current)==null||s.style.setProperty(`--swipe-amount-y`,`0px`),ie(!1),ee(!1),O(null)},onPointerMove:t=>{var n,r;if(!we.current||!he||window.getSelection()?.toString().length>0)return;let i=t.clientY-we.current.y,a=t.clientX-we.current.x,o=e.swipeDirections??Hme(x);!D&&(Math.abs(a)>1||Math.abs(i)>1)&&O(Math.abs(a)>Math.abs(i)?`x`:`y`);let s={x:0,y:0},c=e=>1/(1.5+Math.abs(e)/20);if(D===`y`){if(o.includes(`top`)||o.includes(`bottom`)){if(o.includes(`top`)&&i<0||o.includes(`bottom`)&&i>0)s.y=i;else{let e=i*c(i);s.y=Math.abs(e)0)s.x=a;else{let e=a*c(a);s.x=Math.abs(e)0||Math.abs(s.y)>0)&&ie(!0),(n=de.current)==null||n.style.setProperty(`--swipe-amount-x`,`${s.x}px`),(r=de.current)==null||r.style.setProperty(`--swipe-amount-y`,`${s.y}px`)}},ye&&!n.jsx&&me!==`loading`?_.createElement(`button`,{"aria-label":E,"data-disabled":Ae,"data-close-button":!0,onClick:Ae||!he?()=>{}:()=>{je(),n.onDismiss==null||n.onDismiss.call(n,n)},className:Q9(w?.closeButton,n?.classNames?.closeButton)},T?.close??jme):null,(me||n.icon||n.promise)&&n.icon!==null&&(T?.[me]!==null||n.icon)?_.createElement(`div`,{"data-icon":``,className:Q9(w?.icon,n?.classNames?.icon)},n.promise||n.type===`loading`&&!n.icon?n.icon||Me():null,n.type===`loading`?null:Ne):null,_.createElement(`div`,{"data-content":``,className:Q9(w?.content,n?.classNames?.content)},_.createElement(`div`,{"data-title":``,className:Q9(w?.title,n?.classNames?.title)},n.jsx?n.jsx:typeof n.title==`function`?n.title():n.title),n.description?_.createElement(`div`,{"data-description":``,className:Q9(y,_e,w?.description,n?.classNames?.description)},typeof n.description==`function`?n.description():n.description):null),_.isValidElement(n.cancel)?n.cancel:n.cancel&&X9(n.cancel)?_.createElement(`button`,{"data-button":!0,"data-cancel":!0,style:n.cancelButtonStyle||h,onClick:e=>{X9(n.cancel)&&he&&(n.cancel.onClick==null||n.cancel.onClick.call(n.cancel,e),je())},className:Q9(w?.cancelButton,n?.classNames?.cancelButton)},n.cancel.label):null,_.isValidElement(n.action)?n.action:n.action&&X9(n.action)?_.createElement(`button`,{"data-button":!0,"data-action":!0,style:n.actionButtonStyle||g,onClick:e=>{X9(n.action)&&(n.action.onClick==null||n.action.onClick.call(n.action,e),!e.defaultPrevented&&je())},className:Q9(w?.actionButton,n?.classNames?.actionButton)},n.action.label):null)};function $9(){if(typeof window>`u`||typeof document>`u`)return`ltr`;let e=document.documentElement.getAttribute(`dir`);return e===`auto`||!e?window.getComputedStyle(document.documentElement).direction:e}function Wme(e,t){let n={};return[e,t].forEach((e,t)=>{let r=t===1,i=r?`--mobile-offset`:`--offset`,a=r?Lme:Ime;function o(e){[`top`,`right`,`bottom`,`left`].forEach(t=>{n[`${i}-${t}`]=typeof e==`number`?`${e}px`:e})}typeof e==`number`||typeof e==`string`?o(e):typeof e==`object`?[`top`,`right`,`bottom`,`left`].forEach(t=>{e[t]===void 0?n[`${i}-${t}`]=a:n[`${i}-${t}`]=typeof e[t]==`number`?`${e[t]}px`:e[t]}):o(a)}),n}var Gme=_.forwardRef(function(e,t){let{id:n,invert:r,position:i=`bottom-right`,hotkey:a=[`altKey`,`KeyT`],expand:o,closeButton:s,className:c,offset:l,mobileOffset:u,theme:d=`light`,richColors:f,duration:p,style:m,visibleToasts:h=Fme,toastOptions:g,dir:y=$9(),gap:b=zme,icons:x,containerAriaLabel:S=`Notifications`}=e,[C,w]=_.useState([]),T=_.useMemo(()=>n?C.filter(e=>e.toasterId===n):C.filter(e=>!e.toasterId),[C,n]),E=_.useMemo(()=>Array.from(new Set([i].concat(T.filter(e=>e.position).map(e=>e.position)))),[T,i]),[D,O]=_.useState([]),[k,A]=_.useState(!1),[j,M]=_.useState(!1),[N,P]=_.useState(d===`system`?typeof window<`u`&&window.matchMedia&&window.matchMedia(`(prefers-color-scheme: dark)`).matches?`dark`:`light`:d),F=_.useRef(null),ee=a.join(`+`).replace(/Key/g,``).replace(/Digit/g,``),te=_.useRef(null),ne=_.useRef(!1),re=_.useCallback(e=>{w(t=>(t.find(t=>t.id===e.id)?.delete||J9.dismiss(e.id),t.filter(({id:t})=>t!==e.id)))},[]);return _.useEffect(()=>J9.subscribe(e=>{if(e.dismiss){requestAnimationFrame(()=>{w(t=>t.map(t=>t.id===e.id?{...t,delete:!0}:t))});return}setTimeout(()=>{v.flushSync(()=>{w(t=>{let n=t.findIndex(t=>t.id===e.id);return n===-1?[e,...t]:[...t.slice(0,n),{...t[n],...e},...t.slice(n+1)]})})})}),[C]),_.useEffect(()=>{if(d!==`system`){P(d);return}if(d===`system`&&(window.matchMedia&&window.matchMedia(`(prefers-color-scheme: dark)`).matches?P(`dark`):P(`light`)),typeof window>`u`)return;let e=window.matchMedia(`(prefers-color-scheme: dark)`);try{e.addEventListener(`change`,({matches:e})=>{P(e?`dark`:`light`)})}catch{e.addListener(({matches:e})=>{try{P(e?`dark`:`light`)}catch(e){console.error(e)}})}},[d]),_.useEffect(()=>{C.length<=1&&A(!1)},[C]),_.useEffect(()=>{let e=e=>{if(a.every(t=>e[t]||e.code===t)){var t;A(!0),(t=F.current)==null||t.focus()}e.code===`Escape`&&(document.activeElement===F.current||F.current?.contains(document.activeElement))&&A(!1)};return document.addEventListener(`keydown`,e),()=>document.removeEventListener(`keydown`,e)},[a]),_.useEffect(()=>{if(F.current)return()=>{te.current&&(te.current.focus({preventScroll:!0}),te.current=null,ne.current=!1)}},[F.current]),_.createElement(`section`,{ref:t,"aria-label":`${S} ${ee}`,tabIndex:-1,"aria-live":`polite`,"aria-relevant":`additions text`,"aria-atomic":`false`,suppressHydrationWarning:!0},E.map((t,n)=>{let[i,a]=t.split(`-`);return T.length?_.createElement(`ol`,{key:t,dir:y===`auto`?$9():y,tabIndex:-1,ref:F,className:c,"data-sonner-toaster":!0,"data-sonner-theme":N,"data-y-position":i,"data-x-position":a,style:{"--front-toast-height":`${D[0]?.height||0}px`,"--width":`${Rme}px`,"--gap":`${b}px`,...m,...Wme(l,u)},onBlur:e=>{ne.current&&!e.currentTarget.contains(e.relatedTarget)&&(ne.current=!1,te.current&&=(te.current.focus({preventScroll:!0}),null))},onFocus:e=>{e.target instanceof HTMLElement&&e.target.dataset.dismissible===`false`||ne.current||(ne.current=!0,te.current=e.relatedTarget)},onMouseEnter:()=>A(!0),onMouseMove:()=>A(!0),onMouseLeave:()=>{j||A(!1)},onDragEnd:()=>A(!1),onPointerDown:e=>{e.target instanceof HTMLElement&&e.target.dataset.dismissible===`false`||M(!0)},onPointerUp:()=>M(!1)},T.filter(e=>!e.position&&n===0||e.position===t).map((n,i)=>_.createElement(Ume,{key:n.id,icons:x,index:i,toast:n,defaultRichColors:f,duration:g?.duration??p,className:g?.className,descriptionClassName:g?.descriptionClassName,invert:r,visibleToasts:h,closeButton:g?.closeButton??s,interacting:j,position:t,style:g?.style,unstyled:g?.unstyled,classNames:g?.classNames,cancelButtonStyle:g?.cancelButtonStyle,actionButtonStyle:g?.actionButtonStyle,closeButtonAriaLabel:g?.closeButtonAriaLabel,removeToast:re,toasts:T.filter(e=>e.position==n.position),heights:D.filter(e=>e.position==n.position),setHeights:O,expandByDefault:o,gap:b,expanded:k,swipeDirections:e.swipeDirections}))):null}))}),Kme=({...e})=>{let{theme:t=`system`}=(0,_.useContext)(cr);return(0,I.jsx)(Gme,{theme:t,className:`toaster group`,icons:{success:(0,I.jsx)(Js,{className:`size-4`}),info:(0,I.jsx)($s,{className:`size-4`}),warning:(0,I.jsx)(uc,{className:`size-4`}),error:(0,I.jsx)(oc,{className:`size-4`}),loading:(0,I.jsx)(ec,{className:`size-4 animate-spin`})},toastOptions:{classNames:{toast:`bg-background text-foreground border-border`}},style:{"--normal-bg":`hsl(var(--background))`,"--normal-text":`hsl(var(--foreground))`,"--normal-border":`hsl(var(--border))`,"--border-radius":`var(--radius)`,"--toast-icon-margin-start":`0`,"--toast-icon-margin-end":`12px`},...e})};function qme(){(0,_.useEffect)(()=>{if(z.IsDemo){let e,t=setTimeout(()=>{e=Y9.warning((0,I.jsxs)(`div`,{className:`flex flex-col gap-2 w-full`,children:[(0,I.jsx)(`div`,{className:`font-semibold break-words`,children:`Microsoft Zero Trust Assessment Demo Report`}),(0,I.jsxs)(`div`,{className:`text-sm text-muted-foreground flex flex-col gap-1 break-words`,children:[(0,I.jsxs)(`div`,{className:`break-words`,children:[`This is a demo of the report generated by the`,` `,(0,I.jsx)(`a`,{href:`https://aka.ms/ZeroTrust/Assessment`,target:`_blank`,rel:`noopener noreferrer`,className:`underline hover:text-primary break-all`,onClick:e=>e.stopPropagation(),children:`Zero Trust Assessment`}),` `,`tool.`]}),(0,I.jsxs)(`div`,{className:`break-words`,children:[`The latest version of this demo report is available at`,` `,(0,I.jsx)(`a`,{href:`https://aka.ms/ZeroTrust/Demo`,target:`_blank`,rel:`noopener noreferrer`,className:`underline hover:text-primary break-all`,onClick:e=>e.stopPropagation(),children:`aka.ms/ZeroTrust/Demo`}),`.`]})]})]}),{duration:1/0,closeButton:!0,style:{minWidth:`min(600px, calc(100vw - 32px))`,maxWidth:`calc(100vw - 32px)`},className:`break-words`});let t=n=>{let r=n.target;r.tagName===`A`&&r.closest(`[data-sonner-toast]`)||(Y9.dismiss(e),document.removeEventListener(`click`,t))};setTimeout(()=>{document.addEventListener(`click`,t)},100)},500);return()=>{clearTimeout(t),e&&Y9.dismiss(e)}}},[])}function Jme(){return qme(),(0,I.jsxs)(lr,{defaultTheme:`system`,children:[(0,I.jsx)(Yn,{router:Sme}),(0,I.jsx)(Kme,{position:`top-center`,richColors:!0})]})}y.createRoot(document.getElementById(`root`)).render((0,I.jsx)(_.StrictMode,{children:(0,I.jsx)(Jme,{})})); +
diff --git a/src/powershell/assets/ReportTemplate.html b/src/powershell/assets/ReportTemplate.html index 23c605d894..ef16a622da 100644 --- a/src/powershell/assets/ReportTemplate.html +++ b/src/powershell/assets/ReportTemplate.html @@ -1,6 +1,8 @@ - + + + @@ -11,216 +13,188 @@ - - +`});return r(),t(),o+` +`+(i===1?`=`:`-`).repeat(o.length-(Math.max(o.lastIndexOf(`\r`),o.lastIndexOf(` +`))+1))}let o=`#`.repeat(i),s=n.enter(`headingAtx`),c=n.enter(`phrasing`);a.move(o+` `);let l=n.containerPhrasing(e,{before:`# `,after:` +`,...a.current()});return/^[\t ]/.test(l)&&(l=k8(l.charCodeAt(0))+l.slice(1)),l=l?o+` `+l:o,n.options.closeAtx&&(l+=` `+o),c(),s(),l}M8.peek=Fle;function M8(e){return e.value||``}function Fle(){return`<`}N8.peek=Ile;function N8(e,t,n,r){let i=O8(n),a=i===`"`?`Quote`:`Apostrophe`,o=n.enter(`image`),s=n.enter(`label`),c=n.createTracker(r),l=c.move(`![`);return l+=c.move(n.safe(e.alt,{before:l,after:`]`,...c.current()})),l+=c.move(`](`),s(),!e.url&&e.title||/[\0- \u007F]/.test(e.url)?(s=n.enter(`destinationLiteral`),l+=c.move(`<`),l+=c.move(n.safe(e.url,{before:l,after:`>`,...c.current()})),l+=c.move(`>`)):(s=n.enter(`destinationRaw`),l+=c.move(n.safe(e.url,{before:l,after:e.title?` `:`)`,...c.current()}))),s(),e.title&&(s=n.enter(`title${a}`),l+=c.move(` `+i),l+=c.move(n.safe(e.title,{before:l,after:i,...c.current()})),l+=c.move(i),s()),l+=c.move(`)`),o(),l}function Ile(){return`!`}P8.peek=Lle;function P8(e,t,n,r){let i=e.referenceType,a=n.enter(`imageReference`),o=n.enter(`label`),s=n.createTracker(r),c=s.move(`![`),l=n.safe(e.alt,{before:c,after:`]`,...s.current()});c+=s.move(l+`][`),o();let u=n.stack;n.stack=[],o=n.enter(`reference`);let d=n.safe(n.associationId(e),{before:c,after:`]`,...s.current()});return o(),n.stack=u,a(),i===`full`||!l||l!==d?c+=s.move(d+`]`):i===`shortcut`?c=c.slice(0,-1):c+=s.move(`]`),c}function Lle(){return`!`}F8.peek=Rle;function F8(e,t,n){let r=e.value||``,i="`",a=-1;for(;RegExp("(^|[^`])"+i+"([^`]|$)").test(r);)i+="`";for(/[^ \r\n]/.test(r)&&(/^[ \r\n]/.test(r)&&/[ \r\n]$/.test(r)||/^`|`$/.test(r))&&(r=` `+r+` `);++a\u007F]/.test(e.url))}L8.peek=zle;function L8(e,t,n,r){let i=O8(n),a=i===`"`?`Quote`:`Apostrophe`,o=n.createTracker(r),s,c;if(I8(e,n)){let t=n.stack;n.stack=[],s=n.enter(`autolink`);let r=o.move(`<`);return r+=o.move(n.containerPhrasing(e,{before:r,after:`>`,...o.current()})),r+=o.move(`>`),s(),n.stack=t,r}s=n.enter(`link`),c=n.enter(`label`);let l=o.move(`[`);return l+=o.move(n.containerPhrasing(e,{before:l,after:`](`,...o.current()})),l+=o.move(`](`),c(),!e.url&&e.title||/[\0- \u007F]/.test(e.url)?(c=n.enter(`destinationLiteral`),l+=o.move(`<`),l+=o.move(n.safe(e.url,{before:l,after:`>`,...o.current()})),l+=o.move(`>`)):(c=n.enter(`destinationRaw`),l+=o.move(n.safe(e.url,{before:l,after:e.title?` `:`)`,...o.current()}))),c(),e.title&&(c=n.enter(`title${a}`),l+=o.move(` `+i),l+=o.move(n.safe(e.title,{before:l,after:i,...o.current()})),l+=o.move(i),c()),l+=o.move(`)`),s(),l}function zle(e,t,n){return I8(e,n)?`<`:`[`}R8.peek=Ble;function R8(e,t,n,r){let i=e.referenceType,a=n.enter(`linkReference`),o=n.enter(`label`),s=n.createTracker(r),c=s.move(`[`),l=n.containerPhrasing(e,{before:c,after:`]`,...s.current()});c+=s.move(l+`][`),o();let u=n.stack;n.stack=[],o=n.enter(`reference`);let d=n.safe(n.associationId(e),{before:c,after:`]`,...s.current()});return o(),n.stack=u,a(),i===`full`||!l||l!==d?c+=s.move(d+`]`):i===`shortcut`?c=c.slice(0,-1):c+=s.move(`]`),c}function Ble(){return`[`}function z8(e){let t=e.options.bullet||`*`;if(t!==`*`&&t!==`+`&&t!==`-`)throw Error("Cannot serialize items with `"+t+"` for `options.bullet`, expected `*`, `+`, or `-`");return t}function Vle(e){let t=z8(e),n=e.options.bulletOther;if(!n)return t===`*`?`-`:`*`;if(n!==`*`&&n!==`+`&&n!==`-`)throw Error("Cannot serialize items with `"+n+"` for `options.bulletOther`, expected `*`, `+`, or `-`");if(n===t)throw Error("Expected `bullet` (`"+t+"`) and `bulletOther` (`"+n+"`) to be different");return n}function Hle(e){let t=e.options.bulletOrdered||`.`;if(t!==`.`&&t!==`)`)throw Error("Cannot serialize items with `"+t+"` for `options.bulletOrdered`, expected `.` or `)`");return t}function B8(e){let t=e.options.rule||`*`;if(t!==`*`&&t!==`-`&&t!==`_`)throw Error("Cannot serialize rules with `"+t+"` for `options.rule`, expected `*`, `-`, or `_`");return t}function Ule(e,t,n,r){let i=n.enter(`list`),a=n.bulletCurrent,o=e.ordered?Hle(n):z8(n),s=e.ordered?o===`.`?`)`:`.`:Vle(n),c=t&&n.bulletLastUsed?o===n.bulletLastUsed:!1;if(!e.ordered){let t=e.children?e.children[0]:void 0;if((o===`*`||o===`-`)&&t&&(!t.children||!t.children[0])&&n.stack[n.stack.length-1]===`list`&&n.stack[n.stack.length-2]===`listItem`&&n.stack[n.stack.length-3]===`list`&&n.stack[n.stack.length-4]===`listItem`&&n.indexStack[n.indexStack.length-1]===0&&n.indexStack[n.indexStack.length-2]===0&&n.indexStack[n.indexStack.length-3]===0&&(c=!0),B8(n)===o&&t){let t=-1;for(;++t-1?t.start:1)+(n.options.incrementListMarker===!1?0:t.children.indexOf(e))+a);let o=a.length+1;(i===`tab`||i===`mixed`&&(t&&t.type===`list`&&t.spread||e.spread))&&(o=Math.ceil(o/4)*4);let s=n.createTracker(r);s.move(a+` `.repeat(o-a.length)),s.shift(o);let c=n.enter(`listItem`),l=n.indentLines(n.containerFlow(e,s.current()),u);return c(),l;function u(e,t,n){return t?(n?``:` `.repeat(o))+e:(n?a:a+` `.repeat(o-a.length))+e}}function Kle(e,t,n,r){let i=n.enter(`paragraph`),a=n.enter(`phrasing`),o=n.containerPhrasing(e,r);return a(),i(),o}var qle=V6([`break`,`delete`,`emphasis`,`footnote`,`footnoteReference`,`image`,`imageReference`,`inlineCode`,`inlineMath`,`link`,`linkReference`,`mdxJsxTextElement`,`mdxTextExpression`,`strong`,`text`,`textDirective`]);function Jle(e,t,n,r){return(e.children.some(function(e){return qle(e)})?n.containerPhrasing:n.containerFlow).call(n,e,r)}function Yle(e){let t=e.options.strong||`*`;if(t!==`*`&&t!==`_`)throw Error("Cannot serialize strong with `"+t+"` for `options.strong`, expected `*`, or `_`");return t}V8.peek=Xle;function V8(e,t,n,r){let i=Yle(n),a=n.enter(`strong`),o=n.createTracker(r),s=o.move(i+i),c=o.move(n.containerPhrasing(e,{after:i,before:s,...o.current()})),l=c.charCodeAt(0),u=A8(r.before.charCodeAt(r.before.length-1),l,i);u.inside&&(c=k8(l)+c.slice(1));let d=c.charCodeAt(c.length-1),f=A8(r.after.charCodeAt(0),d,i);f.inside&&(c=c.slice(0,-1)+k8(d));let p=o.move(i+i);return a(),n.attentionEncodeSurroundingInfo={after:f.outside,before:u.outside},s+c+p}function Xle(e,t,n){return n.options.strong||`*`}function Zle(e,t,n,r){return n.safe(e.value,r)}function Qle(e){let t=e.options.ruleRepetition||3;if(t<3)throw Error("Cannot serialize rules with repetition `"+t+"` for `options.ruleRepetition`, expected `3` or more");return t}function $le(e,t,n){let r=(B8(n)+(n.options.ruleSpaces?` `:``)).repeat(Qle(n));return n.options.ruleSpaces?r.slice(0,-1):r}var H8={blockquote:Sle,break:D8,code:Ole,definition:Ale,emphasis:j8,hardBreak:D8,heading:Ple,html:M8,image:N8,imageReference:P8,inlineCode:F8,link:L8,linkReference:R8,list:Ule,listItem:Gle,paragraph:Kle,root:Jle,strong:V8,text:Zle,thematicBreak:$le};function eue(){return{enter:{table:tue,tableData:W8,tableHeader:W8,tableRow:rue},exit:{codeText:iue,table:nue,tableData:U8,tableHeader:U8,tableRow:U8}}}function tue(e){let t=e._align;this.enter({type:`table`,align:t.map(function(e){return e===`none`?null:e}),children:[]},e),this.data.inTable=!0}function nue(e){this.exit(e),this.data.inTable=void 0}function rue(e){this.enter({type:`tableRow`,children:[]},e)}function U8(e){this.exit(e)}function W8(e){this.enter({type:`tableCell`,children:[]},e)}function iue(e){let t=this.resume();this.data.inTable&&(t=t.replace(/\\([\\|])/g,aue));let n=this.stack[this.stack.length-1];n.type,n.value=t,this.exit(e)}function aue(e,t){return t===`|`?t:e}function oue(e){let t=e||{},n=t.tableCellPadding,r=t.tablePipeAlign,i=t.stringLength,a=n?` `:`|`;return{unsafe:[{character:`\r`,inConstruct:`tableCell`},{character:` +`,inConstruct:`tableCell`},{atBreak:!0,character:`|`,after:`[ :-]`},{character:`|`,inConstruct:`tableCell`},{atBreak:!0,character:`:`,after:`-`},{atBreak:!0,character:`-`,after:`[:|-]`}],handlers:{inlineCode:f,table:o,tableCell:c,tableRow:s}};function o(e,t,n,r){return l(u(e,n,r),e.align)}function s(e,t,n,r){let i=l([d(e,n,r)]);return i.slice(0,i.indexOf(` +`))}function c(e,t,n,r){let i=n.enter(`tableCell`),o=n.enter(`phrasing`),s=n.containerPhrasing(e,{...r,before:a,after:a});return o(),i(),s}function l(e,t){return ble(e,{align:t,alignDelimiters:r,padding:n,stringLength:i})}function u(e,t,n){let r=e.children,i=-1,a=[],o=t.enter(`table`);for(;++i0&&!n&&(e[e.length-1][1]._gfmAutolinkLiteralWalkedInto=!0),n}var wue={tokenize:Mue,partial:!0};function Tue(){return{document:{91:{name:`gfmFootnoteDefinition`,tokenize:kue,continuation:{tokenize:Aue},exit:jue}},text:{91:{name:`gfmFootnoteCall`,tokenize:Oue},93:{name:`gfmPotentialFootnoteCall`,add:`after`,tokenize:Eue,resolveTo:Due}}}}function Eue(e,t,n){let r=this,i=r.events.length,a=r.parser.gfmFootnotes||(r.parser.gfmFootnotes=[]),o;for(;i--;){let e=r.events[i][1];if(e.type===`labelImage`){o=e;break}if(e.type===`gfmFootnoteCall`||e.type===`labelLink`||e.type===`label`||e.type===`image`||e.type===`link`)break}return s;function s(i){if(!o||!o._balanced)return n(i);let s=F3(r.sliceSerialize({start:o.end,end:r.now()}));return s.codePointAt(0)!==94||!a.includes(s.slice(1))?n(i):(e.enter(`gfmFootnoteCallLabelMarker`),e.consume(i),e.exit(`gfmFootnoteCallLabelMarker`),t(i))}}function Due(e,t){let n=e.length;for(;n--;)if(e[n][1].type===`labelImage`&&e[n][0]===`enter`){e[n][1];break}e[n+1][1].type=`data`,e[n+3][1].type=`gfmFootnoteCallLabelMarker`;let r={type:`gfmFootnoteCall`,start:Object.assign({},e[n+3][1].start),end:Object.assign({},e[e.length-1][1].end)},i={type:`gfmFootnoteCallMarker`,start:Object.assign({},e[n+3][1].end),end:Object.assign({},e[n+3][1].end)};i.end.column++,i.end.offset++,i.end._bufferIndex++;let a={type:`gfmFootnoteCallString`,start:Object.assign({},i.end),end:Object.assign({},e[e.length-1][1].start)},o={type:`chunkString`,contentType:`string`,start:Object.assign({},a.start),end:Object.assign({},a.end)},s=[e[n+1],e[n+2],[`enter`,r,t],e[n+3],e[n+4],[`enter`,i,t],[`exit`,i,t],[`enter`,a,t],[`enter`,o,t],[`exit`,o,t],[`exit`,a,t],e[e.length-2],e[e.length-1],[`exit`,r,t]];return e.splice(n,e.length-n+1,...s),e}function Oue(e,t,n){let r=this,i=r.parser.gfmFootnotes||(r.parser.gfmFootnotes=[]),a=0,o;return s;function s(t){return e.enter(`gfmFootnoteCall`),e.enter(`gfmFootnoteCallLabelMarker`),e.consume(t),e.exit(`gfmFootnoteCallLabelMarker`),c}function c(t){return t===94?(e.enter(`gfmFootnoteCallMarker`),e.consume(t),e.exit(`gfmFootnoteCallMarker`),e.enter(`gfmFootnoteCallString`),e.enter(`chunkString`).contentType=`string`,l):n(t)}function l(s){if(a>999||s===93&&!o||s===null||s===91||W3(s))return n(s);if(s===93){e.exit(`chunkString`);let a=e.exit(`gfmFootnoteCallString`);return i.includes(F3(r.sliceSerialize(a)))?(e.enter(`gfmFootnoteCallLabelMarker`),e.consume(s),e.exit(`gfmFootnoteCallLabelMarker`),e.exit(`gfmFootnoteCall`),t):n(s)}return W3(s)||(o=!0),a++,e.consume(s),s===92?u:l}function u(t){return t===91||t===92||t===93?(e.consume(t),a++,l):l(t)}}function kue(e,t,n){let r=this,i=r.parser.gfmFootnotes||(r.parser.gfmFootnotes=[]),a,o=0,s;return c;function c(t){return e.enter(`gfmFootnoteDefinition`)._container=!0,e.enter(`gfmFootnoteDefinitionLabel`),e.enter(`gfmFootnoteDefinitionLabelMarker`),e.consume(t),e.exit(`gfmFootnoteDefinitionLabelMarker`),l}function l(t){return t===94?(e.enter(`gfmFootnoteDefinitionMarker`),e.consume(t),e.exit(`gfmFootnoteDefinitionMarker`),e.enter(`gfmFootnoteDefinitionLabelString`),e.enter(`chunkString`).contentType=`string`,u):n(t)}function u(t){if(o>999||t===93&&!s||t===null||t===91||W3(t))return n(t);if(t===93){e.exit(`chunkString`);let n=e.exit(`gfmFootnoteDefinitionLabelString`);return a=F3(r.sliceSerialize(n)),e.enter(`gfmFootnoteDefinitionLabelMarker`),e.consume(t),e.exit(`gfmFootnoteDefinitionLabelMarker`),e.exit(`gfmFootnoteDefinitionLabel`),f}return W3(t)||(s=!0),o++,e.consume(t),t===92?d:u}function d(t){return t===91||t===92||t===93?(e.consume(t),o++,u):u(t)}function f(t){return t===58?(e.enter(`definitionMarker`),e.consume(t),e.exit(`definitionMarker`),i.includes(a)||i.push(a),X3(e,p,`gfmFootnoteDefinitionWhitespace`)):n(t)}function p(e){return t(e)}}function Aue(e,t,n){return e.check(n6,t,e.attempt(wue,t,n))}function jue(e){e.exit(`gfmFootnoteDefinition`)}function Mue(e,t,n){let r=this;return X3(e,i,`gfmFootnoteDefinitionIndent`,5);function i(e){let i=r.events[r.events.length-1];return i&&i[1].type===`gfmFootnoteDefinitionIndent`&&i[2].sliceSerialize(i[1],!0).length===4?t(e):n(e)}}function Nue(e){let t=(e||{}).singleTilde,n={name:`strikethrough`,tokenize:i,resolveAll:r};return t??=!0,{text:{126:n},insideSpan:{null:[n]},attentionMarkers:{null:[126]}};function r(e,t){let n=-1;for(;++n1?r(a):(e.consume(a),o++,c);if(o<2&&!t)return r(a);let l=e.exit(`strikethroughSequenceTemporary`),u=Q3(a);return l._open=!u||u===2&&!!s,l._close=!s||s===2&&!!u,n(a)}}}var Pue=class{constructor(){this.map=[]}add(e,t,n){Fue(this,e,t,n)}consume(e){if(this.map.sort(function(e,t){return e[0]-t[0]}),this.map.length===0)return;let t=this.map.length,n=[];for(;t>0;)--t,n.push(e.slice(this.map[t][0]+this.map[t][1]),this.map[t][2]),e.length=this.map[t][0];n.push(e.slice()),e.length=0;let r=n.pop();for(;r;){for(let t of r)e.push(t);r=n.pop()}this.map.length=0}};function Fue(e,t,n,r){let i=0;if(n!==0||r.length!==0){for(;i-1;){let e=r.events[t][1].type;if(e===`lineEnding`||e===`linePrefix`)t--;else break}let i=t>-1?r.events[t][1].type:null,a=i===`tableHead`||i===`tableRow`?S:c;return a===S&&r.parser.lazy[r.now().line]?n(e):a(e)}function c(t){return e.enter(`tableHead`),e.enter(`tableRow`),l(t)}function l(e){return e===124?u(e):(o=!0,a+=1,u(e))}function u(t){return t===null?n(t):U3(t)?a>1?(a=0,r.interrupt=!0,e.exit(`tableRow`),e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),p):n(t):G3(t)?X3(e,u,`whitespace`)(t):(a+=1,o&&(o=!1,i+=1),t===124?(e.enter(`tableCellDivider`),e.consume(t),e.exit(`tableCellDivider`),o=!0,u):(e.enter(`data`),d(t)))}function d(t){return t===null||t===124||W3(t)?(e.exit(`data`),u(t)):(e.consume(t),t===92?f:d)}function f(t){return t===92||t===124?(e.consume(t),d):d(t)}function p(t){return r.interrupt=!1,r.parser.lazy[r.now().line]?n(t):(e.enter(`tableDelimiterRow`),o=!1,G3(t)?X3(e,m,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):m(t))}function m(t){return t===45||t===58?g(t):t===124?(o=!0,e.enter(`tableCellDivider`),e.consume(t),e.exit(`tableCellDivider`),h):x(t)}function h(t){return G3(t)?X3(e,g,`whitespace`)(t):g(t)}function g(t){return t===58?(a+=1,o=!0,e.enter(`tableDelimiterMarker`),e.consume(t),e.exit(`tableDelimiterMarker`),_):t===45?(a+=1,_(t)):t===null||U3(t)?b(t):x(t)}function _(t){return t===45?(e.enter(`tableDelimiterFiller`),v(t)):x(t)}function v(t){return t===45?(e.consume(t),v):t===58?(o=!0,e.exit(`tableDelimiterFiller`),e.enter(`tableDelimiterMarker`),e.consume(t),e.exit(`tableDelimiterMarker`),y):(e.exit(`tableDelimiterFiller`),y(t))}function y(t){return G3(t)?X3(e,b,`whitespace`)(t):b(t)}function b(n){return n===124?m(n):n===null||U3(n)?!o||i!==a?x(n):(e.exit(`tableDelimiterRow`),e.exit(`tableHead`),t(n)):x(n)}function x(e){return n(e)}function S(t){return e.enter(`tableRow`),C(t)}function C(n){return n===124?(e.enter(`tableCellDivider`),e.consume(n),e.exit(`tableCellDivider`),C):n===null||U3(n)?(e.exit(`tableRow`),t(n)):G3(n)?X3(e,C,`whitespace`)(n):(e.enter(`data`),w(n))}function w(t){return t===null||t===124||W3(t)?(e.exit(`data`),C(t)):(e.consume(t),t===92?T:w)}function T(t){return t===92||t===124?(e.consume(t),w):w(t)}}function zue(e,t){let n=-1,r=!0,i=0,a=[0,0,0,0],o=[0,0,0,0],s=!1,c=0,l,u,d,f=new Pue;for(;++nn[2]+1){let t=n[2]+1,r=n[3]-n[2]-1;e.add(t,r,[])}}e.add(n[3]+1,0,[[`exit`,o,t]])}return i!==void 0&&(a.end=Object.assign({},s5(t.events,i)),e.add(i,0,[[`exit`,a,t]]),a=void 0),a}function o5(e,t,n,r,i){let a=[],o=s5(t.events,n);i&&(i.end=Object.assign({},o),a.push([`exit`,i,t])),r.end=Object.assign({},o),a.push([`exit`,r,t]),e.add(n+1,0,a)}function s5(e,t){let n=e[t],r=n[0]===`enter`?`start`:`end`;return n[1][r]}var Bue={name:`tasklistCheck`,tokenize:Hue};function Vue(){return{text:{91:Bue}}}function Hue(e,t,n){let r=this;return i;function i(t){return r.previous!==null||!r._gfmTasklistFirstContentOfListItem?n(t):(e.enter(`taskListCheck`),e.enter(`taskListCheckMarker`),e.consume(t),e.exit(`taskListCheckMarker`),a)}function a(t){return W3(t)?(e.enter(`taskListCheckValueUnchecked`),e.consume(t),e.exit(`taskListCheckValueUnchecked`),o):t===88||t===120?(e.enter(`taskListCheckValueChecked`),e.consume(t),e.exit(`taskListCheckValueChecked`),o):n(t)}function o(t){return t===93?(e.enter(`taskListCheckMarker`),e.consume(t),e.exit(`taskListCheckMarker`),e.exit(`taskListCheck`),s):n(t)}function s(r){return U3(r)?t(r):G3(r)?e.check({tokenize:Uue},t,n)(r):n(r)}}function Uue(e,t,n){return X3(e,r,`whitespace`);function r(e){return e===null?n(e):t(e)}}function Wue(e){return j3([hue(),Tue(),Nue(e),Lue(),Vue()])}var Gue={};function c5(e){let t=this,n=e||Gue,r=t.data(),i=r.micromarkExtensions||=[],a=r.fromMarkdownExtensions||=[],o=r.toMarkdownExtensions||=[];i.push(Wue(n)),a.push(due()),o.push(fue(n))}var l5=/[#.]/g;function Kue(e,t){let n=e||``,r={},i=0,a,o;for(;i-1&&e<=t.length){let r=0;for(;;){let i=n[r];if(i===void 0){let e=p5(t,n[r-1]);i=e===-1?t.length+1:e+1,n[r]=i}if(i>e)return{line:r+1,column:e-(r>0?n[r-1]:0)+1,offset:e};r++}}}function i(e){if(e&&typeof e.line==`number`&&typeof e.column==`number`&&!Number.isNaN(e.line)&&!Number.isNaN(e.column)){for(;n.length1?n[e.line-2]:0)+e.column-1;if(r=55296&&e<=57343}function _de(e){return e>=56320&&e<=57343}function vde(e,t){return(e-55296)*1024+9216+t}function E5(e){return e!==32&&e!==10&&e!==13&&e!==9&&e!==12&&e>=1&&e<=31||e>=127&&e<=159}function D5(e){return e>=64976&&e<=65007||gde.has(e)}var q;(function(e){e.controlCharacterInInputStream=`control-character-in-input-stream`,e.noncharacterInInputStream=`noncharacter-in-input-stream`,e.surrogateInInputStream=`surrogate-in-input-stream`,e.nonVoidHtmlElementStartTagWithTrailingSolidus=`non-void-html-element-start-tag-with-trailing-solidus`,e.endTagWithAttributes=`end-tag-with-attributes`,e.endTagWithTrailingSolidus=`end-tag-with-trailing-solidus`,e.unexpectedSolidusInTag=`unexpected-solidus-in-tag`,e.unexpectedNullCharacter=`unexpected-null-character`,e.unexpectedQuestionMarkInsteadOfTagName=`unexpected-question-mark-instead-of-tag-name`,e.invalidFirstCharacterOfTagName=`invalid-first-character-of-tag-name`,e.unexpectedEqualsSignBeforeAttributeName=`unexpected-equals-sign-before-attribute-name`,e.missingEndTagName=`missing-end-tag-name`,e.unexpectedCharacterInAttributeName=`unexpected-character-in-attribute-name`,e.unknownNamedCharacterReference=`unknown-named-character-reference`,e.missingSemicolonAfterCharacterReference=`missing-semicolon-after-character-reference`,e.unexpectedCharacterAfterDoctypeSystemIdentifier=`unexpected-character-after-doctype-system-identifier`,e.unexpectedCharacterInUnquotedAttributeValue=`unexpected-character-in-unquoted-attribute-value`,e.eofBeforeTagName=`eof-before-tag-name`,e.eofInTag=`eof-in-tag`,e.missingAttributeValue=`missing-attribute-value`,e.missingWhitespaceBetweenAttributes=`missing-whitespace-between-attributes`,e.missingWhitespaceAfterDoctypePublicKeyword=`missing-whitespace-after-doctype-public-keyword`,e.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers=`missing-whitespace-between-doctype-public-and-system-identifiers`,e.missingWhitespaceAfterDoctypeSystemKeyword=`missing-whitespace-after-doctype-system-keyword`,e.missingQuoteBeforeDoctypePublicIdentifier=`missing-quote-before-doctype-public-identifier`,e.missingQuoteBeforeDoctypeSystemIdentifier=`missing-quote-before-doctype-system-identifier`,e.missingDoctypePublicIdentifier=`missing-doctype-public-identifier`,e.missingDoctypeSystemIdentifier=`missing-doctype-system-identifier`,e.abruptDoctypePublicIdentifier=`abrupt-doctype-public-identifier`,e.abruptDoctypeSystemIdentifier=`abrupt-doctype-system-identifier`,e.cdataInHtmlContent=`cdata-in-html-content`,e.incorrectlyOpenedComment=`incorrectly-opened-comment`,e.eofInScriptHtmlCommentLikeText=`eof-in-script-html-comment-like-text`,e.eofInDoctype=`eof-in-doctype`,e.nestedComment=`nested-comment`,e.abruptClosingOfEmptyComment=`abrupt-closing-of-empty-comment`,e.eofInComment=`eof-in-comment`,e.incorrectlyClosedComment=`incorrectly-closed-comment`,e.eofInCdata=`eof-in-cdata`,e.absenceOfDigitsInNumericCharacterReference=`absence-of-digits-in-numeric-character-reference`,e.nullCharacterReference=`null-character-reference`,e.surrogateCharacterReference=`surrogate-character-reference`,e.characterReferenceOutsideUnicodeRange=`character-reference-outside-unicode-range`,e.controlCharacterReference=`control-character-reference`,e.noncharacterCharacterReference=`noncharacter-character-reference`,e.missingWhitespaceBeforeDoctypeName=`missing-whitespace-before-doctype-name`,e.missingDoctypeName=`missing-doctype-name`,e.invalidCharacterSequenceAfterDoctypeName=`invalid-character-sequence-after-doctype-name`,e.duplicateAttribute=`duplicate-attribute`,e.nonConformingDoctype=`non-conforming-doctype`,e.missingDoctype=`missing-doctype`,e.misplacedDoctype=`misplaced-doctype`,e.endTagWithoutMatchingOpenElement=`end-tag-without-matching-open-element`,e.closingOfElementWithOpenChildElements=`closing-of-element-with-open-child-elements`,e.disallowedContentInNoscriptInHead=`disallowed-content-in-noscript-in-head`,e.openElementsLeftAfterEof=`open-elements-left-after-eof`,e.abandonedHeadElementChild=`abandoned-head-element-child`,e.misplacedStartTagForHeadElement=`misplaced-start-tag-for-head-element`,e.nestedNoscriptInHead=`nested-noscript-in-head`,e.eofInElementThatCanContainOnlyText=`eof-in-element-that-can-contain-only-text`})(q||={});var yde=65536,bde=class{constructor(e){this.handler=e,this.html=``,this.pos=-1,this.lastGapPos=-2,this.gapStack=[],this.skipNextNewLine=!1,this.lastChunkWritten=!1,this.endOfChunkHit=!1,this.bufferWaterline=yde,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.line=1,this.lastErrOffset=-1}get col(){return this.pos-this.lineStartPos+Number(this.lastGapPos!==this.pos)}get offset(){return this.droppedBufferSize+this.pos}getError(e,t){let{line:n,col:r,offset:i}=this,a=r+t,o=i+t;return{code:e,startLine:n,endLine:n,startCol:a,endCol:a,startOffset:o,endOffset:o}}_err(e){this.handler.onParseError&&this.lastErrOffset!==this.offset&&(this.lastErrOffset=this.offset,this.handler.onParseError(this.getError(e,0)))}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos}_processSurrogate(e){if(this.pos!==this.html.length-1){let t=this.html.charCodeAt(this.pos+1);if(_de(t))return this.pos++,this._addGap(),vde(e,t)}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,K.EOF;return this._err(q.surrogateInInputStream),e}willDropParsedChunk(){return this.pos>this.bufferWaterline}dropParsedChunk(){this.willDropParsedChunk()&&(this.html=this.html.substring(this.pos),this.lineStartPos-=this.pos,this.droppedBufferSize+=this.pos,this.pos=0,this.lastGapPos=-2,this.gapStack.length=0)}write(e,t){this.html.length>0?this.html+=e:this.html=e,this.endOfChunkHit=!1,this.lastChunkWritten=t}insertHtmlAtCurrentPos(e){this.html=this.html.substring(0,this.pos+1)+e+this.html.substring(this.pos+1),this.endOfChunkHit=!1}startsWith(e,t){if(this.pos+e.length>this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,!1;if(t)return this.html.startsWith(e,this.pos);for(let t=0;t=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,K.EOF;let n=this.html.charCodeAt(t);return n===K.CARRIAGE_RETURN?K.LINE_FEED:n}advance(){if(this.pos++,this.isEol&&(this.isEol=!1,this.line++,this.lineStartPos=this.pos),this.pos>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,K.EOF;let e=this.html.charCodeAt(this.pos);return e===K.CARRIAGE_RETURN?(this.isEol=!0,this.skipNextNewLine=!0,K.LINE_FEED):e===K.LINE_FEED&&(this.isEol=!0,this.skipNextNewLine)?(this.line--,this.skipNextNewLine=!1,this._addGap(),this.advance()):(this.skipNextNewLine=!1,T5(e)&&(e=this._processSurrogate(e)),this.handler.onParseError===null||e>31&&e<127||e===K.LINE_FEED||e===K.CARRIAGE_RETURN||e>159&&e<64976||this._checkForProblematicCharacters(e),e)}_checkForProblematicCharacters(e){E5(e)?this._err(q.controlCharacterInInputStream):D5(e)&&this._err(q.noncharacterInInputStream)}retreat(e){for(this.pos-=e;this.pos=0;n--)if(e.attrs[n].name===t)return e.attrs[n].value;return null}var xde=new Uint16Array(`ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻\xA0ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌`.split(``).map(e=>e.charCodeAt(0))),Sde=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);String.fromCodePoint;function Cde(e){return e>=55296&&e<=57343||e>1114111?65533:Sde.get(e)??e}var A5;(function(e){e[e.NUM=35]=`NUM`,e[e.SEMI=59]=`SEMI`,e[e.EQUALS=61]=`EQUALS`,e[e.ZERO=48]=`ZERO`,e[e.NINE=57]=`NINE`,e[e.LOWER_A=97]=`LOWER_A`,e[e.LOWER_F=102]=`LOWER_F`,e[e.LOWER_X=120]=`LOWER_X`,e[e.LOWER_Z=122]=`LOWER_Z`,e[e.UPPER_A=65]=`UPPER_A`,e[e.UPPER_F=70]=`UPPER_F`,e[e.UPPER_Z=90]=`UPPER_Z`})(A5||={});var wde=32,j5;(function(e){e[e.VALUE_LENGTH=49152]=`VALUE_LENGTH`,e[e.BRANCH_LENGTH=16256]=`BRANCH_LENGTH`,e[e.JUMP_TABLE=127]=`JUMP_TABLE`})(j5||={});function M5(e){return e>=A5.ZERO&&e<=A5.NINE}function Tde(e){return e>=A5.UPPER_A&&e<=A5.UPPER_F||e>=A5.LOWER_A&&e<=A5.LOWER_F}function Ede(e){return e>=A5.UPPER_A&&e<=A5.UPPER_Z||e>=A5.LOWER_A&&e<=A5.LOWER_Z||M5(e)}function Dde(e){return e===A5.EQUALS||Ede(e)}var N5;(function(e){e[e.EntityStart=0]=`EntityStart`,e[e.NumericStart=1]=`NumericStart`,e[e.NumericDecimal=2]=`NumericDecimal`,e[e.NumericHex=3]=`NumericHex`,e[e.NamedEntity=4]=`NamedEntity`})(N5||={});var P5;(function(e){e[e.Legacy=0]=`Legacy`,e[e.Strict=1]=`Strict`,e[e.Attribute=2]=`Attribute`})(P5||={});var Ode=class{constructor(e,t,n){this.decodeTree=e,this.emitCodePoint=t,this.errors=n,this.state=N5.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=P5.Strict}startEntity(e){this.decodeMode=e,this.state=N5.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}write(e,t){switch(this.state){case N5.EntityStart:return e.charCodeAt(t)===A5.NUM?(this.state=N5.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=N5.NamedEntity,this.stateNamedEntity(e,t));case N5.NumericStart:return this.stateNumericStart(e,t);case N5.NumericDecimal:return this.stateNumericDecimal(e,t);case N5.NumericHex:return this.stateNumericHex(e,t);case N5.NamedEntity:return this.stateNamedEntity(e,t)}}stateNumericStart(e,t){return t>=e.length?-1:(e.charCodeAt(t)|wde)===A5.LOWER_X?(this.state=N5.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=N5.NumericDecimal,this.stateNumericDecimal(e,t))}addToNumericResult(e,t,n,r){if(t!==n){let i=n-t;this.result=this.result*r**+i+Number.parseInt(e.substr(t,i),r),this.consumed+=i}}stateNumericHex(e,t){let n=t;for(;t>14;for(;t>14,i!==0){if(a===A5.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==P5.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1}emitNotTerminatedNamedEntity(){var e;let{result:t,decodeTree:n}=this,r=(n[t]&j5.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),(e=this.errors)==null||e.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(e,t,n){let{decodeTree:r}=this;return this.emitCodePoint(t===1?r[e]&~j5.VALUE_LENGTH:r[e+1],n),t===3&&this.emitCodePoint(r[e+2],n),n}end(){var e;switch(this.state){case N5.NamedEntity:return this.result!==0&&(this.decodeMode!==P5.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case N5.NumericDecimal:return this.emitNumericEntity(0,2);case N5.NumericHex:return this.emitNumericEntity(0,3);case N5.NumericStart:return(e=this.errors)==null||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case N5.EntityStart:return 0}}};function kde(e,t,n,r){let i=(t&j5.BRANCH_LENGTH)>>7,a=t&j5.JUMP_TABLE;if(i===0)return a!==0&&r===a?n:-1;if(a){let t=r-a;return t<0||t>=i?-1:e[n+t]-1}let o=n,s=o+i-1;for(;o<=s;){let t=o+s>>>1,n=e[t];if(nr)s=t-1;else return e[t+i]}return-1}var J;(function(e){e.HTML=`http://www.w3.org/1999/xhtml`,e.MATHML=`http://www.w3.org/1998/Math/MathML`,e.SVG=`http://www.w3.org/2000/svg`,e.XLINK=`http://www.w3.org/1999/xlink`,e.XML=`http://www.w3.org/XML/1998/namespace`,e.XMLNS=`http://www.w3.org/2000/xmlns/`})(J||={});var F5;(function(e){e.TYPE=`type`,e.ACTION=`action`,e.ENCODING=`encoding`,e.PROMPT=`prompt`,e.NAME=`name`,e.COLOR=`color`,e.FACE=`face`,e.SIZE=`size`})(F5||={});var I5;(function(e){e.NO_QUIRKS=`no-quirks`,e.QUIRKS=`quirks`,e.LIMITED_QUIRKS=`limited-quirks`})(I5||={});var Y;(function(e){e.A=`a`,e.ADDRESS=`address`,e.ANNOTATION_XML=`annotation-xml`,e.APPLET=`applet`,e.AREA=`area`,e.ARTICLE=`article`,e.ASIDE=`aside`,e.B=`b`,e.BASE=`base`,e.BASEFONT=`basefont`,e.BGSOUND=`bgsound`,e.BIG=`big`,e.BLOCKQUOTE=`blockquote`,e.BODY=`body`,e.BR=`br`,e.BUTTON=`button`,e.CAPTION=`caption`,e.CENTER=`center`,e.CODE=`code`,e.COL=`col`,e.COLGROUP=`colgroup`,e.DD=`dd`,e.DESC=`desc`,e.DETAILS=`details`,e.DIALOG=`dialog`,e.DIR=`dir`,e.DIV=`div`,e.DL=`dl`,e.DT=`dt`,e.EM=`em`,e.EMBED=`embed`,e.FIELDSET=`fieldset`,e.FIGCAPTION=`figcaption`,e.FIGURE=`figure`,e.FONT=`font`,e.FOOTER=`footer`,e.FOREIGN_OBJECT=`foreignObject`,e.FORM=`form`,e.FRAME=`frame`,e.FRAMESET=`frameset`,e.H1=`h1`,e.H2=`h2`,e.H3=`h3`,e.H4=`h4`,e.H5=`h5`,e.H6=`h6`,e.HEAD=`head`,e.HEADER=`header`,e.HGROUP=`hgroup`,e.HR=`hr`,e.HTML=`html`,e.I=`i`,e.IMG=`img`,e.IMAGE=`image`,e.INPUT=`input`,e.IFRAME=`iframe`,e.KEYGEN=`keygen`,e.LABEL=`label`,e.LI=`li`,e.LINK=`link`,e.LISTING=`listing`,e.MAIN=`main`,e.MALIGNMARK=`malignmark`,e.MARQUEE=`marquee`,e.MATH=`math`,e.MENU=`menu`,e.META=`meta`,e.MGLYPH=`mglyph`,e.MI=`mi`,e.MO=`mo`,e.MN=`mn`,e.MS=`ms`,e.MTEXT=`mtext`,e.NAV=`nav`,e.NOBR=`nobr`,e.NOFRAMES=`noframes`,e.NOEMBED=`noembed`,e.NOSCRIPT=`noscript`,e.OBJECT=`object`,e.OL=`ol`,e.OPTGROUP=`optgroup`,e.OPTION=`option`,e.P=`p`,e.PARAM=`param`,e.PLAINTEXT=`plaintext`,e.PRE=`pre`,e.RB=`rb`,e.RP=`rp`,e.RT=`rt`,e.RTC=`rtc`,e.RUBY=`ruby`,e.S=`s`,e.SCRIPT=`script`,e.SEARCH=`search`,e.SECTION=`section`,e.SELECT=`select`,e.SOURCE=`source`,e.SMALL=`small`,e.SPAN=`span`,e.STRIKE=`strike`,e.STRONG=`strong`,e.STYLE=`style`,e.SUB=`sub`,e.SUMMARY=`summary`,e.SUP=`sup`,e.TABLE=`table`,e.TBODY=`tbody`,e.TEMPLATE=`template`,e.TEXTAREA=`textarea`,e.TFOOT=`tfoot`,e.TD=`td`,e.TH=`th`,e.THEAD=`thead`,e.TITLE=`title`,e.TR=`tr`,e.TRACK=`track`,e.TT=`tt`,e.U=`u`,e.UL=`ul`,e.SVG=`svg`,e.VAR=`var`,e.WBR=`wbr`,e.XMP=`xmp`})(Y||={});var X;(function(e){e[e.UNKNOWN=0]=`UNKNOWN`,e[e.A=1]=`A`,e[e.ADDRESS=2]=`ADDRESS`,e[e.ANNOTATION_XML=3]=`ANNOTATION_XML`,e[e.APPLET=4]=`APPLET`,e[e.AREA=5]=`AREA`,e[e.ARTICLE=6]=`ARTICLE`,e[e.ASIDE=7]=`ASIDE`,e[e.B=8]=`B`,e[e.BASE=9]=`BASE`,e[e.BASEFONT=10]=`BASEFONT`,e[e.BGSOUND=11]=`BGSOUND`,e[e.BIG=12]=`BIG`,e[e.BLOCKQUOTE=13]=`BLOCKQUOTE`,e[e.BODY=14]=`BODY`,e[e.BR=15]=`BR`,e[e.BUTTON=16]=`BUTTON`,e[e.CAPTION=17]=`CAPTION`,e[e.CENTER=18]=`CENTER`,e[e.CODE=19]=`CODE`,e[e.COL=20]=`COL`,e[e.COLGROUP=21]=`COLGROUP`,e[e.DD=22]=`DD`,e[e.DESC=23]=`DESC`,e[e.DETAILS=24]=`DETAILS`,e[e.DIALOG=25]=`DIALOG`,e[e.DIR=26]=`DIR`,e[e.DIV=27]=`DIV`,e[e.DL=28]=`DL`,e[e.DT=29]=`DT`,e[e.EM=30]=`EM`,e[e.EMBED=31]=`EMBED`,e[e.FIELDSET=32]=`FIELDSET`,e[e.FIGCAPTION=33]=`FIGCAPTION`,e[e.FIGURE=34]=`FIGURE`,e[e.FONT=35]=`FONT`,e[e.FOOTER=36]=`FOOTER`,e[e.FOREIGN_OBJECT=37]=`FOREIGN_OBJECT`,e[e.FORM=38]=`FORM`,e[e.FRAME=39]=`FRAME`,e[e.FRAMESET=40]=`FRAMESET`,e[e.H1=41]=`H1`,e[e.H2=42]=`H2`,e[e.H3=43]=`H3`,e[e.H4=44]=`H4`,e[e.H5=45]=`H5`,e[e.H6=46]=`H6`,e[e.HEAD=47]=`HEAD`,e[e.HEADER=48]=`HEADER`,e[e.HGROUP=49]=`HGROUP`,e[e.HR=50]=`HR`,e[e.HTML=51]=`HTML`,e[e.I=52]=`I`,e[e.IMG=53]=`IMG`,e[e.IMAGE=54]=`IMAGE`,e[e.INPUT=55]=`INPUT`,e[e.IFRAME=56]=`IFRAME`,e[e.KEYGEN=57]=`KEYGEN`,e[e.LABEL=58]=`LABEL`,e[e.LI=59]=`LI`,e[e.LINK=60]=`LINK`,e[e.LISTING=61]=`LISTING`,e[e.MAIN=62]=`MAIN`,e[e.MALIGNMARK=63]=`MALIGNMARK`,e[e.MARQUEE=64]=`MARQUEE`,e[e.MATH=65]=`MATH`,e[e.MENU=66]=`MENU`,e[e.META=67]=`META`,e[e.MGLYPH=68]=`MGLYPH`,e[e.MI=69]=`MI`,e[e.MO=70]=`MO`,e[e.MN=71]=`MN`,e[e.MS=72]=`MS`,e[e.MTEXT=73]=`MTEXT`,e[e.NAV=74]=`NAV`,e[e.NOBR=75]=`NOBR`,e[e.NOFRAMES=76]=`NOFRAMES`,e[e.NOEMBED=77]=`NOEMBED`,e[e.NOSCRIPT=78]=`NOSCRIPT`,e[e.OBJECT=79]=`OBJECT`,e[e.OL=80]=`OL`,e[e.OPTGROUP=81]=`OPTGROUP`,e[e.OPTION=82]=`OPTION`,e[e.P=83]=`P`,e[e.PARAM=84]=`PARAM`,e[e.PLAINTEXT=85]=`PLAINTEXT`,e[e.PRE=86]=`PRE`,e[e.RB=87]=`RB`,e[e.RP=88]=`RP`,e[e.RT=89]=`RT`,e[e.RTC=90]=`RTC`,e[e.RUBY=91]=`RUBY`,e[e.S=92]=`S`,e[e.SCRIPT=93]=`SCRIPT`,e[e.SEARCH=94]=`SEARCH`,e[e.SECTION=95]=`SECTION`,e[e.SELECT=96]=`SELECT`,e[e.SOURCE=97]=`SOURCE`,e[e.SMALL=98]=`SMALL`,e[e.SPAN=99]=`SPAN`,e[e.STRIKE=100]=`STRIKE`,e[e.STRONG=101]=`STRONG`,e[e.STYLE=102]=`STYLE`,e[e.SUB=103]=`SUB`,e[e.SUMMARY=104]=`SUMMARY`,e[e.SUP=105]=`SUP`,e[e.TABLE=106]=`TABLE`,e[e.TBODY=107]=`TBODY`,e[e.TEMPLATE=108]=`TEMPLATE`,e[e.TEXTAREA=109]=`TEXTAREA`,e[e.TFOOT=110]=`TFOOT`,e[e.TD=111]=`TD`,e[e.TH=112]=`TH`,e[e.THEAD=113]=`THEAD`,e[e.TITLE=114]=`TITLE`,e[e.TR=115]=`TR`,e[e.TRACK=116]=`TRACK`,e[e.TT=117]=`TT`,e[e.U=118]=`U`,e[e.UL=119]=`UL`,e[e.SVG=120]=`SVG`,e[e.VAR=121]=`VAR`,e[e.WBR=122]=`WBR`,e[e.XMP=123]=`XMP`})(X||={});var Ade=new Map([[Y.A,X.A],[Y.ADDRESS,X.ADDRESS],[Y.ANNOTATION_XML,X.ANNOTATION_XML],[Y.APPLET,X.APPLET],[Y.AREA,X.AREA],[Y.ARTICLE,X.ARTICLE],[Y.ASIDE,X.ASIDE],[Y.B,X.B],[Y.BASE,X.BASE],[Y.BASEFONT,X.BASEFONT],[Y.BGSOUND,X.BGSOUND],[Y.BIG,X.BIG],[Y.BLOCKQUOTE,X.BLOCKQUOTE],[Y.BODY,X.BODY],[Y.BR,X.BR],[Y.BUTTON,X.BUTTON],[Y.CAPTION,X.CAPTION],[Y.CENTER,X.CENTER],[Y.CODE,X.CODE],[Y.COL,X.COL],[Y.COLGROUP,X.COLGROUP],[Y.DD,X.DD],[Y.DESC,X.DESC],[Y.DETAILS,X.DETAILS],[Y.DIALOG,X.DIALOG],[Y.DIR,X.DIR],[Y.DIV,X.DIV],[Y.DL,X.DL],[Y.DT,X.DT],[Y.EM,X.EM],[Y.EMBED,X.EMBED],[Y.FIELDSET,X.FIELDSET],[Y.FIGCAPTION,X.FIGCAPTION],[Y.FIGURE,X.FIGURE],[Y.FONT,X.FONT],[Y.FOOTER,X.FOOTER],[Y.FOREIGN_OBJECT,X.FOREIGN_OBJECT],[Y.FORM,X.FORM],[Y.FRAME,X.FRAME],[Y.FRAMESET,X.FRAMESET],[Y.H1,X.H1],[Y.H2,X.H2],[Y.H3,X.H3],[Y.H4,X.H4],[Y.H5,X.H5],[Y.H6,X.H6],[Y.HEAD,X.HEAD],[Y.HEADER,X.HEADER],[Y.HGROUP,X.HGROUP],[Y.HR,X.HR],[Y.HTML,X.HTML],[Y.I,X.I],[Y.IMG,X.IMG],[Y.IMAGE,X.IMAGE],[Y.INPUT,X.INPUT],[Y.IFRAME,X.IFRAME],[Y.KEYGEN,X.KEYGEN],[Y.LABEL,X.LABEL],[Y.LI,X.LI],[Y.LINK,X.LINK],[Y.LISTING,X.LISTING],[Y.MAIN,X.MAIN],[Y.MALIGNMARK,X.MALIGNMARK],[Y.MARQUEE,X.MARQUEE],[Y.MATH,X.MATH],[Y.MENU,X.MENU],[Y.META,X.META],[Y.MGLYPH,X.MGLYPH],[Y.MI,X.MI],[Y.MO,X.MO],[Y.MN,X.MN],[Y.MS,X.MS],[Y.MTEXT,X.MTEXT],[Y.NAV,X.NAV],[Y.NOBR,X.NOBR],[Y.NOFRAMES,X.NOFRAMES],[Y.NOEMBED,X.NOEMBED],[Y.NOSCRIPT,X.NOSCRIPT],[Y.OBJECT,X.OBJECT],[Y.OL,X.OL],[Y.OPTGROUP,X.OPTGROUP],[Y.OPTION,X.OPTION],[Y.P,X.P],[Y.PARAM,X.PARAM],[Y.PLAINTEXT,X.PLAINTEXT],[Y.PRE,X.PRE],[Y.RB,X.RB],[Y.RP,X.RP],[Y.RT,X.RT],[Y.RTC,X.RTC],[Y.RUBY,X.RUBY],[Y.S,X.S],[Y.SCRIPT,X.SCRIPT],[Y.SEARCH,X.SEARCH],[Y.SECTION,X.SECTION],[Y.SELECT,X.SELECT],[Y.SOURCE,X.SOURCE],[Y.SMALL,X.SMALL],[Y.SPAN,X.SPAN],[Y.STRIKE,X.STRIKE],[Y.STRONG,X.STRONG],[Y.STYLE,X.STYLE],[Y.SUB,X.SUB],[Y.SUMMARY,X.SUMMARY],[Y.SUP,X.SUP],[Y.TABLE,X.TABLE],[Y.TBODY,X.TBODY],[Y.TEMPLATE,X.TEMPLATE],[Y.TEXTAREA,X.TEXTAREA],[Y.TFOOT,X.TFOOT],[Y.TD,X.TD],[Y.TH,X.TH],[Y.THEAD,X.THEAD],[Y.TITLE,X.TITLE],[Y.TR,X.TR],[Y.TRACK,X.TRACK],[Y.TT,X.TT],[Y.U,X.U],[Y.UL,X.UL],[Y.SVG,X.SVG],[Y.VAR,X.VAR],[Y.WBR,X.WBR],[Y.XMP,X.XMP]]);function L5(e){return Ade.get(e)??X.UNKNOWN}var Z=X,jde={[J.HTML]:new Set([Z.ADDRESS,Z.APPLET,Z.AREA,Z.ARTICLE,Z.ASIDE,Z.BASE,Z.BASEFONT,Z.BGSOUND,Z.BLOCKQUOTE,Z.BODY,Z.BR,Z.BUTTON,Z.CAPTION,Z.CENTER,Z.COL,Z.COLGROUP,Z.DD,Z.DETAILS,Z.DIR,Z.DIV,Z.DL,Z.DT,Z.EMBED,Z.FIELDSET,Z.FIGCAPTION,Z.FIGURE,Z.FOOTER,Z.FORM,Z.FRAME,Z.FRAMESET,Z.H1,Z.H2,Z.H3,Z.H4,Z.H5,Z.H6,Z.HEAD,Z.HEADER,Z.HGROUP,Z.HR,Z.HTML,Z.IFRAME,Z.IMG,Z.INPUT,Z.LI,Z.LINK,Z.LISTING,Z.MAIN,Z.MARQUEE,Z.MENU,Z.META,Z.NAV,Z.NOEMBED,Z.NOFRAMES,Z.NOSCRIPT,Z.OBJECT,Z.OL,Z.P,Z.PARAM,Z.PLAINTEXT,Z.PRE,Z.SCRIPT,Z.SECTION,Z.SELECT,Z.SOURCE,Z.STYLE,Z.SUMMARY,Z.TABLE,Z.TBODY,Z.TD,Z.TEMPLATE,Z.TEXTAREA,Z.TFOOT,Z.TH,Z.THEAD,Z.TITLE,Z.TR,Z.TRACK,Z.UL,Z.WBR,Z.XMP]),[J.MATHML]:new Set([Z.MI,Z.MO,Z.MN,Z.MS,Z.MTEXT,Z.ANNOTATION_XML]),[J.SVG]:new Set([Z.TITLE,Z.FOREIGN_OBJECT,Z.DESC]),[J.XLINK]:new Set,[J.XML]:new Set,[J.XMLNS]:new Set},R5=new Set([Z.H1,Z.H2,Z.H3,Z.H4,Z.H5,Z.H6]);Y.STYLE,Y.SCRIPT,Y.XMP,Y.IFRAME,Y.NOEMBED,Y.NOFRAMES,Y.PLAINTEXT;var Q;(function(e){e[e.DATA=0]=`DATA`,e[e.RCDATA=1]=`RCDATA`,e[e.RAWTEXT=2]=`RAWTEXT`,e[e.SCRIPT_DATA=3]=`SCRIPT_DATA`,e[e.PLAINTEXT=4]=`PLAINTEXT`,e[e.TAG_OPEN=5]=`TAG_OPEN`,e[e.END_TAG_OPEN=6]=`END_TAG_OPEN`,e[e.TAG_NAME=7]=`TAG_NAME`,e[e.RCDATA_LESS_THAN_SIGN=8]=`RCDATA_LESS_THAN_SIGN`,e[e.RCDATA_END_TAG_OPEN=9]=`RCDATA_END_TAG_OPEN`,e[e.RCDATA_END_TAG_NAME=10]=`RCDATA_END_TAG_NAME`,e[e.RAWTEXT_LESS_THAN_SIGN=11]=`RAWTEXT_LESS_THAN_SIGN`,e[e.RAWTEXT_END_TAG_OPEN=12]=`RAWTEXT_END_TAG_OPEN`,e[e.RAWTEXT_END_TAG_NAME=13]=`RAWTEXT_END_TAG_NAME`,e[e.SCRIPT_DATA_LESS_THAN_SIGN=14]=`SCRIPT_DATA_LESS_THAN_SIGN`,e[e.SCRIPT_DATA_END_TAG_OPEN=15]=`SCRIPT_DATA_END_TAG_OPEN`,e[e.SCRIPT_DATA_END_TAG_NAME=16]=`SCRIPT_DATA_END_TAG_NAME`,e[e.SCRIPT_DATA_ESCAPE_START=17]=`SCRIPT_DATA_ESCAPE_START`,e[e.SCRIPT_DATA_ESCAPE_START_DASH=18]=`SCRIPT_DATA_ESCAPE_START_DASH`,e[e.SCRIPT_DATA_ESCAPED=19]=`SCRIPT_DATA_ESCAPED`,e[e.SCRIPT_DATA_ESCAPED_DASH=20]=`SCRIPT_DATA_ESCAPED_DASH`,e[e.SCRIPT_DATA_ESCAPED_DASH_DASH=21]=`SCRIPT_DATA_ESCAPED_DASH_DASH`,e[e.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN=22]=`SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN`,e[e.SCRIPT_DATA_ESCAPED_END_TAG_OPEN=23]=`SCRIPT_DATA_ESCAPED_END_TAG_OPEN`,e[e.SCRIPT_DATA_ESCAPED_END_TAG_NAME=24]=`SCRIPT_DATA_ESCAPED_END_TAG_NAME`,e[e.SCRIPT_DATA_DOUBLE_ESCAPE_START=25]=`SCRIPT_DATA_DOUBLE_ESCAPE_START`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED=26]=`SCRIPT_DATA_DOUBLE_ESCAPED`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH=27]=`SCRIPT_DATA_DOUBLE_ESCAPED_DASH`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH=28]=`SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH`,e[e.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN=29]=`SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN`,e[e.SCRIPT_DATA_DOUBLE_ESCAPE_END=30]=`SCRIPT_DATA_DOUBLE_ESCAPE_END`,e[e.BEFORE_ATTRIBUTE_NAME=31]=`BEFORE_ATTRIBUTE_NAME`,e[e.ATTRIBUTE_NAME=32]=`ATTRIBUTE_NAME`,e[e.AFTER_ATTRIBUTE_NAME=33]=`AFTER_ATTRIBUTE_NAME`,e[e.BEFORE_ATTRIBUTE_VALUE=34]=`BEFORE_ATTRIBUTE_VALUE`,e[e.ATTRIBUTE_VALUE_DOUBLE_QUOTED=35]=`ATTRIBUTE_VALUE_DOUBLE_QUOTED`,e[e.ATTRIBUTE_VALUE_SINGLE_QUOTED=36]=`ATTRIBUTE_VALUE_SINGLE_QUOTED`,e[e.ATTRIBUTE_VALUE_UNQUOTED=37]=`ATTRIBUTE_VALUE_UNQUOTED`,e[e.AFTER_ATTRIBUTE_VALUE_QUOTED=38]=`AFTER_ATTRIBUTE_VALUE_QUOTED`,e[e.SELF_CLOSING_START_TAG=39]=`SELF_CLOSING_START_TAG`,e[e.BOGUS_COMMENT=40]=`BOGUS_COMMENT`,e[e.MARKUP_DECLARATION_OPEN=41]=`MARKUP_DECLARATION_OPEN`,e[e.COMMENT_START=42]=`COMMENT_START`,e[e.COMMENT_START_DASH=43]=`COMMENT_START_DASH`,e[e.COMMENT=44]=`COMMENT`,e[e.COMMENT_LESS_THAN_SIGN=45]=`COMMENT_LESS_THAN_SIGN`,e[e.COMMENT_LESS_THAN_SIGN_BANG=46]=`COMMENT_LESS_THAN_SIGN_BANG`,e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH=47]=`COMMENT_LESS_THAN_SIGN_BANG_DASH`,e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH=48]=`COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH`,e[e.COMMENT_END_DASH=49]=`COMMENT_END_DASH`,e[e.COMMENT_END=50]=`COMMENT_END`,e[e.COMMENT_END_BANG=51]=`COMMENT_END_BANG`,e[e.DOCTYPE=52]=`DOCTYPE`,e[e.BEFORE_DOCTYPE_NAME=53]=`BEFORE_DOCTYPE_NAME`,e[e.DOCTYPE_NAME=54]=`DOCTYPE_NAME`,e[e.AFTER_DOCTYPE_NAME=55]=`AFTER_DOCTYPE_NAME`,e[e.AFTER_DOCTYPE_PUBLIC_KEYWORD=56]=`AFTER_DOCTYPE_PUBLIC_KEYWORD`,e[e.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER=57]=`BEFORE_DOCTYPE_PUBLIC_IDENTIFIER`,e[e.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED=58]=`DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED`,e[e.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED=59]=`DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED`,e[e.AFTER_DOCTYPE_PUBLIC_IDENTIFIER=60]=`AFTER_DOCTYPE_PUBLIC_IDENTIFIER`,e[e.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS=61]=`BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS`,e[e.AFTER_DOCTYPE_SYSTEM_KEYWORD=62]=`AFTER_DOCTYPE_SYSTEM_KEYWORD`,e[e.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER=63]=`BEFORE_DOCTYPE_SYSTEM_IDENTIFIER`,e[e.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED=64]=`DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED`,e[e.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED=65]=`DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED`,e[e.AFTER_DOCTYPE_SYSTEM_IDENTIFIER=66]=`AFTER_DOCTYPE_SYSTEM_IDENTIFIER`,e[e.BOGUS_DOCTYPE=67]=`BOGUS_DOCTYPE`,e[e.CDATA_SECTION=68]=`CDATA_SECTION`,e[e.CDATA_SECTION_BRACKET=69]=`CDATA_SECTION_BRACKET`,e[e.CDATA_SECTION_END=70]=`CDATA_SECTION_END`,e[e.CHARACTER_REFERENCE=71]=`CHARACTER_REFERENCE`,e[e.AMBIGUOUS_AMPERSAND=72]=`AMBIGUOUS_AMPERSAND`})(Q||={});var z5={DATA:Q.DATA,RCDATA:Q.RCDATA,RAWTEXT:Q.RAWTEXT,SCRIPT_DATA:Q.SCRIPT_DATA,PLAINTEXT:Q.PLAINTEXT,CDATA_SECTION:Q.CDATA_SECTION};function Mde(e){return e>=K.DIGIT_0&&e<=K.DIGIT_9}function B5(e){return e>=K.LATIN_CAPITAL_A&&e<=K.LATIN_CAPITAL_Z}function Nde(e){return e>=K.LATIN_SMALL_A&&e<=K.LATIN_SMALL_Z}function V5(e){return Nde(e)||B5(e)}function H5(e){return V5(e)||Mde(e)}function U5(e){return e+32}function W5(e){return e===K.SPACE||e===K.LINE_FEED||e===K.TABULATION||e===K.FORM_FEED}function G5(e){return W5(e)||e===K.SOLIDUS||e===K.GREATER_THAN_SIGN}function Pde(e){return e===K.NULL?q.nullCharacterReference:e>1114111?q.characterReferenceOutsideUnicodeRange:T5(e)?q.surrogateCharacterReference:D5(e)?q.noncharacterCharacterReference:E5(e)||e===K.CARRIAGE_RETURN?q.controlCharacterReference:null}var Fde=class{constructor(e,t){this.options=e,this.handler=t,this.paused=!1,this.inLoop=!1,this.inForeignNode=!1,this.lastStartTagName=``,this.active=!1,this.state=Q.DATA,this.returnState=Q.DATA,this.entityStartPos=0,this.consumedAfterSnapshot=-1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr={name:``,value:``},this.preprocessor=new bde(t),this.currentLocation=this.getCurrentLocation(-1),this.entityDecoder=new Ode(xde,(e,t)=>{this.preprocessor.pos=this.entityStartPos+t-1,this._flushCodePointConsumedAsCharacterReference(e)},t.onParseError?{missingSemicolonAfterCharacterReference:()=>{this._err(q.missingSemicolonAfterCharacterReference,1)},absenceOfDigitsInNumericCharacterReference:e=>{this._err(q.absenceOfDigitsInNumericCharacterReference,this.entityStartPos-this.preprocessor.pos+e)},validateNumericCharacterReference:e=>{let t=Pde(e);t&&this._err(t,1)}}:void 0)}_err(e,t=0){var n,r;(r=(n=this.handler).onParseError)==null||r.call(n,this.preprocessor.getError(e,t))}getCurrentLocation(e){return this.options.sourceCodeLocationInfo?{startLine:this.preprocessor.line,startCol:this.preprocessor.col-e,startOffset:this.preprocessor.offset-e,endLine:-1,endCol:-1,endOffset:-1}:null}_runParsingLoop(){if(!this.inLoop){for(this.inLoop=!0;this.active&&!this.paused;){this.consumedAfterSnapshot=0;let e=this._consume();this._ensureHibernation()||this._callState(e)}this.inLoop=!1}}pause(){this.paused=!0}resume(e){if(!this.paused)throw Error(`Parser was already resumed`);this.paused=!1,!this.inLoop&&(this._runParsingLoop(),this.paused||e?.())}write(e,t,n){this.active=!0,this.preprocessor.write(e,t),this._runParsingLoop(),this.paused||n?.()}insertHtmlAtCurrentPos(e){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(e),this._runParsingLoop()}_ensureHibernation(){return this.preprocessor.endOfChunkHit?(this.preprocessor.retreat(this.consumedAfterSnapshot),this.consumedAfterSnapshot=0,this.active=!1,!0):!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_advanceBy(e){this.consumedAfterSnapshot+=e;for(let t=0;t0&&this._err(q.endTagWithAttributes),e.selfClosing&&this._err(q.endTagWithTrailingSolidus),this.handler.onEndTag(e)),this.preprocessor.dropParsedChunk()}emitCurrentComment(e){this.prepareToken(e),this.handler.onComment(e),this.preprocessor.dropParsedChunk()}emitCurrentDoctype(e){this.prepareToken(e),this.handler.onDoctype(e),this.preprocessor.dropParsedChunk()}_emitCurrentCharacterToken(e){if(this.currentCharacterToken){switch(e&&this.currentCharacterToken.location&&(this.currentCharacterToken.location.endLine=e.startLine,this.currentCharacterToken.location.endCol=e.startCol,this.currentCharacterToken.location.endOffset=e.startOffset),this.currentCharacterToken.type){case O5.CHARACTER:this.handler.onCharacter(this.currentCharacterToken);break;case O5.NULL_CHARACTER:this.handler.onNullCharacter(this.currentCharacterToken);break;case O5.WHITESPACE_CHARACTER:this.handler.onWhitespaceCharacter(this.currentCharacterToken)}this.currentCharacterToken=null}}_emitEOFToken(){let e=this.getCurrentLocation(0);e&&(e.endLine=e.startLine,e.endCol=e.startCol,e.endOffset=e.startOffset),this._emitCurrentCharacterToken(e),this.handler.onEof({type:O5.EOF,location:e}),this.active=!1}_appendCharToCurrentCharacterToken(e,t){if(this.currentCharacterToken){if(this.currentCharacterToken.type===e){this.currentCharacterToken.chars+=t;return}this.currentLocation=this.getCurrentLocation(0),this._emitCurrentCharacterToken(this.currentLocation),this.preprocessor.dropParsedChunk()}this._createCharacterToken(e,t)}_emitCodePoint(e){let t=W5(e)?O5.WHITESPACE_CHARACTER:e===K.NULL?O5.NULL_CHARACTER:O5.CHARACTER;this._appendCharToCurrentCharacterToken(t,String.fromCodePoint(e))}_emitChars(e){this._appendCharToCurrentCharacterToken(O5.CHARACTER,e)}_startCharacterReference(){this.returnState=this.state,this.state=Q.CHARACTER_REFERENCE,this.entityStartPos=this.preprocessor.pos,this.entityDecoder.startEntity(this._isCharacterReferenceInAttribute()?P5.Attribute:P5.Legacy)}_isCharacterReferenceInAttribute(){return this.returnState===Q.ATTRIBUTE_VALUE_DOUBLE_QUOTED||this.returnState===Q.ATTRIBUTE_VALUE_SINGLE_QUOTED||this.returnState===Q.ATTRIBUTE_VALUE_UNQUOTED}_flushCodePointConsumedAsCharacterReference(e){this._isCharacterReferenceInAttribute()?this.currentAttr.value+=String.fromCodePoint(e):this._emitCodePoint(e)}_callState(e){switch(this.state){case Q.DATA:this._stateData(e);break;case Q.RCDATA:this._stateRcdata(e);break;case Q.RAWTEXT:this._stateRawtext(e);break;case Q.SCRIPT_DATA:this._stateScriptData(e);break;case Q.PLAINTEXT:this._statePlaintext(e);break;case Q.TAG_OPEN:this._stateTagOpen(e);break;case Q.END_TAG_OPEN:this._stateEndTagOpen(e);break;case Q.TAG_NAME:this._stateTagName(e);break;case Q.RCDATA_LESS_THAN_SIGN:this._stateRcdataLessThanSign(e);break;case Q.RCDATA_END_TAG_OPEN:this._stateRcdataEndTagOpen(e);break;case Q.RCDATA_END_TAG_NAME:this._stateRcdataEndTagName(e);break;case Q.RAWTEXT_LESS_THAN_SIGN:this._stateRawtextLessThanSign(e);break;case Q.RAWTEXT_END_TAG_OPEN:this._stateRawtextEndTagOpen(e);break;case Q.RAWTEXT_END_TAG_NAME:this._stateRawtextEndTagName(e);break;case Q.SCRIPT_DATA_LESS_THAN_SIGN:this._stateScriptDataLessThanSign(e);break;case Q.SCRIPT_DATA_END_TAG_OPEN:this._stateScriptDataEndTagOpen(e);break;case Q.SCRIPT_DATA_END_TAG_NAME:this._stateScriptDataEndTagName(e);break;case Q.SCRIPT_DATA_ESCAPE_START:this._stateScriptDataEscapeStart(e);break;case Q.SCRIPT_DATA_ESCAPE_START_DASH:this._stateScriptDataEscapeStartDash(e);break;case Q.SCRIPT_DATA_ESCAPED:this._stateScriptDataEscaped(e);break;case Q.SCRIPT_DATA_ESCAPED_DASH:this._stateScriptDataEscapedDash(e);break;case Q.SCRIPT_DATA_ESCAPED_DASH_DASH:this._stateScriptDataEscapedDashDash(e);break;case Q.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN:this._stateScriptDataEscapedLessThanSign(e);break;case Q.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:this._stateScriptDataEscapedEndTagOpen(e);break;case Q.SCRIPT_DATA_ESCAPED_END_TAG_NAME:this._stateScriptDataEscapedEndTagName(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPE_START:this._stateScriptDataDoubleEscapeStart(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED:this._stateScriptDataDoubleEscaped(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED_DASH:this._stateScriptDataDoubleEscapedDash(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH:this._stateScriptDataDoubleEscapedDashDash(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN:this._stateScriptDataDoubleEscapedLessThanSign(e);break;case Q.SCRIPT_DATA_DOUBLE_ESCAPE_END:this._stateScriptDataDoubleEscapeEnd(e);break;case Q.BEFORE_ATTRIBUTE_NAME:this._stateBeforeAttributeName(e);break;case Q.ATTRIBUTE_NAME:this._stateAttributeName(e);break;case Q.AFTER_ATTRIBUTE_NAME:this._stateAfterAttributeName(e);break;case Q.BEFORE_ATTRIBUTE_VALUE:this._stateBeforeAttributeValue(e);break;case Q.ATTRIBUTE_VALUE_DOUBLE_QUOTED:this._stateAttributeValueDoubleQuoted(e);break;case Q.ATTRIBUTE_VALUE_SINGLE_QUOTED:this._stateAttributeValueSingleQuoted(e);break;case Q.ATTRIBUTE_VALUE_UNQUOTED:this._stateAttributeValueUnquoted(e);break;case Q.AFTER_ATTRIBUTE_VALUE_QUOTED:this._stateAfterAttributeValueQuoted(e);break;case Q.SELF_CLOSING_START_TAG:this._stateSelfClosingStartTag(e);break;case Q.BOGUS_COMMENT:this._stateBogusComment(e);break;case Q.MARKUP_DECLARATION_OPEN:this._stateMarkupDeclarationOpen(e);break;case Q.COMMENT_START:this._stateCommentStart(e);break;case Q.COMMENT_START_DASH:this._stateCommentStartDash(e);break;case Q.COMMENT:this._stateComment(e);break;case Q.COMMENT_LESS_THAN_SIGN:this._stateCommentLessThanSign(e);break;case Q.COMMENT_LESS_THAN_SIGN_BANG:this._stateCommentLessThanSignBang(e);break;case Q.COMMENT_LESS_THAN_SIGN_BANG_DASH:this._stateCommentLessThanSignBangDash(e);break;case Q.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:this._stateCommentLessThanSignBangDashDash(e);break;case Q.COMMENT_END_DASH:this._stateCommentEndDash(e);break;case Q.COMMENT_END:this._stateCommentEnd(e);break;case Q.COMMENT_END_BANG:this._stateCommentEndBang(e);break;case Q.DOCTYPE:this._stateDoctype(e);break;case Q.BEFORE_DOCTYPE_NAME:this._stateBeforeDoctypeName(e);break;case Q.DOCTYPE_NAME:this._stateDoctypeName(e);break;case Q.AFTER_DOCTYPE_NAME:this._stateAfterDoctypeName(e);break;case Q.AFTER_DOCTYPE_PUBLIC_KEYWORD:this._stateAfterDoctypePublicKeyword(e);break;case Q.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER:this._stateBeforeDoctypePublicIdentifier(e);break;case Q.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED:this._stateDoctypePublicIdentifierDoubleQuoted(e);break;case Q.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED:this._stateDoctypePublicIdentifierSingleQuoted(e);break;case Q.AFTER_DOCTYPE_PUBLIC_IDENTIFIER:this._stateAfterDoctypePublicIdentifier(e);break;case Q.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS:this._stateBetweenDoctypePublicAndSystemIdentifiers(e);break;case Q.AFTER_DOCTYPE_SYSTEM_KEYWORD:this._stateAfterDoctypeSystemKeyword(e);break;case Q.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER:this._stateBeforeDoctypeSystemIdentifier(e);break;case Q.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED:this._stateDoctypeSystemIdentifierDoubleQuoted(e);break;case Q.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED:this._stateDoctypeSystemIdentifierSingleQuoted(e);break;case Q.AFTER_DOCTYPE_SYSTEM_IDENTIFIER:this._stateAfterDoctypeSystemIdentifier(e);break;case Q.BOGUS_DOCTYPE:this._stateBogusDoctype(e);break;case Q.CDATA_SECTION:this._stateCdataSection(e);break;case Q.CDATA_SECTION_BRACKET:this._stateCdataSectionBracket(e);break;case Q.CDATA_SECTION_END:this._stateCdataSectionEnd(e);break;case Q.CHARACTER_REFERENCE:this._stateCharacterReference();break;case Q.AMBIGUOUS_AMPERSAND:this._stateAmbiguousAmpersand(e);break;default:throw Error(`Unknown state`)}}_stateData(e){switch(e){case K.LESS_THAN_SIGN:this.state=Q.TAG_OPEN;break;case K.AMPERSAND:this._startCharacterReference();break;case K.NULL:this._err(q.unexpectedNullCharacter),this._emitCodePoint(e);break;case K.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateRcdata(e){switch(e){case K.AMPERSAND:this._startCharacterReference();break;case K.LESS_THAN_SIGN:this.state=Q.RCDATA_LESS_THAN_SIGN;break;case K.NULL:this._err(q.unexpectedNullCharacter),this._emitChars(`�`);break;case K.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateRawtext(e){switch(e){case K.LESS_THAN_SIGN:this.state=Q.RAWTEXT_LESS_THAN_SIGN;break;case K.NULL:this._err(q.unexpectedNullCharacter),this._emitChars(`�`);break;case K.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateScriptData(e){switch(e){case K.LESS_THAN_SIGN:this.state=Q.SCRIPT_DATA_LESS_THAN_SIGN;break;case K.NULL:this._err(q.unexpectedNullCharacter),this._emitChars(`�`);break;case K.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_statePlaintext(e){switch(e){case K.NULL:this._err(q.unexpectedNullCharacter),this._emitChars(`�`);break;case K.EOF:this._emitEOFToken();break;default:this._emitCodePoint(e)}}_stateTagOpen(e){if(V5(e))this._createStartTagToken(),this.state=Q.TAG_NAME,this._stateTagName(e);else switch(e){case K.EXCLAMATION_MARK:this.state=Q.MARKUP_DECLARATION_OPEN;break;case K.SOLIDUS:this.state=Q.END_TAG_OPEN;break;case K.QUESTION_MARK:this._err(q.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(1),this.state=Q.BOGUS_COMMENT,this._stateBogusComment(e);break;case K.EOF:this._err(q.eofBeforeTagName),this._emitChars(`<`),this._emitEOFToken();break;default:this._err(q.invalidFirstCharacterOfTagName),this._emitChars(`<`),this.state=Q.DATA,this._stateData(e)}}_stateEndTagOpen(e){if(V5(e))this._createEndTagToken(),this.state=Q.TAG_NAME,this._stateTagName(e);else switch(e){case K.GREATER_THAN_SIGN:this._err(q.missingEndTagName),this.state=Q.DATA;break;case K.EOF:this._err(q.eofBeforeTagName),this._emitChars(``);break;case K.NULL:this._err(q.unexpectedNullCharacter),this.state=Q.SCRIPT_DATA_ESCAPED,this._emitChars(`�`);break;case K.EOF:this._err(q.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break;default:this.state=Q.SCRIPT_DATA_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataEscapedLessThanSign(e){e===K.SOLIDUS?this.state=Q.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:V5(e)?(this._emitChars(`<`),this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPE_START,this._stateScriptDataDoubleEscapeStart(e)):(this._emitChars(`<`),this.state=Q.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(e))}_stateScriptDataEscapedEndTagOpen(e){V5(e)?(this.state=Q.SCRIPT_DATA_ESCAPED_END_TAG_NAME,this._stateScriptDataEscapedEndTagName(e)):(this._emitChars(``);break;case K.NULL:this._err(q.unexpectedNullCharacter),this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(`�`);break;case K.EOF:this._err(q.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break;default:this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataDoubleEscapedLessThanSign(e){e===K.SOLIDUS?(this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPE_END,this._emitChars(`/`)):(this.state=Q.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(e))}_stateScriptDataDoubleEscapeEnd(e){if(this.preprocessor.startsWith(w5.SCRIPT,!1)&&G5(this.preprocessor.peek(w5.SCRIPT.length))){this._emitCodePoint(e);for(let e=0;e0&&this._isInTemplate()&&this.tmplCount--,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(e,!0)}replace(e,t){let n=this._indexOf(e);this.items[n]=t,n===this.stackTop&&(this.current=t)}insertAfter(e,t,n){let r=this._indexOf(e)+1;this.items.splice(r,0,t),this.tagIDs.splice(r,0,n),this.stackTop++,r===this.stackTop&&this._updateCurrentElement(),this.current&&this.currentTagId!==void 0&&this.handler.onItemPush(this.current,this.currentTagId,r===this.stackTop)}popUntilTagNamePopped(e){let t=this.stackTop+1;do t=this.tagIDs.lastIndexOf(e,t-1);while(t>0&&this.treeAdapter.getNamespaceURI(this.items[t])!==J.HTML);this.shortenToLength(Math.max(t,0))}shortenToLength(e){for(;this.stackTop>=e;){let t=this.current;this.tmplCount>0&&this._isInTemplate()&&--this.tmplCount,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(t,this.stackTop=0;n--)if(e.has(this.tagIDs[n])&&this.treeAdapter.getNamespaceURI(this.items[n])===t)return n;return-1}clearBackTo(e,t){let n=this._indexOfTagNames(e,t);this.shortenToLength(n+1)}clearBackToTableContext(){this.clearBackTo(Bde,J.HTML)}clearBackToTableBodyContext(){this.clearBackTo(zde,J.HTML)}clearBackToTableRowContext(){this.clearBackTo(Rde,J.HTML)}remove(e){let t=this._indexOf(e);t>=0&&(t===this.stackTop?this.pop():(this.items.splice(t,1),this.tagIDs.splice(t,1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(e,!1)))}tryPeekProperlyNestedBodyElement(){return this.stackTop>=1&&this.tagIDs[1]===X.BODY?this.items[1]:null}contains(e){return this._indexOf(e)>-1}getCommonAncestor(e){let t=this._indexOf(e)-1;return t>=0?this.items[t]:null}isRootHtmlElementCurrent(){return this.stackTop===0&&this.tagIDs[0]===X.HTML}hasInDynamicScope(e,t){for(let n=this.stackTop;n>=0;n--){let r=this.tagIDs[n];switch(this.treeAdapter.getNamespaceURI(this.items[n])){case J.HTML:if(r===e)return!0;if(t.has(r))return!1;break;case J.SVG:if(X5.has(r))return!1;break;case J.MATHML:if(Y5.has(r))return!1}}return!0}hasInScope(e){return this.hasInDynamicScope(e,J5)}hasInListItemScope(e){return this.hasInDynamicScope(e,Ide)}hasInButtonScope(e){return this.hasInDynamicScope(e,Lde)}hasNumberedHeaderInScope(){for(let e=this.stackTop;e>=0;e--){let t=this.tagIDs[e];switch(this.treeAdapter.getNamespaceURI(this.items[e])){case J.HTML:if(R5.has(t))return!0;if(J5.has(t))return!1;break;case J.SVG:if(X5.has(t))return!1;break;case J.MATHML:if(Y5.has(t))return!1}}return!0}hasInTableScope(e){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===J.HTML)switch(this.tagIDs[t]){case e:return!0;case X.TABLE:case X.HTML:return!1}return!0}hasTableBodyContextInTableScope(){for(let e=this.stackTop;e>=0;e--)if(this.treeAdapter.getNamespaceURI(this.items[e])===J.HTML)switch(this.tagIDs[e]){case X.TBODY:case X.THEAD:case X.TFOOT:return!0;case X.TABLE:case X.HTML:return!1}return!0}hasInSelectScope(e){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===J.HTML)switch(this.tagIDs[t]){case e:return!0;case X.OPTION:case X.OPTGROUP:break;default:return!1}return!0}generateImpliedEndTags(){for(;this.currentTagId!==void 0&&K5.has(this.currentTagId);)this.pop()}generateImpliedEndTagsThoroughly(){for(;this.currentTagId!==void 0&&q5.has(this.currentTagId);)this.pop()}generateImpliedEndTagsWithExclusion(e){for(;this.currentTagId!==void 0&&this.currentTagId!==e&&q5.has(this.currentTagId);)this.pop()}},Z5=3,Q5;(function(e){e[e.Marker=0]=`Marker`,e[e.Element=1]=`Element`})(Q5||={});var $5={type:Q5.Marker},Ude=class{constructor(e){this.treeAdapter=e,this.entries=[],this.bookmark=null}_getNoahArkConditionCandidates(e,t){let n=[],r=t.length,i=this.treeAdapter.getTagName(e),a=this.treeAdapter.getNamespaceURI(e);for(let e=0;e[e.name,e.value])),i=0;for(let e=0;er.get(e.name)===e.value)&&(i+=1,i>=Z5&&this.entries.splice(t.idx,1))}}insertMarker(){this.entries.unshift($5)}pushElement(e,t){this._ensureNoahArkCondition(e),this.entries.unshift({type:Q5.Element,element:e,token:t})}insertElementAfterBookmark(e,t){let n=this.entries.indexOf(this.bookmark);this.entries.splice(n,0,{type:Q5.Element,element:e,token:t})}removeEntry(e){let t=this.entries.indexOf(e);t!==-1&&this.entries.splice(t,1)}clearToLastMarker(){let e=this.entries.indexOf($5);e===-1?this.entries.length=0:this.entries.splice(0,e+1)}getElementEntryInScopeWithTagName(e){let t=this.entries.find(t=>t.type===Q5.Marker||this.treeAdapter.getTagName(t.element)===e);return t&&t.type===Q5.Element?t:null}getElementEntry(e){return this.entries.find(t=>t.type===Q5.Element&&t.element===e)}},e7={createDocument(){return{nodeName:`#document`,mode:I5.NO_QUIRKS,childNodes:[]}},createDocumentFragment(){return{nodeName:`#document-fragment`,childNodes:[]}},createElement(e,t,n){return{nodeName:e,tagName:e,attrs:n,namespaceURI:t,childNodes:[],parentNode:null}},createCommentNode(e){return{nodeName:`#comment`,data:e,parentNode:null}},createTextNode(e){return{nodeName:`#text`,value:e,parentNode:null}},appendChild(e,t){e.childNodes.push(t),t.parentNode=e},insertBefore(e,t,n){let r=e.childNodes.indexOf(n);e.childNodes.splice(r,0,t),t.parentNode=e},setTemplateContent(e,t){e.content=t},getTemplateContent(e){return e.content},setDocumentType(e,t,n,r){let i=e.childNodes.find(e=>e.nodeName===`#documentType`);if(i)i.name=t,i.publicId=n,i.systemId=r;else{let i={nodeName:`#documentType`,name:t,publicId:n,systemId:r,parentNode:null};e7.appendChild(e,i)}},setDocumentMode(e,t){e.mode=t},getDocumentMode(e){return e.mode},detachNode(e){if(e.parentNode){let t=e.parentNode.childNodes.indexOf(e);e.parentNode.childNodes.splice(t,1),e.parentNode=null}},insertText(e,t){if(e.childNodes.length>0){let n=e.childNodes[e.childNodes.length-1];if(e7.isTextNode(n)){n.value+=t;return}}e7.appendChild(e,e7.createTextNode(t))},insertTextBefore(e,t,n){let r=e.childNodes[e.childNodes.indexOf(n)-1];r&&e7.isTextNode(r)?r.value+=t:e7.insertBefore(e,e7.createTextNode(t),n)},adoptAttributes(e,t){let n=new Set(e.attrs.map(e=>e.name));for(let r=0;re.startsWith(t))}function Yde(e){return e.name===t7&&e.publicId===null&&(e.systemId===null||e.systemId===Wde)}function Xde(e){if(e.name!==t7)return I5.QUIRKS;let{systemId:t}=e;if(t&&t.toLowerCase()===Gde)return I5.QUIRKS;let{publicId:n}=e;if(n!==null){if(n=n.toLowerCase(),qde.has(n))return I5.QUIRKS;let e=t===null?Kde:n7;if(i7(n,e))return I5.QUIRKS;if(e=t===null?r7:Jde,i7(n,e))return I5.LIMITED_QUIRKS}return I5.NO_QUIRKS}var a7={TEXT_HTML:`text/html`,APPLICATION_XML:`application/xhtml+xml`},Zde=`definitionurl`,Qde=`definitionURL`,$de=new Map(`attributeName.attributeType.baseFrequency.baseProfile.calcMode.clipPathUnits.diffuseConstant.edgeMode.filterUnits.glyphRef.gradientTransform.gradientUnits.kernelMatrix.kernelUnitLength.keyPoints.keySplines.keyTimes.lengthAdjust.limitingConeAngle.markerHeight.markerUnits.markerWidth.maskContentUnits.maskUnits.numOctaves.pathLength.patternContentUnits.patternTransform.patternUnits.pointsAtX.pointsAtY.pointsAtZ.preserveAlpha.preserveAspectRatio.primitiveUnits.refX.refY.repeatCount.repeatDur.requiredExtensions.requiredFeatures.specularConstant.specularExponent.spreadMethod.startOffset.stdDeviation.stitchTiles.surfaceScale.systemLanguage.tableValues.targetX.targetY.textLength.viewBox.viewTarget.xChannelSelector.yChannelSelector.zoomAndPan`.split(`.`).map(e=>[e.toLowerCase(),e])),efe=new Map([[`xlink:actuate`,{prefix:`xlink`,name:`actuate`,namespace:J.XLINK}],[`xlink:arcrole`,{prefix:`xlink`,name:`arcrole`,namespace:J.XLINK}],[`xlink:href`,{prefix:`xlink`,name:`href`,namespace:J.XLINK}],[`xlink:role`,{prefix:`xlink`,name:`role`,namespace:J.XLINK}],[`xlink:show`,{prefix:`xlink`,name:`show`,namespace:J.XLINK}],[`xlink:title`,{prefix:`xlink`,name:`title`,namespace:J.XLINK}],[`xlink:type`,{prefix:`xlink`,name:`type`,namespace:J.XLINK}],[`xml:lang`,{prefix:`xml`,name:`lang`,namespace:J.XML}],[`xml:space`,{prefix:`xml`,name:`space`,namespace:J.XML}],[`xmlns`,{prefix:``,name:`xmlns`,namespace:J.XMLNS}],[`xmlns:xlink`,{prefix:`xmlns`,name:`xlink`,namespace:J.XMLNS}]]),tfe=new Map(`altGlyph.altGlyphDef.altGlyphItem.animateColor.animateMotion.animateTransform.clipPath.feBlend.feColorMatrix.feComponentTransfer.feComposite.feConvolveMatrix.feDiffuseLighting.feDisplacementMap.feDistantLight.feFlood.feFuncA.feFuncB.feFuncG.feFuncR.feGaussianBlur.feImage.feMerge.feMergeNode.feMorphology.feOffset.fePointLight.feSpecularLighting.feSpotLight.feTile.feTurbulence.foreignObject.glyphRef.linearGradient.radialGradient.textPath`.split(`.`).map(e=>[e.toLowerCase(),e])),nfe=new Set([X.B,X.BIG,X.BLOCKQUOTE,X.BODY,X.BR,X.CENTER,X.CODE,X.DD,X.DIV,X.DL,X.DT,X.EM,X.EMBED,X.H1,X.H2,X.H3,X.H4,X.H5,X.H6,X.HEAD,X.HR,X.I,X.IMG,X.LI,X.LISTING,X.MENU,X.META,X.NOBR,X.OL,X.P,X.PRE,X.RUBY,X.S,X.SMALL,X.SPAN,X.STRONG,X.STRIKE,X.SUB,X.SUP,X.TABLE,X.TT,X.U,X.UL,X.VAR]);function rfe(e){let t=e.tagID;return t===X.FONT&&e.attrs.some(({name:e})=>e===F5.COLOR||e===F5.SIZE||e===F5.FACE)||nfe.has(t)}function o7(e){for(let t=0;t0&&this._setContextModes(e,t)}onItemPop(e,t){var n,r;if(this.options.sourceCodeLocationInfo&&this._setEndLocation(e,this.currentToken),(r=(n=this.treeAdapter).onItemPop)==null||r.call(n,e,this.openElements.current),t){let e,t;this.openElements.stackTop===0&&this.fragmentContext?(e=this.fragmentContext,t=this.fragmentContextID):{current:e,currentTagId:t}=this.openElements,this._setContextModes(e,t)}}_setContextModes(e,t){let n=e===this.document||e&&this.treeAdapter.getNamespaceURI(e)===J.HTML;this.currentNotInHTML=!n,this.tokenizer.inForeignNode=!n&&e!==void 0&&t!==void 0&&!this._isIntegrationPoint(t,e)}_switchToTextParsing(e,t){this._insertElement(e,J.HTML),this.tokenizer.state=t,this.originalInsertionMode=this.insertionMode,this.insertionMode=$.TEXT}switchToPlaintextParsing(){this.insertionMode=$.TEXT,this.originalInsertionMode=$.IN_BODY,this.tokenizer.state=z5.PLAINTEXT}_getAdjustedCurrentElement(){return this.openElements.stackTop===0&&this.fragmentContext?this.fragmentContext:this.openElements.current}_findFormInFragmentContext(){let e=this.fragmentContext;for(;e;){if(this.treeAdapter.getTagName(e)===Y.FORM){this.formElement=e;break}e=this.treeAdapter.getParentNode(e)}}_initTokenizerForFragmentParsing(){if(!(!this.fragmentContext||this.treeAdapter.getNamespaceURI(this.fragmentContext)!==J.HTML))switch(this.fragmentContextID){case X.TITLE:case X.TEXTAREA:this.tokenizer.state=z5.RCDATA;break;case X.STYLE:case X.XMP:case X.IFRAME:case X.NOEMBED:case X.NOFRAMES:case X.NOSCRIPT:this.tokenizer.state=z5.RAWTEXT;break;case X.SCRIPT:this.tokenizer.state=z5.SCRIPT_DATA;break;case X.PLAINTEXT:this.tokenizer.state=z5.PLAINTEXT}}_setDocumentType(e){let t=e.name||``,n=e.publicId||``,r=e.systemId||``;if(this.treeAdapter.setDocumentType(this.document,t,n,r),e.location){let t=this.treeAdapter.getChildNodes(this.document).find(e=>this.treeAdapter.isDocumentTypeNode(e));t&&this.treeAdapter.setNodeSourceCodeLocation(t,e.location)}}_attachElementToTree(e,t){if(this.options.sourceCodeLocationInfo){let n=t&&{...t,startTag:t};this.treeAdapter.setNodeSourceCodeLocation(e,n)}if(this._shouldFosterParentOnInsertion())this._fosterParentElement(e);else{let t=this.openElements.currentTmplContentOrNode;this.treeAdapter.appendChild(t??this.document,e)}}_appendElement(e,t){let n=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(n,e.location)}_insertElement(e,t){let n=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(n,e.location),this.openElements.push(n,e.tagID)}_insertFakeElement(e,t){let n=this.treeAdapter.createElement(e,J.HTML,[]);this._attachElementToTree(n,null),this.openElements.push(n,t)}_insertTemplate(e){let t=this.treeAdapter.createElement(e.tagName,J.HTML,e.attrs),n=this.treeAdapter.createDocumentFragment();this.treeAdapter.setTemplateContent(t,n),this._attachElementToTree(t,e.location),this.openElements.push(t,e.tagID),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(n,null)}_insertFakeRootElement(){let e=this.treeAdapter.createElement(Y.HTML,J.HTML,[]);this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(e,null),this.treeAdapter.appendChild(this.openElements.current,e),this.openElements.push(e,X.HTML)}_appendCommentNode(e,t){let n=this.treeAdapter.createCommentNode(e.data);this.treeAdapter.appendChild(t,n),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(n,e.location)}_insertCharacters(e){let t,n;if(this._shouldFosterParentOnInsertion()?({parent:t,beforeElement:n}=this._findFosterParentingLocation(),n?this.treeAdapter.insertTextBefore(t,e.chars,n):this.treeAdapter.insertText(t,e.chars)):(t=this.openElements.currentTmplContentOrNode,this.treeAdapter.insertText(t,e.chars)),!e.location)return;let r=this.treeAdapter.getChildNodes(t),i=r[(n?r.lastIndexOf(n):r.length)-1];if(this.treeAdapter.getNodeSourceCodeLocation(i)){let{endLine:t,endCol:n,endOffset:r}=e.location;this.treeAdapter.updateNodeSourceCodeLocation(i,{endLine:t,endCol:n,endOffset:r})}else this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(i,e.location)}_adoptNodes(e,t){for(let n=this.treeAdapter.getFirstChild(e);n;n=this.treeAdapter.getFirstChild(e))this.treeAdapter.detachNode(n),this.treeAdapter.appendChild(t,n)}_setEndLocation(e,t){if(this.treeAdapter.getNodeSourceCodeLocation(e)&&t.location){let n=t.location,r=this.treeAdapter.getTagName(e),i=t.type===O5.END_TAG&&r===t.tagName?{endTag:{...n},endLine:n.endLine,endCol:n.endCol,endOffset:n.endOffset}:{endLine:n.startLine,endCol:n.startCol,endOffset:n.startOffset};this.treeAdapter.updateNodeSourceCodeLocation(e,i)}}shouldProcessStartTagTokenInForeignContent(e){if(!this.currentNotInHTML)return!1;let t,n;return this.openElements.stackTop===0&&this.fragmentContext?(t=this.fragmentContext,n=this.fragmentContextID):{current:t,currentTagId:n}=this.openElements,e.tagID===X.SVG&&this.treeAdapter.getTagName(t)===Y.ANNOTATION_XML&&this.treeAdapter.getNamespaceURI(t)===J.MATHML?!1:this.tokenizer.inForeignNode||(e.tagID===X.MGLYPH||e.tagID===X.MALIGNMARK)&&n!==void 0&&!this._isIntegrationPoint(n,t,J.HTML)}_processToken(e){switch(e.type){case O5.CHARACTER:this.onCharacter(e);break;case O5.NULL_CHARACTER:this.onNullCharacter(e);break;case O5.COMMENT:this.onComment(e);break;case O5.DOCTYPE:this.onDoctype(e);break;case O5.START_TAG:this._processStartTag(e);break;case O5.END_TAG:this.onEndTag(e);break;case O5.EOF:this.onEof(e);break;case O5.WHITESPACE_CHARACTER:this.onWhitespaceCharacter(e)}}_isIntegrationPoint(e,t,n){return sfe(e,this.treeAdapter.getNamespaceURI(t),this.treeAdapter.getAttrList(t),n)}_reconstructActiveFormattingElements(){let e=this.activeFormattingElements.entries.length;if(e){let t=this.activeFormattingElements.entries.findIndex(e=>e.type===Q5.Marker||this.openElements.contains(e.element)),n=t===-1?e-1:t-1;for(let e=n;e>=0;e--){let t=this.activeFormattingElements.entries[e];this._insertElement(t.token,this.treeAdapter.getNamespaceURI(t.element)),t.element=this.openElements.current}}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=$.IN_ROW}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(X.P),this.openElements.popUntilTagNamePopped(X.P)}_resetInsertionMode(){for(let e=this.openElements.stackTop;e>=0;e--)switch(e===0&&this.fragmentContext?this.fragmentContextID:this.openElements.tagIDs[e]){case X.TR:this.insertionMode=$.IN_ROW;return;case X.TBODY:case X.THEAD:case X.TFOOT:this.insertionMode=$.IN_TABLE_BODY;return;case X.CAPTION:this.insertionMode=$.IN_CAPTION;return;case X.COLGROUP:this.insertionMode=$.IN_COLUMN_GROUP;return;case X.TABLE:this.insertionMode=$.IN_TABLE;return;case X.BODY:this.insertionMode=$.IN_BODY;return;case X.FRAMESET:this.insertionMode=$.IN_FRAMESET;return;case X.SELECT:this._resetInsertionModeForSelect(e);return;case X.TEMPLATE:this.insertionMode=this.tmplInsertionModeStack[0];return;case X.HTML:this.insertionMode=this.headElement?$.AFTER_HEAD:$.BEFORE_HEAD;return;case X.TD:case X.TH:if(e>0){this.insertionMode=$.IN_CELL;return}break;case X.HEAD:if(e>0){this.insertionMode=$.IN_HEAD;return}}this.insertionMode=$.IN_BODY}_resetInsertionModeForSelect(e){if(e>0)for(let t=e-1;t>0;t--){let e=this.openElements.tagIDs[t];if(e===X.TEMPLATE)break;if(e===X.TABLE){this.insertionMode=$.IN_SELECT_IN_TABLE;return}}this.insertionMode=$.IN_SELECT}_isElementCausesFosterParenting(e){return l7.has(e)}_shouldFosterParentOnInsertion(){return this.fosterParentingEnabled&&this.openElements.currentTagId!==void 0&&this._isElementCausesFosterParenting(this.openElements.currentTagId)}_findFosterParentingLocation(){for(let e=this.openElements.stackTop;e>=0;e--){let t=this.openElements.items[e];switch(this.openElements.tagIDs[e]){case X.TEMPLATE:if(this.treeAdapter.getNamespaceURI(t)===J.HTML)return{parent:this.treeAdapter.getTemplateContent(t),beforeElement:null};break;case X.TABLE:{let n=this.treeAdapter.getParentNode(t);return n?{parent:n,beforeElement:t}:{parent:this.openElements.items[e-1],beforeElement:null}}}}return{parent:this.openElements.items[0],beforeElement:null}}_fosterParentElement(e){let t=this._findFosterParentingLocation();t.beforeElement?this.treeAdapter.insertBefore(t.parent,e,t.beforeElement):this.treeAdapter.appendChild(t.parent,e)}_isSpecialElement(e,t){return jde[this.treeAdapter.getNamespaceURI(e)].has(t)}onCharacter(e){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Bpe(this,e);return}switch(this.insertionMode){case $.INITIAL:h7(this,e);break;case $.BEFORE_HTML:_7(this,e);break;case $.BEFORE_HEAD:v7(this,e);break;case $.IN_HEAD:x7(this,e);break;case $.IN_HEAD_NO_SCRIPT:S7(this,e);break;case $.AFTER_HEAD:C7(this,e);break;case $.IN_BODY:case $.IN_CAPTION:case $.IN_CELL:case $.IN_TEMPLATE:E7(this,e);break;case $.TEXT:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:this._insertCharacters(e);break;case $.IN_TABLE:case $.IN_TABLE_BODY:case $.IN_ROW:F7(this,e);break;case $.IN_TABLE_TEXT:B7(this,e);break;case $.IN_COLUMN_GROUP:W7(this,e);break;case $.AFTER_BODY:$7(this,e);break;case $.AFTER_AFTER_BODY:e9(this,e)}}onNullCharacter(e){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){zpe(this,e);return}switch(this.insertionMode){case $.INITIAL:h7(this,e);break;case $.BEFORE_HTML:_7(this,e);break;case $.BEFORE_HEAD:v7(this,e);break;case $.IN_HEAD:x7(this,e);break;case $.IN_HEAD_NO_SCRIPT:S7(this,e);break;case $.AFTER_HEAD:C7(this,e);break;case $.TEXT:this._insertCharacters(e);break;case $.IN_TABLE:case $.IN_TABLE_BODY:case $.IN_ROW:F7(this,e);break;case $.IN_COLUMN_GROUP:W7(this,e);break;case $.AFTER_BODY:$7(this,e);break;case $.AFTER_AFTER_BODY:e9(this,e)}}onComment(e){if(this.skipNextNewLine=!1,this.currentNotInHTML){p7(this,e);return}switch(this.insertionMode){case $.INITIAL:case $.BEFORE_HTML:case $.BEFORE_HEAD:case $.IN_HEAD:case $.IN_HEAD_NO_SCRIPT:case $.AFTER_HEAD:case $.IN_BODY:case $.IN_TABLE:case $.IN_CAPTION:case $.IN_COLUMN_GROUP:case $.IN_TABLE_BODY:case $.IN_ROW:case $.IN_CELL:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:case $.IN_TEMPLATE:case $.IN_FRAMESET:case $.AFTER_FRAMESET:p7(this,e);break;case $.IN_TABLE_TEXT:V7(this,e);break;case $.AFTER_BODY:vfe(this,e);break;case $.AFTER_AFTER_BODY:case $.AFTER_AFTER_FRAMESET:yfe(this,e)}}onDoctype(e){switch(this.skipNextNewLine=!1,this.insertionMode){case $.INITIAL:bfe(this,e);break;case $.BEFORE_HEAD:case $.IN_HEAD:case $.IN_HEAD_NO_SCRIPT:case $.AFTER_HEAD:this._err(e,q.misplacedDoctype);break;case $.IN_TABLE_TEXT:V7(this,e)}}onStartTag(e){this.skipNextNewLine=!1,this.currentToken=e,this._processStartTag(e),e.selfClosing&&!e.ackSelfClosing&&this._err(e,q.nonVoidHtmlElementStartTagWithTrailingSolidus)}_processStartTag(e){this.shouldProcessStartTagTokenInForeignContent(e)?Vpe(this,e):this._startTagOutsideForeignContent(e)}_startTagOutsideForeignContent(e){switch(this.insertionMode){case $.INITIAL:h7(this,e);break;case $.BEFORE_HTML:g7(this,e);break;case $.BEFORE_HEAD:Sfe(this,e);break;case $.IN_HEAD:y7(this,e);break;case $.IN_HEAD_NO_SCRIPT:Tfe(this,e);break;case $.AFTER_HEAD:Dfe(this,e);break;case $.IN_BODY:j7(this,e);break;case $.IN_TABLE:I7(this,e);break;case $.IN_TABLE_TEXT:V7(this,e);break;case $.IN_CAPTION:Cpe(this,e);break;case $.IN_COLUMN_GROUP:U7(this,e);break;case $.IN_TABLE_BODY:G7(this,e);break;case $.IN_ROW:q7(this,e);break;case $.IN_CELL:Epe(this,e);break;case $.IN_SELECT:Y7(this,e);break;case $.IN_SELECT_IN_TABLE:Ope(this,e);break;case $.IN_TEMPLATE:Ape(this,e);break;case $.AFTER_BODY:Mpe(this,e);break;case $.IN_FRAMESET:Npe(this,e);break;case $.AFTER_FRAMESET:Fpe(this,e);break;case $.AFTER_AFTER_BODY:Lpe(this,e);break;case $.AFTER_AFTER_FRAMESET:Rpe(this,e)}}onEndTag(e){this.skipNextNewLine=!1,this.currentToken=e,this.currentNotInHTML?Hpe(this,e):this._endTagOutsideForeignContent(e)}_endTagOutsideForeignContent(e){switch(this.insertionMode){case $.INITIAL:h7(this,e);break;case $.BEFORE_HTML:xfe(this,e);break;case $.BEFORE_HEAD:Cfe(this,e);break;case $.IN_HEAD:wfe(this,e);break;case $.IN_HEAD_NO_SCRIPT:Efe(this,e);break;case $.AFTER_HEAD:Ofe(this,e);break;case $.IN_BODY:N7(this,e);break;case $.TEXT:ppe(this,e);break;case $.IN_TABLE:L7(this,e);break;case $.IN_TABLE_TEXT:V7(this,e);break;case $.IN_CAPTION:wpe(this,e);break;case $.IN_COLUMN_GROUP:Tpe(this,e);break;case $.IN_TABLE_BODY:K7(this,e);break;case $.IN_ROW:J7(this,e);break;case $.IN_CELL:Dpe(this,e);break;case $.IN_SELECT:X7(this,e);break;case $.IN_SELECT_IN_TABLE:kpe(this,e);break;case $.IN_TEMPLATE:jpe(this,e);break;case $.AFTER_BODY:Q7(this,e);break;case $.IN_FRAMESET:Ppe(this,e);break;case $.AFTER_FRAMESET:Ipe(this,e);break;case $.AFTER_AFTER_BODY:e9(this,e)}}onEof(e){switch(this.insertionMode){case $.INITIAL:h7(this,e);break;case $.BEFORE_HTML:_7(this,e);break;case $.BEFORE_HEAD:v7(this,e);break;case $.IN_HEAD:x7(this,e);break;case $.IN_HEAD_NO_SCRIPT:S7(this,e);break;case $.AFTER_HEAD:C7(this,e);break;case $.IN_BODY:case $.IN_TABLE:case $.IN_CAPTION:case $.IN_COLUMN_GROUP:case $.IN_TABLE_BODY:case $.IN_ROW:case $.IN_CELL:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:P7(this,e);break;case $.TEXT:mpe(this,e);break;case $.IN_TABLE_TEXT:V7(this,e);break;case $.IN_TEMPLATE:Z7(this,e);break;case $.AFTER_BODY:case $.IN_FRAMESET:case $.AFTER_FRAMESET:case $.AFTER_AFTER_BODY:case $.AFTER_AFTER_FRAMESET:m7(this,e)}}onWhitespaceCharacter(e){if(this.skipNextNewLine&&(this.skipNextNewLine=!1,e.chars.charCodeAt(0)===K.LINE_FEED)){if(e.chars.length===1)return;e.chars=e.chars.substr(1)}if(this.tokenizer.inForeignNode){this._insertCharacters(e);return}switch(this.insertionMode){case $.IN_HEAD:case $.IN_HEAD_NO_SCRIPT:case $.AFTER_HEAD:case $.TEXT:case $.IN_COLUMN_GROUP:case $.IN_SELECT:case $.IN_SELECT_IN_TABLE:case $.IN_FRAMESET:case $.AFTER_FRAMESET:this._insertCharacters(e);break;case $.IN_BODY:case $.IN_CAPTION:case $.IN_CELL:case $.IN_TEMPLATE:case $.AFTER_BODY:case $.AFTER_AFTER_BODY:case $.AFTER_AFTER_FRAMESET:T7(this,e);break;case $.IN_TABLE:case $.IN_TABLE_BODY:case $.IN_ROW:F7(this,e);break;case $.IN_TABLE_TEXT:z7(this,e)}}};function ffe(e,t){let n=e.activeFormattingElements.getElementEntryInScopeWithTagName(t.tagName);return n?e.openElements.contains(n.element)?e.openElements.hasInScope(t.tagID)||(n=null):(e.activeFormattingElements.removeEntry(n),n=null):M7(e,t),n}function pfe(e,t){let n=null,r=e.openElements.stackTop;for(;r>=0;r--){let i=e.openElements.items[r];if(i===t.element)break;e._isSpecialElement(i,e.openElements.tagIDs[r])&&(n=i)}return n||(e.openElements.shortenToLength(Math.max(r,0)),e.activeFormattingElements.removeEntry(t)),n}function mfe(e,t,n){let r=t,i=e.openElements.getCommonAncestor(t);for(let a=0,o=i;o!==n;a++,o=i){i=e.openElements.getCommonAncestor(o);let n=e.activeFormattingElements.getElementEntry(o),s=n&&a>=ufe;!n||s?(s&&e.activeFormattingElements.removeEntry(n),e.openElements.remove(o)):(o=hfe(e,n),r===t&&(e.activeFormattingElements.bookmark=n),e.treeAdapter.detachNode(r),e.treeAdapter.appendChild(o,r),r=o)}return r}function hfe(e,t){let n=e.treeAdapter.getNamespaceURI(t.element),r=e.treeAdapter.createElement(t.token.tagName,n,t.token.attrs);return e.openElements.replace(t.element,r),t.element=r,r}function gfe(e,t,n){let r=L5(e.treeAdapter.getTagName(t));if(e._isElementCausesFosterParenting(r))e._fosterParentElement(n);else{let i=e.treeAdapter.getNamespaceURI(t);r===X.TEMPLATE&&i===J.HTML&&(t=e.treeAdapter.getTemplateContent(t)),e.treeAdapter.appendChild(t,n)}}function _fe(e,t,n){let r=e.treeAdapter.getNamespaceURI(n.element),{token:i}=n,a=e.treeAdapter.createElement(i.tagName,r,i.attrs);e._adoptNodes(t,a),e.treeAdapter.appendChild(t,a),e.activeFormattingElements.insertElementAfterBookmark(a,i),e.activeFormattingElements.removeEntry(n),e.openElements.remove(n.element),e.openElements.insertAfter(t,a,i.tagID)}function f7(e,t){for(let n=0;n=n;r--)e._setEndLocation(e.openElements.items[r],t);if(!e.fragmentContext&&e.openElements.stackTop>=0){let n=e.openElements.items[0],r=e.treeAdapter.getNodeSourceCodeLocation(n);if(r&&!r.endTag&&(e._setEndLocation(n,t),e.openElements.stackTop>=1)){let n=e.openElements.items[1],r=e.treeAdapter.getNodeSourceCodeLocation(n);r&&!r.endTag&&e._setEndLocation(n,t)}}}}function bfe(e,t){e._setDocumentType(t);let n=t.forceQuirks?I5.QUIRKS:Xde(t);Yde(t)||e._err(t,q.nonConformingDoctype),e.treeAdapter.setDocumentMode(e.document,n),e.insertionMode=$.BEFORE_HTML}function h7(e,t){e._err(t,q.missingDoctype,!0),e.treeAdapter.setDocumentMode(e.document,I5.QUIRKS),e.insertionMode=$.BEFORE_HTML,e._processToken(t)}function g7(e,t){t.tagID===X.HTML?(e._insertElement(t,J.HTML),e.insertionMode=$.BEFORE_HEAD):_7(e,t)}function xfe(e,t){let n=t.tagID;(n===X.HTML||n===X.HEAD||n===X.BODY||n===X.BR)&&_7(e,t)}function _7(e,t){e._insertFakeRootElement(),e.insertionMode=$.BEFORE_HEAD,e._processToken(t)}function Sfe(e,t){switch(t.tagID){case X.HTML:j7(e,t);break;case X.HEAD:e._insertElement(t,J.HTML),e.headElement=e.openElements.current,e.insertionMode=$.IN_HEAD;break;default:v7(e,t)}}function Cfe(e,t){let n=t.tagID;n===X.HEAD||n===X.BODY||n===X.HTML||n===X.BR?v7(e,t):e._err(t,q.endTagWithoutMatchingOpenElement)}function v7(e,t){e._insertFakeElement(Y.HEAD,X.HEAD),e.headElement=e.openElements.current,e.insertionMode=$.IN_HEAD,e._processToken(t)}function y7(e,t){switch(t.tagID){case X.HTML:j7(e,t);break;case X.BASE:case X.BASEFONT:case X.BGSOUND:case X.LINK:case X.META:e._appendElement(t,J.HTML),t.ackSelfClosing=!0;break;case X.TITLE:e._switchToTextParsing(t,z5.RCDATA);break;case X.NOSCRIPT:e.options.scriptingEnabled?e._switchToTextParsing(t,z5.RAWTEXT):(e._insertElement(t,J.HTML),e.insertionMode=$.IN_HEAD_NO_SCRIPT);break;case X.NOFRAMES:case X.STYLE:e._switchToTextParsing(t,z5.RAWTEXT);break;case X.SCRIPT:e._switchToTextParsing(t,z5.SCRIPT_DATA);break;case X.TEMPLATE:e._insertTemplate(t),e.activeFormattingElements.insertMarker(),e.framesetOk=!1,e.insertionMode=$.IN_TEMPLATE,e.tmplInsertionModeStack.unshift($.IN_TEMPLATE);break;case X.HEAD:e._err(t,q.misplacedStartTagForHeadElement);break;default:x7(e,t)}}function wfe(e,t){switch(t.tagID){case X.HEAD:e.openElements.pop(),e.insertionMode=$.AFTER_HEAD;break;case X.BODY:case X.BR:case X.HTML:x7(e,t);break;case X.TEMPLATE:b7(e,t);break;default:e._err(t,q.endTagWithoutMatchingOpenElement)}}function b7(e,t){e.openElements.tmplCount>0?(e.openElements.generateImpliedEndTagsThoroughly(),e.openElements.currentTagId!==X.TEMPLATE&&e._err(t,q.closingOfElementWithOpenChildElements),e.openElements.popUntilTagNamePopped(X.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode()):e._err(t,q.endTagWithoutMatchingOpenElement)}function x7(e,t){e.openElements.pop(),e.insertionMode=$.AFTER_HEAD,e._processToken(t)}function Tfe(e,t){switch(t.tagID){case X.HTML:j7(e,t);break;case X.BASEFONT:case X.BGSOUND:case X.HEAD:case X.LINK:case X.META:case X.NOFRAMES:case X.STYLE:y7(e,t);break;case X.NOSCRIPT:e._err(t,q.nestedNoscriptInHead);break;default:S7(e,t)}}function Efe(e,t){switch(t.tagID){case X.NOSCRIPT:e.openElements.pop(),e.insertionMode=$.IN_HEAD;break;case X.BR:S7(e,t);break;default:e._err(t,q.endTagWithoutMatchingOpenElement)}}function S7(e,t){let n=t.type===O5.EOF?q.openElementsLeftAfterEof:q.disallowedContentInNoscriptInHead;e._err(t,n),e.openElements.pop(),e.insertionMode=$.IN_HEAD,e._processToken(t)}function Dfe(e,t){switch(t.tagID){case X.HTML:j7(e,t);break;case X.BODY:e._insertElement(t,J.HTML),e.framesetOk=!1,e.insertionMode=$.IN_BODY;break;case X.FRAMESET:e._insertElement(t,J.HTML),e.insertionMode=$.IN_FRAMESET;break;case X.BASE:case X.BASEFONT:case X.BGSOUND:case X.LINK:case X.META:case X.NOFRAMES:case X.SCRIPT:case X.STYLE:case X.TEMPLATE:case X.TITLE:e._err(t,q.abandonedHeadElementChild),e.openElements.push(e.headElement,X.HEAD),y7(e,t),e.openElements.remove(e.headElement);break;case X.HEAD:e._err(t,q.misplacedStartTagForHeadElement);break;default:C7(e,t)}}function Ofe(e,t){switch(t.tagID){case X.BODY:case X.HTML:case X.BR:C7(e,t);break;case X.TEMPLATE:b7(e,t);break;default:e._err(t,q.endTagWithoutMatchingOpenElement)}}function C7(e,t){e._insertFakeElement(Y.BODY,X.BODY),e.insertionMode=$.IN_BODY,w7(e,t)}function w7(e,t){switch(t.type){case O5.CHARACTER:E7(e,t);break;case O5.WHITESPACE_CHARACTER:T7(e,t);break;case O5.COMMENT:p7(e,t);break;case O5.START_TAG:j7(e,t);break;case O5.END_TAG:N7(e,t);break;case O5.EOF:P7(e,t)}}function T7(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t)}function E7(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t),e.framesetOk=!1}function kfe(e,t){e.openElements.tmplCount===0&&e.treeAdapter.adoptAttributes(e.openElements.items[0],t.attrs)}function Afe(e,t){let n=e.openElements.tryPeekProperlyNestedBodyElement();n&&e.openElements.tmplCount===0&&(e.framesetOk=!1,e.treeAdapter.adoptAttributes(n,t.attrs))}function jfe(e,t){let n=e.openElements.tryPeekProperlyNestedBodyElement();e.framesetOk&&n&&(e.treeAdapter.detachNode(n),e.openElements.popAllUpToHtmlElement(),e._insertElement(t,J.HTML),e.insertionMode=$.IN_FRAMESET)}function Mfe(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML)}function Nfe(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e.openElements.currentTagId!==void 0&&R5.has(e.openElements.currentTagId)&&e.openElements.pop(),e._insertElement(t,J.HTML)}function Pfe(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML),e.skipNextNewLine=!0,e.framesetOk=!1}function Ffe(e,t){let n=e.openElements.tmplCount>0;(!e.formElement||n)&&(e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML),n||(e.formElement=e.openElements.current))}function Ife(e,t){e.framesetOk=!1;let n=t.tagID;for(let t=e.openElements.stackTop;t>=0;t--){let r=e.openElements.tagIDs[t];if(n===X.LI&&r===X.LI||(n===X.DD||n===X.DT)&&(r===X.DD||r===X.DT)){e.openElements.generateImpliedEndTagsWithExclusion(r),e.openElements.popUntilTagNamePopped(r);break}if(r!==X.ADDRESS&&r!==X.DIV&&r!==X.P&&e._isSpecialElement(e.openElements.items[t],r))break}e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML)}function Lfe(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML),e.tokenizer.state=z5.PLAINTEXT}function Rfe(e,t){e.openElements.hasInScope(X.BUTTON)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(X.BUTTON)),e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML),e.framesetOk=!1}function zfe(e,t){let n=e.activeFormattingElements.getElementEntryInScopeWithTagName(Y.A);n&&(f7(e,t),e.openElements.remove(n.element),e.activeFormattingElements.removeEntry(n)),e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Bfe(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Vfe(e,t){e._reconstructActiveFormattingElements(),e.openElements.hasInScope(X.NOBR)&&(f7(e,t),e._reconstructActiveFormattingElements()),e._insertElement(t,J.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Hfe(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML),e.activeFormattingElements.insertMarker(),e.framesetOk=!1}function Ufe(e,t){e.treeAdapter.getDocumentMode(e.document)!==I5.QUIRKS&&e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._insertElement(t,J.HTML),e.framesetOk=!1,e.insertionMode=$.IN_TABLE}function D7(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,J.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function O7(e){let t=k5(e,F5.TYPE);return t!=null&&t.toLowerCase()===cfe}function Wfe(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,J.HTML),O7(t)||(e.framesetOk=!1),t.ackSelfClosing=!0}function Gfe(e,t){e._appendElement(t,J.HTML),t.ackSelfClosing=!0}function Kfe(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._appendElement(t,J.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function qfe(e,t){t.tagName=Y.IMG,t.tagID=X.IMG,D7(e,t)}function Jfe(e,t){e._insertElement(t,J.HTML),e.skipNextNewLine=!0,e.tokenizer.state=z5.RCDATA,e.originalInsertionMode=e.insertionMode,e.framesetOk=!1,e.insertionMode=$.TEXT}function Yfe(e,t){e.openElements.hasInButtonScope(X.P)&&e._closePElement(),e._reconstructActiveFormattingElements(),e.framesetOk=!1,e._switchToTextParsing(t,z5.RAWTEXT)}function Xfe(e,t){e.framesetOk=!1,e._switchToTextParsing(t,z5.RAWTEXT)}function k7(e,t){e._switchToTextParsing(t,z5.RAWTEXT)}function Zfe(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML),e.framesetOk=!1,e.insertionMode=e.insertionMode===$.IN_TABLE||e.insertionMode===$.IN_CAPTION||e.insertionMode===$.IN_TABLE_BODY||e.insertionMode===$.IN_ROW||e.insertionMode===$.IN_CELL?$.IN_SELECT_IN_TABLE:$.IN_SELECT}function Qfe(e,t){e.openElements.currentTagId===X.OPTION&&e.openElements.pop(),e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML)}function $fe(e,t){e.openElements.hasInScope(X.RUBY)&&e.openElements.generateImpliedEndTags(),e._insertElement(t,J.HTML)}function epe(e,t){e.openElements.hasInScope(X.RUBY)&&e.openElements.generateImpliedEndTagsWithExclusion(X.RTC),e._insertElement(t,J.HTML)}function tpe(e,t){e._reconstructActiveFormattingElements(),o7(t),c7(t),t.selfClosing?e._appendElement(t,J.MATHML):e._insertElement(t,J.MATHML),t.ackSelfClosing=!0}function npe(e,t){e._reconstructActiveFormattingElements(),s7(t),c7(t),t.selfClosing?e._appendElement(t,J.SVG):e._insertElement(t,J.SVG),t.ackSelfClosing=!0}function A7(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,J.HTML)}function j7(e,t){switch(t.tagID){case X.I:case X.S:case X.B:case X.U:case X.EM:case X.TT:case X.BIG:case X.CODE:case X.FONT:case X.SMALL:case X.STRIKE:case X.STRONG:Bfe(e,t);break;case X.A:zfe(e,t);break;case X.H1:case X.H2:case X.H3:case X.H4:case X.H5:case X.H6:Nfe(e,t);break;case X.P:case X.DL:case X.OL:case X.UL:case X.DIV:case X.DIR:case X.NAV:case X.MAIN:case X.MENU:case X.ASIDE:case X.CENTER:case X.FIGURE:case X.FOOTER:case X.HEADER:case X.HGROUP:case X.DIALOG:case X.DETAILS:case X.ADDRESS:case X.ARTICLE:case X.SEARCH:case X.SECTION:case X.SUMMARY:case X.FIELDSET:case X.BLOCKQUOTE:case X.FIGCAPTION:Mfe(e,t);break;case X.LI:case X.DD:case X.DT:Ife(e,t);break;case X.BR:case X.IMG:case X.WBR:case X.AREA:case X.EMBED:case X.KEYGEN:D7(e,t);break;case X.HR:Kfe(e,t);break;case X.RB:case X.RTC:$fe(e,t);break;case X.RT:case X.RP:epe(e,t);break;case X.PRE:case X.LISTING:Pfe(e,t);break;case X.XMP:Yfe(e,t);break;case X.SVG:npe(e,t);break;case X.HTML:kfe(e,t);break;case X.BASE:case X.LINK:case X.META:case X.STYLE:case X.TITLE:case X.SCRIPT:case X.BGSOUND:case X.BASEFONT:case X.TEMPLATE:y7(e,t);break;case X.BODY:Afe(e,t);break;case X.FORM:Ffe(e,t);break;case X.NOBR:Vfe(e,t);break;case X.MATH:tpe(e,t);break;case X.TABLE:Ufe(e,t);break;case X.INPUT:Wfe(e,t);break;case X.PARAM:case X.TRACK:case X.SOURCE:Gfe(e,t);break;case X.IMAGE:qfe(e,t);break;case X.BUTTON:Rfe(e,t);break;case X.APPLET:case X.OBJECT:case X.MARQUEE:Hfe(e,t);break;case X.IFRAME:Xfe(e,t);break;case X.SELECT:Zfe(e,t);break;case X.OPTION:case X.OPTGROUP:Qfe(e,t);break;case X.NOEMBED:case X.NOFRAMES:k7(e,t);break;case X.FRAMESET:jfe(e,t);break;case X.TEXTAREA:Jfe(e,t);break;case X.NOSCRIPT:e.options.scriptingEnabled?k7(e,t):A7(e,t);break;case X.PLAINTEXT:Lfe(e,t);break;case X.COL:case X.TH:case X.TD:case X.TR:case X.HEAD:case X.FRAME:case X.TBODY:case X.TFOOT:case X.THEAD:case X.CAPTION:case X.COLGROUP:break;default:A7(e,t)}}function rpe(e,t){if(e.openElements.hasInScope(X.BODY)&&(e.insertionMode=$.AFTER_BODY,e.options.sourceCodeLocationInfo)){let n=e.openElements.tryPeekProperlyNestedBodyElement();n&&e._setEndLocation(n,t)}}function ipe(e,t){e.openElements.hasInScope(X.BODY)&&(e.insertionMode=$.AFTER_BODY,Q7(e,t))}function ape(e,t){let n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n))}function ope(e){let t=e.openElements.tmplCount>0,{formElement:n}=e;t||(e.formElement=null),(n||t)&&e.openElements.hasInScope(X.FORM)&&(e.openElements.generateImpliedEndTags(),t?e.openElements.popUntilTagNamePopped(X.FORM):n&&e.openElements.remove(n))}function spe(e){e.openElements.hasInButtonScope(X.P)||e._insertFakeElement(Y.P,X.P),e._closePElement()}function cpe(e){e.openElements.hasInListItemScope(X.LI)&&(e.openElements.generateImpliedEndTagsWithExclusion(X.LI),e.openElements.popUntilTagNamePopped(X.LI))}function lpe(e,t){let n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTagsWithExclusion(n),e.openElements.popUntilTagNamePopped(n))}function upe(e){e.openElements.hasNumberedHeaderInScope()&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilNumberedHeaderPopped())}function dpe(e,t){let n=t.tagID;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n),e.activeFormattingElements.clearToLastMarker())}function fpe(e){e._reconstructActiveFormattingElements(),e._insertFakeElement(Y.BR,X.BR),e.openElements.pop(),e.framesetOk=!1}function M7(e,t){let n=t.tagName,r=t.tagID;for(let t=e.openElements.stackTop;t>0;t--){let i=e.openElements.items[t],a=e.openElements.tagIDs[t];if(r===a&&(r!==X.UNKNOWN||e.treeAdapter.getTagName(i)===n)){e.openElements.generateImpliedEndTagsWithExclusion(r),e.openElements.stackTop>=t&&e.openElements.shortenToLength(t);break}if(e._isSpecialElement(i,a))break}}function N7(e,t){switch(t.tagID){case X.A:case X.B:case X.I:case X.S:case X.U:case X.EM:case X.TT:case X.BIG:case X.CODE:case X.FONT:case X.NOBR:case X.SMALL:case X.STRIKE:case X.STRONG:f7(e,t);break;case X.P:spe(e);break;case X.DL:case X.UL:case X.OL:case X.DIR:case X.DIV:case X.NAV:case X.PRE:case X.MAIN:case X.MENU:case X.ASIDE:case X.BUTTON:case X.CENTER:case X.FIGURE:case X.FOOTER:case X.HEADER:case X.HGROUP:case X.DIALOG:case X.ADDRESS:case X.ARTICLE:case X.DETAILS:case X.SEARCH:case X.SECTION:case X.SUMMARY:case X.LISTING:case X.FIELDSET:case X.BLOCKQUOTE:case X.FIGCAPTION:ape(e,t);break;case X.LI:cpe(e);break;case X.DD:case X.DT:lpe(e,t);break;case X.H1:case X.H2:case X.H3:case X.H4:case X.H5:case X.H6:upe(e);break;case X.BR:fpe(e);break;case X.BODY:rpe(e,t);break;case X.HTML:ipe(e,t);break;case X.FORM:ope(e);break;case X.APPLET:case X.OBJECT:case X.MARQUEE:dpe(e,t);break;case X.TEMPLATE:b7(e,t);break;default:M7(e,t)}}function P7(e,t){e.tmplInsertionModeStack.length>0?Z7(e,t):m7(e,t)}function ppe(e,t){var n;t.tagID===X.SCRIPT&&((n=e.scriptHandler)==null||n.call(e,e.openElements.current)),e.openElements.pop(),e.insertionMode=e.originalInsertionMode}function mpe(e,t){e._err(t,q.eofInElementThatCanContainOnlyText),e.openElements.pop(),e.insertionMode=e.originalInsertionMode,e.onEof(t)}function F7(e,t){if(e.openElements.currentTagId!==void 0&&l7.has(e.openElements.currentTagId))switch(e.pendingCharacterTokens.length=0,e.hasNonWhitespacePendingCharacterToken=!1,e.originalInsertionMode=e.insertionMode,e.insertionMode=$.IN_TABLE_TEXT,t.type){case O5.CHARACTER:B7(e,t);break;case O5.WHITESPACE_CHARACTER:z7(e,t)}else R7(e,t)}function hpe(e,t){e.openElements.clearBackToTableContext(),e.activeFormattingElements.insertMarker(),e._insertElement(t,J.HTML),e.insertionMode=$.IN_CAPTION}function gpe(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,J.HTML),e.insertionMode=$.IN_COLUMN_GROUP}function _pe(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(Y.COLGROUP,X.COLGROUP),e.insertionMode=$.IN_COLUMN_GROUP,U7(e,t)}function vpe(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,J.HTML),e.insertionMode=$.IN_TABLE_BODY}function ype(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(Y.TBODY,X.TBODY),e.insertionMode=$.IN_TABLE_BODY,G7(e,t)}function bpe(e,t){e.openElements.hasInTableScope(X.TABLE)&&(e.openElements.popUntilTagNamePopped(X.TABLE),e._resetInsertionMode(),e._processStartTag(t))}function xpe(e,t){O7(t)?e._appendElement(t,J.HTML):R7(e,t),t.ackSelfClosing=!0}function Spe(e,t){!e.formElement&&e.openElements.tmplCount===0&&(e._insertElement(t,J.HTML),e.formElement=e.openElements.current,e.openElements.pop())}function I7(e,t){switch(t.tagID){case X.TD:case X.TH:case X.TR:ype(e,t);break;case X.STYLE:case X.SCRIPT:case X.TEMPLATE:y7(e,t);break;case X.COL:_pe(e,t);break;case X.FORM:Spe(e,t);break;case X.TABLE:bpe(e,t);break;case X.TBODY:case X.TFOOT:case X.THEAD:vpe(e,t);break;case X.INPUT:xpe(e,t);break;case X.CAPTION:hpe(e,t);break;case X.COLGROUP:gpe(e,t);break;default:R7(e,t)}}function L7(e,t){switch(t.tagID){case X.TABLE:e.openElements.hasInTableScope(X.TABLE)&&(e.openElements.popUntilTagNamePopped(X.TABLE),e._resetInsertionMode());break;case X.TEMPLATE:b7(e,t);break;case X.BODY:case X.CAPTION:case X.COL:case X.COLGROUP:case X.HTML:case X.TBODY:case X.TD:case X.TFOOT:case X.TH:case X.THEAD:case X.TR:break;default:R7(e,t)}}function R7(e,t){let n=e.fosterParentingEnabled;e.fosterParentingEnabled=!0,w7(e,t),e.fosterParentingEnabled=n}function z7(e,t){e.pendingCharacterTokens.push(t)}function B7(e,t){e.pendingCharacterTokens.push(t),e.hasNonWhitespacePendingCharacterToken=!0}function V7(e,t){let n=0;if(e.hasNonWhitespacePendingCharacterToken)for(;n0&&e.openElements.currentTagId===X.OPTION&&e.openElements.tagIDs[e.openElements.stackTop-1]===X.OPTGROUP&&e.openElements.pop(),e.openElements.currentTagId===X.OPTGROUP&&e.openElements.pop();break;case X.OPTION:e.openElements.currentTagId===X.OPTION&&e.openElements.pop();break;case X.SELECT:e.openElements.hasInSelectScope(X.SELECT)&&(e.openElements.popUntilTagNamePopped(X.SELECT),e._resetInsertionMode());break;case X.TEMPLATE:b7(e,t)}}function Ope(e,t){let n=t.tagID;n===X.CAPTION||n===X.TABLE||n===X.TBODY||n===X.TFOOT||n===X.THEAD||n===X.TR||n===X.TD||n===X.TH?(e.openElements.popUntilTagNamePopped(X.SELECT),e._resetInsertionMode(),e._processStartTag(t)):Y7(e,t)}function kpe(e,t){let n=t.tagID;n===X.CAPTION||n===X.TABLE||n===X.TBODY||n===X.TFOOT||n===X.THEAD||n===X.TR||n===X.TD||n===X.TH?e.openElements.hasInTableScope(n)&&(e.openElements.popUntilTagNamePopped(X.SELECT),e._resetInsertionMode(),e.onEndTag(t)):X7(e,t)}function Ape(e,t){switch(t.tagID){case X.BASE:case X.BASEFONT:case X.BGSOUND:case X.LINK:case X.META:case X.NOFRAMES:case X.SCRIPT:case X.STYLE:case X.TEMPLATE:case X.TITLE:y7(e,t);break;case X.CAPTION:case X.COLGROUP:case X.TBODY:case X.TFOOT:case X.THEAD:e.tmplInsertionModeStack[0]=$.IN_TABLE,e.insertionMode=$.IN_TABLE,I7(e,t);break;case X.COL:e.tmplInsertionModeStack[0]=$.IN_COLUMN_GROUP,e.insertionMode=$.IN_COLUMN_GROUP,U7(e,t);break;case X.TR:e.tmplInsertionModeStack[0]=$.IN_TABLE_BODY,e.insertionMode=$.IN_TABLE_BODY,G7(e,t);break;case X.TD:case X.TH:e.tmplInsertionModeStack[0]=$.IN_ROW,e.insertionMode=$.IN_ROW,q7(e,t);break;default:e.tmplInsertionModeStack[0]=$.IN_BODY,e.insertionMode=$.IN_BODY,j7(e,t)}}function jpe(e,t){t.tagID===X.TEMPLATE&&b7(e,t)}function Z7(e,t){e.openElements.tmplCount>0?(e.openElements.popUntilTagNamePopped(X.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode(),e.onEof(t)):m7(e,t)}function Mpe(e,t){t.tagID===X.HTML?j7(e,t):$7(e,t)}function Q7(e,t){if(t.tagID===X.HTML){if(e.fragmentContext||(e.insertionMode=$.AFTER_AFTER_BODY),e.options.sourceCodeLocationInfo&&e.openElements.tagIDs[0]===X.HTML){e._setEndLocation(e.openElements.items[0],t);let n=e.openElements.items[1];n&&!e.treeAdapter.getNodeSourceCodeLocation(n)?.endTag&&e._setEndLocation(n,t)}}else $7(e,t)}function $7(e,t){e.insertionMode=$.IN_BODY,w7(e,t)}function Npe(e,t){switch(t.tagID){case X.HTML:j7(e,t);break;case X.FRAMESET:e._insertElement(t,J.HTML);break;case X.FRAME:e._appendElement(t,J.HTML),t.ackSelfClosing=!0;break;case X.NOFRAMES:y7(e,t)}}function Ppe(e,t){t.tagID===X.FRAMESET&&!e.openElements.isRootHtmlElementCurrent()&&(e.openElements.pop(),!e.fragmentContext&&e.openElements.currentTagId!==X.FRAMESET&&(e.insertionMode=$.AFTER_FRAMESET))}function Fpe(e,t){switch(t.tagID){case X.HTML:j7(e,t);break;case X.NOFRAMES:y7(e,t)}}function Ipe(e,t){t.tagID===X.HTML&&(e.insertionMode=$.AFTER_AFTER_FRAMESET)}function Lpe(e,t){t.tagID===X.HTML?j7(e,t):e9(e,t)}function e9(e,t){e.insertionMode=$.IN_BODY,w7(e,t)}function Rpe(e,t){switch(t.tagID){case X.HTML:j7(e,t);break;case X.NOFRAMES:y7(e,t)}}function zpe(e,t){t.chars=`�`,e._insertCharacters(t)}function Bpe(e,t){e._insertCharacters(t),e.framesetOk=!1}function t9(e){for(;e.treeAdapter.getNamespaceURI(e.openElements.current)!==J.HTML&&e.openElements.currentTagId!==void 0&&!e._isIntegrationPoint(e.openElements.currentTagId,e.openElements.current);)e.openElements.pop()}function Vpe(e,t){if(rfe(t))t9(e),e._startTagOutsideForeignContent(t);else{let n=e._getAdjustedCurrentElement(),r=e.treeAdapter.getNamespaceURI(n);r===J.MATHML?o7(t):r===J.SVG&&(ife(t),s7(t)),c7(t),t.selfClosing?e._appendElement(t,r):e._insertElement(t,r),t.ackSelfClosing=!0}}function Hpe(e,t){if(t.tagID===X.P||t.tagID===X.BR){t9(e),e._endTagOutsideForeignContent(t);return}for(let n=e.openElements.stackTop;n>0;n--){let r=e.openElements.items[n];if(e.treeAdapter.getNamespaceURI(r)===J.HTML){e._endTagOutsideForeignContent(t);break}let i=e.treeAdapter.getTagName(r);if(i.toLowerCase()===t.tagName){t.tagName=i,e.openElements.shortenToLength(n);break}}}Y.AREA,Y.BASE,Y.BASEFONT,Y.BGSOUND,Y.BR,Y.COL,Y.EMBED,Y.FRAME,Y.HR,Y.IMG,Y.INPUT,Y.KEYGEN,Y.LINK,Y.META,Y.PARAM,Y.SOURCE,Y.TRACK,Y.WBR;var Upe=/<(\/?)(iframe|noembed|noframes|plaintext|script|style|textarea|title|xmp)(?=[\t\n\f\r />])/gi,Wpe=new Set([`mdxFlowExpression`,`mdxJsxFlowElement`,`mdxJsxTextElement`,`mdxTextExpression`,`mdxjsEsm`]),n9={sourceCodeLocationInfo:!0,scriptingEnabled:!1};function r9(e,t){let n=eme(e),r=T8(`type`,{handlers:{root:Gpe,element:Kpe,text:qpe,comment:a9,doctype:Jpe,raw:Xpe},unknown:Zpe}),i={parser:n?new d7(n9):d7.getFragmentParser(void 0,n9),handle(e){r(e,i)},stitches:!1,options:t||{}};r(e,i),o9(i,R4());let a=nde(n?i.parser.document:i.parser.getFragment(),{file:i.options.file});return i.stitches&&G6(a,`comment`,function(e,t,n){let r=e;if(r.value.stitch&&n&&t!==void 0){let e=n.children;return e[t]=r.value.stitch,t}}),a.type===`root`&&a.children.length===1&&a.children[0].type===e.type?a.children[0]:a}function i9(e,t){let n=-1;if(e)for(;++n4&&(t.parser.tokenizer.state=0);let n={type:O5.CHARACTER,chars:e.value,location:c9(e)};o9(t,R4(e)),t.parser.currentToken=n,t.parser._processToken(t.parser.currentToken)}function Jpe(e,t){let n={type:O5.DOCTYPE,name:`html`,forceQuirks:!1,publicId:``,systemId:``,location:c9(e)};o9(t,R4(e)),t.parser.currentToken=n,t.parser._processToken(t.parser.currentToken)}function Ype(e,t){t.stitches=!0;let n=tme(e);`children`in e&&`children`in n&&(n.children=r9({type:`root`,children:e.children},t.options).children),a9({type:`comment`,value:{stitch:n}},t)}function a9(e,t){let n=e.value,r={type:O5.COMMENT,data:n,location:c9(e)};o9(t,R4(e)),t.parser.currentToken=r,t.parser._processToken(t.parser.currentToken)}function Xpe(e,t){if(t.parser.tokenizer.preprocessor.html=``,t.parser.tokenizer.preprocessor.pos=-1,t.parser.tokenizer.preprocessor.lastGapPos=-2,t.parser.tokenizer.preprocessor.gapStack=[],t.parser.tokenizer.preprocessor.skipNextNewLine=!1,t.parser.tokenizer.preprocessor.lastChunkWritten=!1,t.parser.tokenizer.preprocessor.endOfChunkHit=!1,t.parser.tokenizer.preprocessor.isEol=!1,s9(t,R4(e)),t.parser.tokenizer.write(t.options.tagfilter?e.value.replace(Upe,`<$1$2`):e.value,!1),t.parser.tokenizer._runParsingLoop(),t.parser.tokenizer.state===72||t.parser.tokenizer.state===78){t.parser.tokenizer.preprocessor.lastChunkWritten=!0;let e=t.parser.tokenizer._consume();t.parser.tokenizer._callState(e)}}function Zpe(e,t){let n=e;if(t.options.passThrough&&t.options.passThrough.includes(n.type))Ype(n,t);else{let e=``;throw Wpe.has(n.type)&&(e=". It looks like you are using MDX nodes with `hast-util-raw` (or `rehype-raw`). If you use this because you are using remark or rehype plugins that inject `'html'` nodes, then please raise an issue with that plugin, as its a bad and slow idea. If you use this because you are using markdown syntax, then you have to configure this utility (or plugin) to pass through these nodes (see `passThrough` in docs), but you can also migrate to use the MDX syntax"),Error("Cannot compile `"+n.type+"` node"+e)}}function o9(e,t){s9(e,t);let n=e.parser.tokenizer.currentCharacterToken;n&&n.location&&(n.location.endLine=e.parser.tokenizer.preprocessor.line,n.location.endCol=e.parser.tokenizer.preprocessor.col+1,n.location.endOffset=e.parser.tokenizer.preprocessor.offset+1,e.parser.currentToken=n,e.parser._processToken(e.parser.currentToken)),e.parser.tokenizer.paused=!1,e.parser.tokenizer.inLoop=!1,e.parser.tokenizer.active=!1,e.parser.tokenizer.returnState=z5.DATA,e.parser.tokenizer.charRefCode=-1,e.parser.tokenizer.consumedAfterSnapshot=-1,e.parser.tokenizer.currentLocation=null,e.parser.tokenizer.currentCharacterToken=null,e.parser.tokenizer.currentToken=null,e.parser.tokenizer.currentAttr={name:``,value:``}}function s9(e,t){if(t&&t.offset!==void 0){let n={startLine:t.line,startCol:t.column,startOffset:t.offset,endLine:-1,endCol:-1,endOffset:-1};e.parser.tokenizer.preprocessor.lineStartPos=-t.column+1,e.parser.tokenizer.preprocessor.droppedBufferSize=t.offset,e.parser.tokenizer.preprocessor.line=t.line,e.parser.tokenizer.currentLocation=n}}function Qpe(e,t){let n=e.tagName.toLowerCase();if(t.parser.tokenizer.state===z5.PLAINTEXT)return;o9(t,R4(e));let r=t.parser.openElements.current,i=`namespaceURI`in r?r.namespaceURI:m5.html;i===m5.html&&n===`svg`&&(i=m5.svg);let a=sde({...e,children:[]},{space:i===m5.svg?`svg`:`html`}),o={type:O5.START_TAG,tagName:n,tagID:L5(n),selfClosing:!1,ackSelfClosing:!1,attrs:`attrs`in a?a.attrs:[],location:c9(e)};t.parser.currentToken=o,t.parser._processToken(t.parser.currentToken),t.parser.tokenizer.lastStartTagName=n}function $pe(e,t){let n=e.tagName.toLowerCase();if(!t.parser.tokenizer.inForeignNode&&hde.includes(n)||t.parser.tokenizer.state===z5.PLAINTEXT)return;o9(t,L4(e));let r={type:O5.END_TAG,tagName:n,tagID:L5(n),selfClosing:!1,ackSelfClosing:!1,attrs:[],location:c9(e)};t.parser.currentToken=r,t.parser._processToken(t.parser.currentToken),n===t.parser.tokenizer.lastStartTagName&&(t.parser.tokenizer.state===z5.RCDATA||t.parser.tokenizer.state===z5.RAWTEXT||t.parser.tokenizer.state===z5.SCRIPT_DATA)&&(t.parser.tokenizer.state=z5.DATA)}function eme(e){let t=e.type===`root`?e.children[0]:e;return!!(t&&(t.type===`doctype`||t.type===`element`&&t.tagName.toLowerCase()===`html`))}function c9(e){let t=R4(e)||{line:void 0,column:void 0,offset:void 0},n=L4(e)||{line:void 0,column:void 0,offset:void 0};return{startLine:t.line,startCol:t.column,startOffset:t.offset,endLine:n.line,endCol:n.column,endOffset:n.offset}}function tme(e){return`children`in e?B6({...e,children:[]}):B6(e)}function nme(e){return function(t,n){return r9(t,{...e,file:n})}}var l9=[`ariaDescribedBy`,`ariaLabel`,`ariaLabelledBy`],u9={ancestors:{tbody:[`table`],td:[`table`],th:[`table`],thead:[`table`],tfoot:[`table`],tr:[`table`]},attributes:{a:[...l9,`dataFootnoteBackref`,`dataFootnoteRef`,[`className`,`data-footnote-backref`],`href`],blockquote:[`cite`],code:[[`className`,/^language-./]],del:[`cite`],div:[`itemScope`,`itemType`],dl:[...l9],h2:[[`className`,`sr-only`]],img:[...l9,`longDesc`,`src`],input:[[`disabled`,!0],[`type`,`checkbox`]],ins:[`cite`],li:[[`className`,`task-list-item`]],ol:[...l9,[`className`,`contains-task-list`]],q:[`cite`],section:[`dataFootnotes`,[`className`,`footnotes`]],source:[`srcSet`],summary:[...l9],table:[...l9],ul:[...l9,[`className`,`contains-task-list`]],"*":`abbr.accept.acceptCharset.accessKey.action.align.alt.axis.border.cellPadding.cellSpacing.char.charOff.charSet.checked.clear.colSpan.color.cols.compact.coords.dateTime.dir.encType.frame.hSpace.headers.height.hrefLang.htmlFor.id.isMap.itemProp.label.lang.maxLength.media.method.multiple.name.noHref.noShade.noWrap.open.prompt.readOnly.rev.rowSpan.rows.rules.scope.selected.shape.size.span.start.summary.tabIndex.title.useMap.vAlign.value.width`.split(`.`)},clobber:[`ariaDescribedBy`,`ariaLabelledBy`,`id`,`name`],clobberPrefix:`user-content-`,protocols:{cite:[`http`,`https`],href:[`http`,`https`,`irc`,`ircs`,`mailto`,`xmpp`],longDesc:[`http`,`https`],src:[`http`,`https`]},required:{input:{disabled:!0,type:`checkbox`}},strip:[`script`],tagNames:`a.b.blockquote.br.code.dd.del.details.div.dl.dt.em.h1.h2.h3.h4.h5.h6.hr.i.img.input.ins.kbd.li.ol.p.picture.pre.q.rp.rt.ruby.s.samp.section.source.span.strike.strong.sub.summary.sup.table.tbody.td.tfoot.th.thead.tr.tt.ul.var`.split(`.`)},d9={}.hasOwnProperty;function rme(e,t){let n={type:`root`,children:[]},r=f9({schema:t?{...u9,...t}:u9,stack:[]},e);return r&&(Array.isArray(r)?r.length===1?n=r[0]:n.children=r:n=r),n}function f9(e,t){if(t&&typeof t==`object`){let n=t;switch(typeof n.type==`string`?n.type:``){case`comment`:return ime(e,n);case`doctype`:return ame(e,n);case`element`:return ome(e,n);case`root`:return sme(e,n);case`text`:return cme(e,n)}}}function ime(e,t){if(e.schema.allowComments){let e=typeof t.value==`string`?t.value:``,n=e.indexOf(`-->`),r={type:`comment`,value:n<0?e:e.slice(0,n)};return g9(r,t),r}}function ame(e,t){if(e.schema.allowDoctypes){let e={type:`doctype`};return g9(e,t),e}}function ome(e,t){let n=typeof t.tagName==`string`?t.tagName:``;e.stack.push(n);let r=p9(e,t.children),i=lme(e,t.properties);e.stack.pop();let a=!1;if(n&&n!==`*`&&(!e.schema.tagNames||e.schema.tagNames.includes(n))&&(a=!0,e.schema.ancestors&&d9.call(e.schema.ancestors,n))){let t=e.schema.ancestors[n],r=-1;for(a=!1;++r1){let e=!1,n=0;for(;++n-1&&a>c||o>-1&&a>o||s>-1&&a>s)return!0;let l=-1;for(;++l4&&t.slice(0,4).toLowerCase()===`data`)return n}function fme(e){return function(t){return rme(t,e)}}var v9=_.forwardRef(({className:e,type:t,...n},r)=>(0,I.jsx)(`input`,{type:t,className:L(`flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50`,e),ref:r,...n}));v9.displayName=`Input`;var pme=[{value:`Passed`,label:`Passed`,icon:Sm,variant:`success`},{value:`Failed`,label:`Failed`,icon:Em,variant:`destructive`},{value:`Error`,label:`Error`,icon:Em,variant:`destructive`},{value:`Investigate`,label:`Investigate`,icon:Im,variant:`warning`},{value:`Skipped`,label:`Skipped`,icon:Rm,variant:`secondary`},{value:`Planned`,label:`Planned`,icon:Rm,variant:`secondary`}],y9=[{label:`Critical`,value:`Critical`,icon:Om},{label:`High`,value:`High`,icon:bm},{label:`Medium`,value:`Medium`,icon:vm},{label:`Low`,value:`Low`,icon:gm},{label:`Unranked`,value:`Unranked`,icon:Am}];function b9({Item:e}){let t=pme.find(t=>t.value===e.TestStatus);return t?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(c1,{variant:t.variant,children:(0,I.jsx)(`span`,{children:t.label})})}):null}function x9({columns:e,data:t,pillar:n}){let r=n===`Infrastructure`?`Severity`:`Risk`,[i,a]=_.useState([{id:`TestRisk`,desc:!1},{id:`TestStatus`,desc:!1}]),[o,s]=_.useState([]),[c,l]=_.useState(``),[u,d]=_.useState([]),[f,p]=_.useState([]),[m,h]=_.useState([]),[g,v]=_.useState(!1),[y,b]=_.useState({TestImpact:!1,TestImplementationCost:!1,TestId:!1,TestSfiPillar:!1,TestMinimumLicense:!1,TestCategory:n===`Devices`}),[x,S]=_.useState({}),C=_.useMemo(()=>n?t.filter(e=>Array.isArray(e.TestPillar)?e.TestPillar.includes(n):e.TestPillar===n):t,[t,n]);_.useEffect(()=>{p([])},[n]);let w=_.useMemo(()=>{let e=C;return u.length>0&&(e=e.filter(e=>e.TestSfiPillar&&u.includes(e.TestSfiPillar))),f.length>0&&(e=e.filter(e=>e.TestRisk&&f.includes(e.TestRisk))),e=m.length>0?e.filter(e=>e.TestStatus&&m.includes(e.TestStatus)):e.filter(e=>e.TestStatus!==`Planned`&&(g||e.TestStatus!==`Skipped`)),e},[C,u,f,m,g]),T=_.useMemo(()=>{let e=C;return u.length>0&&(e=e.filter(e=>e.TestSfiPillar&&u.includes(e.TestSfiPillar))),f.length>0&&(e=e.filter(e=>e.TestRisk&&f.includes(e.TestRisk))),e.some(e=>e.TestStatus===`Skipped`)},[C,u,f]),E=_.useMemo(()=>{let e=C.map(e=>e.TestSfiPillar).filter(e=>e!=null);return Array.from(new Set(e)).sort()},[C]),D=_.useMemo(()=>{let e=C.map(e=>e.TestRisk).filter(e=>e!=null),t=Array.from(new Set(e)),n=[`Critical`,`High`,`Medium`,`Low`,`Unranked`];return t.sort((e,t)=>{let r=n.indexOf(e),i=n.indexOf(t);return r!==-1&&i!==-1?r-i:r===-1?i===-1?e.localeCompare(t):1:-1})},[C]),O=_.useMemo(()=>{let e=C.map(e=>e.TestStatus).filter(e=>e!=null),t=Array.from(new Set(e)),n=[`Passed`,`Failed`,`Planned`];return t.sort((e,t)=>{let r=n.indexOf(e),i=n.indexOf(t);return r!==-1&&i!==-1?r-i:r===-1?i===-1?e.localeCompare(t):1:-1})},[C]),k=e=>e.includes(`Monitor and detect`)?$s:e.includes(`Protect engineering`)?bc:e.includes(`Protect identities`)?ac:e.includes(`Protect tenants`)?Ws:e.includes(`Accelerate response`)?Sc:hc,A=P2({data:w,columns:e,meta:{riskLabel:r},enableRowSelection:!0,getCoreRowModel:w2(),onSortingChange:a,getSortedRowModel:k2(),onGlobalFilterChange:l,onColumnFiltersChange:s,getFilteredRowModel:O2(),onColumnVisibilityChange:b,onRowSelectionChange:e=>{S({}),S(e)},state:{sorting:i,columnFilters:o,globalFilter:c,columnVisibility:y,rowSelection:x}}),[j,M]=_.useState(!1),[N,P]=_.useState(null),F=N?.TestPillar??null,ee=Array.isArray(F)?F.includes(`Infrastructure`):F===`Infrastructure`,te=ee?[nme,fme]:[];return(0,I.jsxs)(`div`,{children:[(0,I.jsxs)(`div`,{className:`flex items-center py-4 justify-between`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-4`,children:[(0,I.jsx)(v9,{placeholder:`Search by name...`,value:c??``,onChange:e=>A.setGlobalFilter(String(e.target.value)),className:`max-w-sm`}),(0,I.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,I.jsxs)(`span`,{className:`text-xs font-medium text-muted-foreground mr-1`,children:[r,`:`]}),D.map(e=>{let n=f.includes(e),r=t.filter(t=>t.TestRisk===e).length;return(0,I.jsx)(Gc,{variant:n?`default`:`outline`,size:`sm`,onClick:()=>{p(n?t=>t.filter(t=>t!==e):t=>[...t,e])},className:`text-xs h-6 px-3 py-1 rounded-full ${n?`bg-purple-600 hover:bg-purple-700 text-white`:`hover:bg-purple-50 hover:text-purple-700 hover:border-purple-300 dark:hover:bg-purple-950 dark:hover:text-purple-300`}`,title:`${e} (${r} tests)`,children:e},e)})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,I.jsx)(`span`,{className:`text-xs font-medium text-muted-foreground mr-1`,children:`Status:`}),O.map(e=>{let n=m.includes(e),r=t.filter(t=>t.TestStatus===e).length;return(0,I.jsx)(Gc,{variant:n?`default`:`outline`,size:`sm`,onClick:()=>{h(n?t=>t.filter(t=>t!==e):t=>[...t,e])},className:`text-xs h-6 px-3 py-1 rounded-full ${((e,t)=>e===`Passed`?t?`bg-green-600 hover:bg-green-700 text-white`:`hover:bg-green-50 hover:text-green-700 hover:border-green-300 dark:hover:bg-green-950 dark:hover:text-green-300`:e===`Failed`?t?`bg-red-600 hover:bg-red-700 text-white`:`hover:bg-red-50 hover:text-red-700 hover:border-red-300 dark:hover:bg-red-950 dark:hover:text-red-300`:t?`bg-gray-600 hover:bg-gray-700 text-white`:`hover:bg-gray-50 hover:text-gray-700 hover:border-gray-300 dark:hover:bg-gray-950 dark:hover:text-gray-300`)(e,n)}`,title:`${e} (${r} tests)`,children:e},e)})]})]}),(0,I.jsx)(`div`,{className:`flex items-center gap-4`,children:(0,I.jsxs)(sm,{children:[(0,I.jsx)(cm,{asChild:!0,children:(0,I.jsx)(Gc,{variant:`outline`,size:`sm`,children:(0,I.jsx)(Qs,{className:`h-4 w-4`})})}),(0,I.jsx)(lm,{align:`end`,children:A.getAllColumns().filter(e=>e.getCanHide()).filter(e=>n!==`Infrastructure`||![`TestImpact`,`TestImplementationCost`,`TestMinimumLicense`].includes(e.id)).map(e=>{let t=e.id===`TestRisk`?r:e.columnDef.meta?.label??e.id;return(0,I.jsx)(dm,{className:`capitalize`,checked:e.getIsVisible(),onCheckedChange:t=>e.toggleVisibility(!!t),children:t},e.id)})})]})})]}),(0,I.jsxs)(`div`,{className:`mb-4`,children:[(0,I.jsxs)(`div`,{className:`flex items-center justify-between mb-3`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(`span`,{className:`text-sm font-medium`,children:`Filter by SFI Pillar:`}),u.length>0&&(0,I.jsxs)(Gc,{variant:`ghost`,size:`sm`,onClick:()=>d([]),className:`h-6 px-2 text-xs text-muted-foreground hover:text-foreground`,children:[`Clear All (`,u.length,`)`]})]}),(0,I.jsxs)(`div`,{className:`flex flex-col items-end gap-1`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-4`,children:[(u.length>0||f.length>0||m.length>0||g)&&(0,I.jsx)(Gc,{variant:`ghost`,size:`sm`,onClick:()=>{d([]),p([]),h([]),v(!1)},className:`h-6 px-2 text-xs text-muted-foreground hover:text-foreground`,children:`Clear All Filters`}),(0,I.jsxs)(`div`,{className:`text-xs text-muted-foreground`,children:[`Showing `,w.length,` of `,C.length,` tests`]})]}),T&&(0,I.jsxs)(`label`,{className:`flex items-center gap-2 cursor-pointer select-none w-fit`,children:[(0,I.jsx)(`input`,{type:`checkbox`,checked:g,onChange:e=>v(e.target.checked),className:`h-3.5 w-3.5 rounded border-gray-300 accent-gray-600 cursor-pointer`}),(0,I.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:`Show skipped tests`})]})]})]}),(0,I.jsx)(`div`,{className:`flex flex-wrap gap-2`,children:E.map(e=>{let n=u.includes(e),r=t.filter(t=>t.TestSfiPillar===e).length,i=k(e);return(0,I.jsxs)(Gc,{variant:n?`default`:`outline`,size:`sm`,onClick:()=>{d(n?t=>t.filter(t=>t!==e):t=>[...t,e])},className:`text-xs max-w-96 h-auto py-1 px-4 rounded-full ${n?`bg-blue-600 hover:bg-blue-700 text-white`:`hover:bg-blue-50 hover:text-blue-700 hover:border-blue-300 dark:hover:bg-blue-950 dark:hover:text-blue-300`}`,title:`${e} (${r} tests)`,children:[(0,I.jsx)(i,{className:`mr-2 h-3 w-3 flex-shrink-0`}),(0,I.jsx)(`span`,{className:`whitespace-normal text-left leading-tight`,children:e})]},e)})})]}),(0,I.jsx)(`div`,{className:`rounded-md border`,children:(0,I.jsxs)(F2,{children:[(0,I.jsx)(I2,{children:A.getHeaderGroups().map(e=>(0,I.jsx)(z2,{children:e.headers.map(e=>(0,I.jsx)(B2,{children:e.isPlaceholder?null:A2(e.column.columnDef.header,e.getContext())},e.id))},e.id))}),(0,I.jsx)(L2,{children:A.getRowModel().rows?.length?A.getRowModel().rows.map(e=>(0,I.jsx)(z2,{className:`cursor-pointer`,"data-state":e.getIsSelected()&&`selected`,onClick:()=>{P(e.original),M(!0)},children:e.getVisibleCells().map(e=>(0,I.jsx)(W,{children:A2(e.column.columnDef.cell,e.getContext())},e.id))},e.id)):(0,I.jsx)(z2,{children:(0,I.jsx)(W,{colSpan:e.length,className:`h-24 text-center`,children:`No results.`})})})]})}),(0,I.jsx)(Cc,{open:j,onOpenChange:M,children:(0,I.jsxs)(Dc,{side:`right`,className:`md:min-w-[700px] lg:min-w-[900px] overflow-y-auto`,allowMaximize:!0,children:[(0,I.jsx)(Oc,{children:(0,I.jsx)(kc,{className:`text-2xl text-left`,children:N?.TestTitle})}),(0,I.jsx)(`div`,{className:`grid pt-10 gap-6`,children:(0,I.jsx)(_W,{children:(0,I.jsx)(vW,{children:(0,I.jsxs)(`div`,{className:`mt-2 text-sm ${ee?`flex flex-col gap-y-2`:`grid grid-cols-3 gap-y-2`}`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(gc,{className:`h-4 w-4 text-foreground`}),(0,I.jsx)(`span`,{className:`font-semibold`,children:ee?`Severity:`:`Risk:`}),(0,I.jsx)(`span`,{children:N?.TestRisk??`N/A`})]}),!ee&&(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(yc,{className:`h-4 w-4 text-foreground`}),(0,I.jsx)(`span`,{className:`font-semibold`,children:`User Impact:`}),(0,I.jsx)(`span`,{children:N?.TestImpact??`N/A`})]}),!ee&&(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(pc,{className:`h-4 w-4 text-foreground`}),(0,I.jsx)(`span`,{className:`font-semibold`,children:`Implementation Effort:`}),(0,I.jsx)(`span`,{children:N?.TestImplementationCost??`N/A`})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(tc,{className:`h-4 w-4 text-foreground`}),(0,I.jsx)(`span`,{className:`font-semibold`,children:`Test ID:`}),(0,I.jsx)(`span`,{children:N?.TestId??`N/A`})]}),!ee&&(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(Bs,{className:`h-4 w-4 text-foreground`}),(0,I.jsx)(`span`,{className:`font-semibold`,children:`License:`}),(0,I.jsx)(`div`,{className:`flex items-center gap-1 flex-wrap`,children:N?.TestMinimumLicense&&Array.isArray(N.TestMinimumLicense)?N.TestMinimumLicense.map((e,t)=>(0,I.jsx)(`span`,{className:`px-2 py-0.5 text-xs font-medium bg-purple-100 text-purple-800 dark:bg-purple-900 dark:text-purple-200 rounded-md`,children:e},t)):(0,I.jsx)(`span`,{children:N?.TestMinimumLicense??`N/A`})})]})]})})})}),(0,I.jsxs)(`div`,{className:`grid pt-10 gap-6`,children:[(0,I.jsxs)(_W,{children:[(0,I.jsx)(vW,{children:(0,I.jsx)(yW,{children:(0,I.jsxs)(`div`,{className:`flex`,children:[(0,I.jsx)(`span`,{className:`pr-3`,children:` Test result → `}),(0,I.jsx)(b9,{Item:N})]})})}),(0,I.jsx)(xW,{children:(0,I.jsx)(m8,{className:`prose max-w-fit dark:prose-invert`,remarkPlugins:[c5],rehypePlugins:te,children:N?.TestResult})})]}),(0,I.jsxs)(_W,{children:[(0,I.jsx)(vW,{children:(0,I.jsx)(yW,{children:`What was checked`})}),(0,I.jsx)(xW,{children:(0,I.jsx)(m8,{className:`prose max-w-fit dark:prose-invert`,remarkPlugins:[c5],rehypePlugins:te,children:N?.TestDescription})})]})]})]})})]})}var S9={Critical:0,High:1,Medium:2,Low:3,Unranked:4},C9={Failed:0,Passed:1,Skipped:2,Planned:3},w9=[{accessorKey:`TestId`,header:({column:e})=>(0,I.jsxs)(Gc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`ID`,(0,I.jsx)(zs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=e.getValue(`TestId`),n=t&&t.length>5?t.slice(-5):t;return(0,I.jsx)(`span`,{title:t,children:n})},meta:{label:`ID`}},{accessorKey:`TestTitle`,meta:{label:`Name`},header:({column:e})=>(0,I.jsxs)(Gc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`Name`,(0,I.jsx)(zs,{className:`ml-2 h-4 w-4`})]})},{accessorKey:`TestCategory`,meta:{label:`Category`},header:({column:e})=>(0,I.jsxs)(Gc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`Category`,(0,I.jsx)(zs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=e.getValue(`TestCategory`);return t?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{children:t})}):(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`N/A`})})}},{accessorKey:`TestSfiPillar`,meta:{label:`SFI Pillar`},header:({column:e})=>(0,I.jsxs)(Gc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`SFI Pillar`,(0,I.jsx)(zs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=e.getValue(`TestSfiPillar`);return t?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{className:`px-2 py-1 text-xs font-medium bg-blue-100 text-blue-800 rounded-md`,children:t})}):(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`N/A`})})}},{accessorKey:`TestMinimumLicense`,meta:{label:`Minimum License`},header:({column:e})=>(0,I.jsxs)(Gc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`Min. License`,(0,I.jsx)(zs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=e.getValue(`TestMinimumLicense`);if(!t)return(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`N/A`})});let n=Array.isArray(t)?t:[t];return n.length===0?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{className:`text-muted-foreground`,children:`N/A`})}):(0,I.jsx)(`div`,{className:`flex items-center gap-1 flex-wrap`,children:n.map((e,t)=>(0,I.jsx)(`span`,{className:`px-2 py-1 text-xs font-medium bg-purple-100 text-purple-800 rounded-md`,children:e},t))})}},{accessorKey:`TestImpact`,meta:{label:`User Impact`},header:({column:e})=>(0,I.jsxs)(Gc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`User Impact`,(0,I.jsx)(zs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=y9.find(t=>t.value===e.getValue(`TestImpact`));return t?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{children:t.label})}):null}},{accessorKey:`TestImplementationCost`,meta:{label:`Implementation Effort`},header:({column:e})=>(0,I.jsxs)(Gc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`Imp. Effort`,(0,I.jsx)(zs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>{let t=y9.find(t=>t.value===e.getValue(`TestImplementationCost`));return t?(0,I.jsx)(`div`,{className:`flex items-center`,children:(0,I.jsx)(`span`,{children:t.label})}):null}},{accessorKey:`TestRisk`,meta:{label:`Risk`},sortingFn:(e,t,n)=>(S9[e.getValue(n)]??1/0)-(S9[t.getValue(n)]??1/0),header:({column:e,table:t})=>{let n=t.options.meta?.riskLabel??`Risk`;return(0,I.jsxs)(Gc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[n,(0,I.jsx)(zs,{className:`ml-2 h-4 w-4`})]})},cell:({row:e})=>{let t=y9.find(t=>t.value===e.getValue(`TestRisk`));return t?(0,I.jsxs)(`div`,{className:`flex items-center`,children:[t.icon&&(0,I.jsx)(t.icon,{className:`mr-2 h-4 w-4 text-muted-foreground`}),(0,I.jsx)(`span`,{children:t.label})]}):null}},{accessorKey:`TestStatus`,meta:{label:`Status`},sortingFn:(e,t,n)=>(C9[e.getValue(n)]??3)-(C9[t.getValue(n)]??3),header:({column:e})=>(0,I.jsxs)(Gc,{variant:`ghost`,onClick:()=>e.toggleSorting(e.getIsSorted()===`asc`),children:[`Status`,(0,I.jsx)(zs,{className:`ml-2 h-4 w-4`})]}),cell:({row:e})=>(0,I.jsx)(b9,{Item:e.original})}],mme=({data:e})=>{let t=(0,_.useContext)(cr);return(0,I.jsx)(a1,{isDark:!!(t.theme===`dark`||t.theme===`system`&&window.matchMedia(`(prefers-color-scheme: dark)`).matches),data:{nodes:[{id:`User sign in`,nodeColor:`hsl(28, 100%, 53%)`},{id:`No CA applied`,nodeColor:`hsl(0, 100%, 50%)`},{id:`CA applied`,nodeColor:`hsl(12, 76%, 61%)`},{id:`No MFA`,nodeColor:`hsl(0, 69%, 50%)`},{id:`MFA`,nodeColor:`hsl(99, 70%, 50%)`}],links:e}})},hme=({data:e})=>{let t=(0,_.useContext)(cr);return(0,I.jsx)(a1,{isDark:!!(t.theme===`dark`||t.theme===`system`&&window.matchMedia(`(prefers-color-scheme: dark)`).matches),data:{nodes:[{id:`User sign in`,nodeColor:`hsl(28, 100%, 53%)`},{id:`Unmanaged`,nodeColor:`hsl(0, 100%, 50%)`},{id:`Managed`,nodeColor:`hsl(12, 76%, 61%)`},{id:`Non-compliant`,nodeColor:`hsl(0, 100%, 50%)`},{id:`Compliant`,nodeColor:`hsl(99, 70%, 50%)`}],links:e}})},T9=e=>(Number(e)||0).toLocaleString();function gme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(o0,{children:(0,I.jsx)(s0,{children:`Identity`})}),(0,I.jsx)(_W,{children:(0,I.jsx)(xW,{className:`px-4 pb-3 pt-1`,children:(0,I.jsx)(Cg,{type:`single`,collapsible:!0,defaultValue:`identity-insights`,className:`w-full`,children:(0,I.jsxs)(wg,{value:`identity-insights`,className:`border-b-0`,children:[(0,I.jsx)(Tg,{className:`py-3 hover:no-underline`,children:(0,I.jsxs)(`div`,{className:`flex items-center gap-2 text-left`,children:[(0,I.jsx)(ec,{className:`size-5`}),(0,I.jsx)(`span`,{className:`text-base font-semibold`,children:`Identity insights`})]})}),(0,I.jsx)(Eg,{className:`pb-2`,children:(0,I.jsxs)(`div`,{className:`grid grid-cols-1 gap-3 md:grid-cols-2`,children:[(0,I.jsxs)(_W,{className:`flex h-full flex-col`,children:[(0,I.jsx)(vW,{className:`flex flex-col space-y-1.5 p-6 px-4 pt-2 pb-3`,children:(0,I.jsxs)(yW,{className:`text-base font-semibold flex items-center gap-2`,children:[(0,I.jsx)(vc,{className:`size-5`}),`Users`]})}),(0,I.jsx)(xW,{className:`p-6 pt-0 flex flex-1 items-center px-4 pb-4`,children:(0,I.jsxs)(`div`,{className:`grid w-full gap-4 grid-cols-2`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,I.jsx)(`span`,{className:`relative flex shrink-0 overflow-hidden size-[1.609rem] rounded-sm`,children:(0,I.jsx)(`span`,{className:`flex h-full w-full items-center justify-center shrink-0 rounded-sm bg-transparent`,style:{color:`var(--viz-1)`},children:(0,I.jsx)(vc,{className:`size-[1.515rem]`})})}),(0,I.jsxs)(`div`,{className:`flex flex-col gap-0.5`,children:[(0,I.jsx)(`span`,{className:`text-muted-foreground text-sm font-medium`,children:`Total users`}),(0,I.jsx)(`span`,{className:`text-lg font-medium tabular-nums`,children:T9(z.TenantInfo?.TenantOverview?.UserCount)})]})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,I.jsx)(`span`,{className:`relative flex shrink-0 overflow-hidden size-[1.609rem] rounded-sm`,children:(0,I.jsx)(`span`,{className:`flex h-full w-full items-center justify-center shrink-0 rounded-sm bg-transparent`,style:{color:`var(--viz-1)`},children:(0,I.jsx)(oc,{className:`size-[1.515rem]`})})}),(0,I.jsxs)(`div`,{className:`flex flex-col gap-0.5`,children:[(0,I.jsx)(`span`,{className:`text-muted-foreground text-sm font-medium`,children:`Guest users`}),(0,I.jsx)(`span`,{className:`text-lg font-medium tabular-nums`,children:T9(z.TenantInfo?.TenantOverview?.GuestCount)})]})]})]})})]}),(0,I.jsxs)(_W,{className:`flex h-full flex-col`,children:[(0,I.jsx)(vW,{className:`flex flex-col space-y-1.5 p-6 px-4 pt-2 pb-3`,children:(0,I.jsxs)(yW,{className:`text-base font-semibold flex items-center gap-2`,children:[(0,I.jsx)(yc,{className:`size-5`}),`Groups & apps`]})}),(0,I.jsx)(xW,{className:`p-6 pt-0 flex flex-1 items-center px-4 pb-4`,children:(0,I.jsxs)(`div`,{className:`grid w-full gap-4 grid-cols-2`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,I.jsx)(`span`,{className:`relative flex shrink-0 overflow-hidden size-[1.609rem] rounded-sm`,children:(0,I.jsx)(`span`,{className:`flex h-full w-full items-center justify-center shrink-0 rounded-sm bg-transparent`,style:{color:`var(--viz-3)`},children:(0,I.jsx)(yc,{className:`size-[1.515rem]`})})}),(0,I.jsxs)(`div`,{className:`flex flex-col gap-0.5`,children:[(0,I.jsxs)(`span`,{className:`text-muted-foreground text-sm font-medium flex items-center gap-1`,children:[`Groups`,(0,I.jsx)(nc,{className:`size-3.5 shrink-0 opacity-70`})]}),(0,I.jsx)(`span`,{className:`text-lg font-medium tabular-nums`,children:T9(z.TenantInfo?.TenantOverview?.GroupCount)})]})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,I.jsx)(`span`,{className:`relative flex shrink-0 overflow-hidden size-[1.609rem] rounded-sm`,children:(0,I.jsx)(`span`,{className:`flex h-full w-full items-center justify-center shrink-0 rounded-sm bg-transparent`,style:{color:`var(--viz-3)`},children:(0,I.jsx)(rc,{className:`size-[1.515rem]`})})}),(0,I.jsxs)(`div`,{className:`flex flex-col gap-0.5`,children:[(0,I.jsxs)(`span`,{className:`text-muted-foreground text-sm font-medium flex items-center gap-1`,children:[`Apps`,(0,I.jsx)(nc,{className:`size-3.5 shrink-0 opacity-70`})]}),(0,I.jsx)(`span`,{className:`text-lg font-medium tabular-nums`,children:T9(z.TenantInfo?.TenantOverview?.ApplicationCount)})]})]})]})})]}),(0,I.jsxs)(_W,{className:`w-full`,"x-chunk":`charts-01-chunk-0`,children:[(0,I.jsxs)(vW,{className:`space-y-2 pt-3 pb-3`,children:[(0,I.jsxs)(`div`,{className:`flex flex-row items-center gap-2`,children:[(0,I.jsx)(_c,{className:`size-8`}),(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`Privileged users auth methods`})]}),(0,I.jsx)(bW,{children:z.TenantInfo?.OverviewAuthMethodsPrivilegedUsers?.description||`No description available`})]}),(0,I.jsx)(xW,{className:`pt-1 h-[360px]`,children:(0,I.jsx)(EW,{config:{steps:{label:`Steps`,color:`hsl(var(--chart-1))`}},className:`h-[360px] w-full`,children:z.TenantInfo?.OverviewAuthMethodsPrivilegedUsers?.nodes?(0,I.jsx)(o1,{data:z.TenantInfo.OverviewAuthMethodsPrivilegedUsers.nodes}):(0,I.jsx)(`div`,{className:`flex items-center justify-center h-32 text-muted-foreground`,children:`No data available`})})})]}),(0,I.jsxs)(_W,{className:`w-full`,"x-chunk":`charts-01-chunk-0`,children:[(0,I.jsxs)(vW,{className:`space-y-2 pt-3 pb-3`,children:[(0,I.jsxs)(`div`,{className:`flex flex-row items-center gap-2`,children:[(0,I.jsx)(yc,{className:`size-8`}),(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`All users auth methods`})]}),(0,I.jsx)(bW,{children:z.TenantInfo?.OverviewAuthMethodsAllUsers?.description||`No description available`})]}),(0,I.jsx)(xW,{className:`pt-1 h-[360px]`,children:(0,I.jsx)(EW,{config:{steps:{label:`Steps`,color:`hsl(var(--chart-1))`}},className:`h-[360px] w-full`,children:z.TenantInfo?.OverviewAuthMethodsAllUsers?.nodes?(0,I.jsx)(o1,{data:z.TenantInfo.OverviewAuthMethodsAllUsers.nodes}):(0,I.jsx)(`div`,{className:`flex items-center justify-center h-32 text-muted-foreground`,children:`No data available`})})})]}),(0,I.jsxs)(_W,{className:`w-full`,"x-chunk":`charts-01-chunk-0`,children:[(0,I.jsxs)(vW,{className:`space-y-2 pt-3 pb-3`,children:[(0,I.jsxs)(`div`,{className:`flex flex-row items-center gap-2`,children:[(0,I.jsx)(mc,{className:`size-8`}),(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`User authentication`})]}),(0,I.jsx)(bW,{children:z.TenantInfo?.OverviewCaMfaAllUsers?.description||`No description available`})]}),(0,I.jsx)(xW,{className:`pt-1 h-[360px]`,children:(0,I.jsx)(EW,{config:{steps:{label:`Steps`,color:`hsl(var(--chart-1))`}},className:`h-[360px] w-full`,children:z.TenantInfo?.OverviewCaMfaAllUsers?.nodes?(0,I.jsx)(mme,{data:z.TenantInfo.OverviewCaMfaAllUsers.nodes}):(0,I.jsx)(`div`,{className:`flex items-center justify-center h-32 text-muted-foreground`,children:`No data available`})})})]}),(0,I.jsxs)(_W,{className:`w-full`,"x-chunk":`charts-01-chunk-0`,children:[(0,I.jsxs)(vW,{className:`space-y-2 pt-3 pb-3`,children:[(0,I.jsxs)(`div`,{className:`flex flex-row items-center gap-2`,children:[(0,I.jsx)(rc,{className:`size-8`}),(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`Device sign-ins`})]}),(0,I.jsx)(bW,{children:z.TenantInfo?.OverviewCaDevicesAllUsers?.description||`No description available`})]}),(0,I.jsx)(xW,{className:`pt-1 h-[360px]`,children:(0,I.jsx)(EW,{config:{steps:{label:`Steps`,color:`hsl(var(--chart-1))`}},className:`h-[360px] w-full`,children:z.TenantInfo?.OverviewCaDevicesAllUsers?.nodes?(0,I.jsx)(hme,{data:z.TenantInfo.OverviewCaDevicesAllUsers.nodes}):(0,I.jsx)(`div`,{className:`flex items-center justify-center h-32 text-muted-foreground`,children:`No data available`})})})]})]})})]})})})}),(0,I.jsxs)(_W,{className:`mt-4`,children:[(0,I.jsxs)(vW,{children:[(0,I.jsx)(yW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsxs)(bW,{children:[`The results presented below are based on the security principles detailed in the`,` `,(0,I.jsx)(`a`,{href:`https://learn.microsoft.com/en-us/entra/fundamentals/configure-security`,target:`_blank`,rel:`noopener noreferrer`,className:`text-primary font-medium underline underline-offset-4 hover:underline`,children:`Configuring Microsoft Entra for increased security`}),` `,`guide.`]})]}),(0,I.jsx)(xW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(x9,{columns:w9,data:z.Tests,pillar:`Identity`})})]})]})}var E9=`Tabs`,[_me,vme]=pi(E9,[Ld]),D9=Ld(),[yme,O9]=_me(E9),k9=_.forwardRef((e,t)=>{let{__scopeTabs:n,value:r,onValueChange:i,defaultValue:a,orientation:o=`horizontal`,dir:s,activationMode:c=`automatic`,...l}=e,u=el(s),[d,f]=bi({prop:r,onChange:i,defaultProp:a??``,caller:E9});return(0,I.jsx)(yme,{scope:n,baseId:vi(),value:d,onValueChange:f,orientation:o,dir:u,activationMode:c,children:(0,I.jsx)(ki.div,{dir:u,"data-orientation":o,...l,ref:t})})});k9.displayName=E9;var A9=`TabsList`,j9=_.forwardRef((e,t)=>{let{__scopeTabs:n,loop:r=!0,...i}=e,a=O9(A9,n),o=D9(n);return(0,I.jsx)(Yd,{asChild:!0,...o,orientation:a.orientation,dir:a.dir,loop:r,children:(0,I.jsx)(ki.div,{role:`tablist`,"aria-orientation":a.orientation,...i,ref:t})})});j9.displayName=A9;var M9=`TabsTrigger`,N9=_.forwardRef((e,t)=>{let{__scopeTabs:n,value:r,disabled:i=!1,...a}=e,o=O9(M9,n),s=D9(n),c=I9(o.baseId,r),l=L9(o.baseId,r),u=r===o.value;return(0,I.jsx)(Xd,{asChild:!0,...s,focusable:!i,active:u,children:(0,I.jsx)(ki.button,{type:`button`,role:`tab`,"aria-selected":u,"aria-controls":l,"data-state":u?`active`:`inactive`,"data-disabled":i?``:void 0,disabled:i,id:c,...a,ref:t,onMouseDown:ci(e.onMouseDown,e=>{!i&&e.button===0&&e.ctrlKey===!1?o.onValueChange(r):e.preventDefault()}),onKeyDown:ci(e.onKeyDown,e=>{[` `,`Enter`].includes(e.key)&&o.onValueChange(r)}),onFocus:ci(e.onFocus,()=>{let e=o.activationMode!==`manual`;!u&&!i&&e&&o.onValueChange(r)})})})});N9.displayName=M9;var P9=`TabsContent`,F9=_.forwardRef((e,t)=>{let{__scopeTabs:n,value:r,forceMount:i,children:a,...o}=e,s=O9(P9,n),c=I9(s.baseId,r),l=L9(s.baseId,r),u=r===s.value,d=_.useRef(u);return _.useEffect(()=>{let e=requestAnimationFrame(()=>d.current=!1);return()=>cancelAnimationFrame(e)},[]),(0,I.jsx)(da,{present:i||u,children:({present:n})=>(0,I.jsx)(ki.div,{"data-state":u?`active`:`inactive`,"data-orientation":s.orientation,role:`tabpanel`,"aria-labelledby":c,hidden:!n,id:l,tabIndex:0,...o,ref:t,style:{...e.style,animationDuration:d.current?`0s`:void 0},children:n&&a})})});F9.displayName=P9;function I9(e,t){return`${e}-trigger-${t}`}function L9(e,t){return`${e}-content-${t}`}var bme=k9,R9=j9,z9=N9,B9=F9,xme=bme,V9=_.forwardRef(({className:e,...t},n)=>(0,I.jsx)(R9,{ref:n,className:L(`inline-flex h-10 items-center justify-center rounded-md bg-muted p-1 text-muted-foreground`,e),...t}));V9.displayName=R9.displayName;var H9=_.forwardRef(({className:e,...t},n)=>(0,I.jsx)(z9,{ref:n,className:L(`inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow-sm`,e),...t}));H9.displayName=z9.displayName;var U9=_.forwardRef(({className:e,...t},n)=>(0,I.jsx)(B9,{ref:n,className:L(`mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2`,e),...t}));U9.displayName=B9.displayName;function Sme(){let e=z.TenantInfo?.ConfigWindowsEnrollment,t=z.TenantInfo?.ConfigDeviceEnrollmentRestriction,n=z.TenantInfo?.ConfigDeviceCompliancePolicies,r=z.TenantInfo?.ConfigDeviceAppProtectionPolicies;return(0,I.jsxs)(`div`,{className:`p-4`,children:[(0,I.jsx)(`h2`,{className:`text-lg font-semibold mb-4`,children:`Windows automatic enrollment`}),(0,I.jsx)(`p`,{className:`text-sm text-gray-600 mb-4`,children:`Configure Windows devices to enroll when they join or register with Azure Active Directory. We recommend setting this to all instead of selected groups and using enrollment restrictions to configure the intake of users.`}),e&&e.length>0?(0,I.jsxs)(F2,{children:[(0,I.jsx)(I2,{children:(0,I.jsxs)(z2,{children:[(0,I.jsx)(B2,{children:`Type`}),(0,I.jsx)(B2,{children:`Policy Name`}),(0,I.jsx)(B2,{children:`Applies To`}),(0,I.jsx)(B2,{children:`Groups`})]})}),(0,I.jsx)(L2,{children:e.map((e,t)=>(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{children:e.Type}),(0,I.jsx)(W,{children:e.PolicyName}),(0,I.jsx)(W,{children:e.AppliesTo}),(0,I.jsx)(W,{children:e.Groups})]},t))})]}):(0,I.jsx)(`p`,{children:`No Windows enrollment configuration found.`}),(0,I.jsx)(`h2`,{className:`text-lg font-semibold mb-4 mt-8`,children:`Enrollment device platform restrictions`}),(0,I.jsx)(`p`,{className:`text-sm text-gray-600 mb-4`,children:`Device enrollment restrictions let you restrict devices from enrolling in Intune based on certain device attributes. Device platform restrictions restrict devices based on device platform, version, manufacturer, or ownership type.`}),t&&t.length>0?(0,I.jsxs)(F2,{children:[(0,I.jsx)(I2,{children:(0,I.jsxs)(z2,{children:[(0,I.jsx)(B2,{children:`Platform`}),(0,I.jsx)(B2,{children:`Priority`}),(0,I.jsx)(B2,{children:`Name`}),(0,I.jsx)(B2,{children:`MDM`}),(0,I.jsx)(B2,{children:`Min Ver`}),(0,I.jsx)(B2,{children:`Max Ver`}),(0,I.jsx)(B2,{children:`Personally owned`}),(0,I.jsx)(B2,{children:`Blocked manuf.`}),(0,I.jsx)(B2,{children:`Scope`}),(0,I.jsx)(B2,{children:`Assigned to`})]})}),(0,I.jsx)(L2,{children:t.map((e,t)=>(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{children:e.Platform}),(0,I.jsx)(W,{children:e.Priority}),(0,I.jsx)(W,{children:e.Name}),(0,I.jsx)(W,{children:e.MDM}),(0,I.jsx)(W,{children:e.MinVer}),(0,I.jsx)(W,{children:e.MaxVer}),(0,I.jsx)(W,{children:e.PersonallyOwned}),(0,I.jsx)(W,{children:e.BlockedManufacturers}),(0,I.jsx)(W,{children:e.Scope}),(0,I.jsx)(W,{children:e.AssignedTo})]},t))})]}):(0,I.jsx)(`p`,{children:`No device enrollment restrictions found.`}),(0,I.jsx)(`h2`,{className:`text-lg font-semibold mb-4 mt-8`,children:`Compliance policies`}),(0,I.jsx)(`p`,{className:`text-sm text-gray-600 mb-4`,children:`Device compliance policies define the rules and settings that devices must meet to be considered compliant. These policies help ensure that devices accessing organizational resources meet minimum security requirements.`}),n&&n.length>0?(0,I.jsx)(`div`,{className:`overflow-x-auto`,children:(0,I.jsxs)(F2,{children:[(0,I.jsx)(I2,{children:(0,I.jsxs)(z2,{children:[(0,I.jsx)(B2,{className:`font-semibold`,children:`Setting`}),n.map((e,t)=>(0,I.jsx)(B2,{className:`min-w-[150px]`,children:e.PolicyName},t))]})}),(0,I.jsxs)(L2,{children:[(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Platform`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.Platform},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Defender ATP`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.DefenderForEndPoint},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Min OS Version`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.MinOsVersion},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Max OS Version`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.MaxOsVersion},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Require Password`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.RequirePswd},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Min Password Length`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.MinPswdLength},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Password Type`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.PasswordType},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Password Expiry Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.PswdExpiryDays},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Previous Passwords Blocked`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.CountOfPreviousPswdToBlock},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Max Inactivity Min`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.MaxInactivityMin},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Require Encryption`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.RequireEncryption},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Rooted/Jailbroken`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.RootedJailbrokenDevices},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Max Threat Level`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.MaxDeviceThreatLevel},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Require Firewall`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.RequireFirewall},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Push Notification Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.ActionForNoncomplianceDaysPushNotification},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Send Email Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.ActionForNoncomplianceDaysSendEmail},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Remote Lock Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.ActionForNoncomplianceDaysRemoteLock},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Block Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.ActionForNoncomplianceDaysBlock},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Retire Days`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.ActionForNoncomplianceDaysRetire},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Scope`}),n.map((e,t)=>(0,I.jsx)(W,{children:e.Scope},t))]})]})]})}):(0,I.jsx)(`p`,{children:`No device compliance policies found.`}),(0,I.jsx)(`h2`,{className:`text-lg font-semibold mb-4 mt-8`,children:`App protection policies`}),(0,I.jsx)(`p`,{className:`text-sm text-gray-600 mb-4`,children:`App protection policies (APP) are rules that ensure an organization's data remains safe or contained in a managed app. A policy can be a rule that is enforced when the user attempts to access or move "corporate" data, or a set of actions that are prohibited or monitored when the user is inside the app. A managed app is an app that has app protection policies applied to it, and can be managed by Intune.`}),r&&r.length>0?(0,I.jsx)(`div`,{className:`overflow-x-auto`,children:(0,I.jsxs)(F2,{children:[(0,I.jsx)(I2,{children:(0,I.jsxs)(z2,{children:[(0,I.jsx)(B2,{className:`font-semibold`,children:`Setting`}),r.map((e,t)=>(0,I.jsx)(B2,{className:`min-w-[150px]`,children:e.Name},t))]})}),(0,I.jsxs)(L2,{children:[(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Platform`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.Platform},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Public Apps`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.AppsPublic},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Custom Apps`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.AppsCustom},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Backup to Cloud`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.BackupOrgDataToICloudOrGoogle},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Send Data to Other Apps`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.SendOrgDataToOtherApps},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Apps to Exempt`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.AppsToExempt},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Save Copies`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.SaveCopiesOfOrgData},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Allow Save to Selected Services`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.AllowUserToSaveCopiesToSelectedServices},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Transfer Telecom Data To`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.DataProtectionTransferTelecommunicationDataTo},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Receive Data From Other Apps`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.DataProtectionReceiveDataFromOtherApps},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Rooted/Jailbroken Devices`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.ConditionalLaunchDeviceRootedJailbrokenDevices},t))]}),(0,I.jsxs)(z2,{children:[(0,I.jsx)(W,{className:`font-medium`,children:`Scope`}),r.map((e,t)=>(0,I.jsx)(W,{children:e.Scope},t))]})]})]})}):(0,I.jsx)(`p`,{children:`No app protection policies found.`})]})}var Cme=({data:e})=>{let t=(0,_.useContext)(cr);return(0,I.jsx)(a1,{isDark:!!(t.theme===`dark`||t.theme===`system`&&window.matchMedia(`(prefers-color-scheme: dark)`).matches),data:{nodes:[{id:`Desktop devices`,nodeColor:`hsl(28, 100%, 53%)`},{id:`Windows`,nodeColor:`hsl(35, 100%, 50%)`},{id:`macOS`,nodeColor:`hsl(200, 100%, 50%)`},{id:`Entra joined`,nodeColor:`hsl(12, 76%, 61%)`},{id:`Entra registered`,nodeColor:`hsl(12, 76%, 61%)`},{id:`Entra hybrid joined`,nodeColor:`hsl(12, 76%, 61%)`},{id:`Compliant`,nodeColor:`hsl(99, 70%, 50%)`},{id:`Non-compliant`,nodeColor:`hsl(0, 100%, 50%)`},{id:`Unmanaged`,nodeColor:`hsl(220, 10%, 60%)`}],links:e}})},wme=({data:e})=>{let t=(0,_.useContext)(cr);return(0,I.jsx)(a1,{isDark:!!(t.theme===`dark`||t.theme===`system`&&window.matchMedia(`(prefers-color-scheme: dark)`).matches),data:{nodes:[{id:`Mobile devices`,nodeColor:`hsl(28, 100%, 53%)`},{id:`Android`,nodeColor:`hsl(35, 100%, 50%)`},{id:`iOS`,nodeColor:`hsl(210, 100%, 50%)`},{id:`Android (Company)`,nodeColor:`hsl(30, 100%, 45%)`},{id:`Android (Personal)`,nodeColor:`hsl(40, 100%, 55%)`},{id:`iOS (Company)`,nodeColor:`hsl(210, 100%, 45%)`},{id:`iOS (Personal)`,nodeColor:`hsl(210, 100%, 55%)`},{id:`Compliant`,nodeColor:`hsl(99, 70%, 50%)`},{id:`Non-compliant`,nodeColor:`hsl(0, 100%, 50%)`}],links:e}})},W9=(e,t,n)=>e.filter(e=>t(e.source)&&n(e.target)).reduce((e,t)=>e+(Number(t.value)||0),0),G9=(e=`No data available`)=>(0,I.jsx)(`div`,{className:`flex h-full w-full items-center justify-center text-sm text-muted-foreground`,children:e});function Tme(){let e=z.TenantInfo?.DeviceOverview,t=e?.DesktopDevicesSummary?.nodes||[],n=e?.MobileSummary?.nodes||[],r=e?.DeviceSummary?.deviceOperatingSystemSummary||e?.ManagedDevices?.deviceOperatingSystemSummary,i=Number(r?.windowsCount)||W9(t,e=>e===`Desktop devices`,e=>e===`Windows`),a=Number(r?.macOSCount)||W9(t,e=>e===`Desktop devices`,e=>e===`macOS`),o=Number(r?.iosCount??r?.iOSCount)||W9(n,e=>e===`Mobile devices`,e=>e===`iOS`),s=Number(r?.androidCount)||W9(n,e=>e===`Mobile devices`,e=>e===`Android`),c=Number(r?.linuxCount)||0,l=i+a+o+s+c,u=Number(z.TenantInfo?.TenantOverview?.ManagedDeviceCount)||Number(e?.ManagedDevices?.totalCount)||0,d=Number(z.TenantInfo?.TenantOverview?.DeviceCount)||l,f=Number(e?.DeviceCompliance?.compliantDeviceCount)||0,p=Number(e?.DeviceCompliance?.nonCompliantDeviceCount)||0,m=f+p>0?p:l,h=f+m,g=Number(e?.DeviceOwnership?.corporateCount)||0,_=Number(e?.DeviceOwnership?.personalCount)||0,v=g+_;return(0,I.jsx)(_W,{children:(0,I.jsx)(xW,{className:`px-4 pb-3 pt-1`,children:(0,I.jsx)(Cg,{type:`single`,collapsible:!0,defaultValue:`device-insights`,className:`w-full`,children:(0,I.jsxs)(wg,{value:`device-insights`,className:`border-b-0`,children:[(0,I.jsx)(Tg,{className:`py-3 hover:no-underline`,children:(0,I.jsxs)(`div`,{className:`flex flex-1 items-center gap-3 text-left`,children:[(0,I.jsx)(`div`,{className:`flex size-10 shrink-0 items-center justify-center rounded-md bg-muted text-foreground`,children:(0,I.jsx)(lc,{className:`size-5`})}),(0,I.jsxs)(`div`,{className:`flex flex-col gap-0.5`,children:[(0,I.jsx)(`span`,{className:`text-lg font-semibold leading-none`,children:`Device insights`}),(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`An overview of your device ownership, desktop, and mobile device posture.`})]})]})}),(0,I.jsx)(Eg,{className:`pb-2`,children:(0,I.jsxs)(`div`,{className:`space-y-4`,children:[(0,I.jsxs)(_W,{className:`flex h-full w-full flex-col`,children:[(0,I.jsx)(vW,{className:`flex flex-col space-y-1.5 px-4 pb-2 pt-4`,children:(0,I.jsxs)(yW,{className:`flex items-center gap-2 text-base font-semibold`,children:[(0,I.jsx)(lc,{className:`size-5`}),`Devices`]})}),(0,I.jsx)(xW,{className:`flex flex-1 items-center px-4 pb-4 pt-0`,children:(0,I.jsxs)(`div`,{className:`grid w-full grid-cols-2 gap-4`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,I.jsx)(`span`,{className:`relative flex size-[1.609rem] shrink-0 overflow-hidden rounded-sm`,children:(0,I.jsx)(`span`,{className:`flex h-full w-full items-center justify-center shrink-0 rounded-sm bg-transparent text-[color:var(--viz-8)]`,children:(0,I.jsx)(lc,{className:`size-[1.515rem]`})})}),(0,I.jsxs)(`div`,{className:`flex flex-col gap-0.5`,children:[(0,I.jsx)(`span`,{className:`text-muted-foreground flex items-center gap-1 text-sm font-medium`,children:(0,I.jsx)(`span`,{className:`whitespace-nowrap`,children:`Total devices`})}),(0,I.jsx)(`span`,{className:`text-lg font-medium`,children:P1(d)})]})]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-3`,children:[(0,I.jsx)(`span`,{className:`relative flex size-[1.609rem] shrink-0 overflow-hidden rounded-sm`,children:(0,I.jsx)(`span`,{className:`flex h-full w-full items-center justify-center shrink-0 rounded-sm bg-transparent text-[color:var(--viz-8)]`,children:(0,I.jsx)(uc,{className:`size-[1.515rem]`})})}),(0,I.jsxs)(`div`,{className:`flex flex-col gap-0.5`,children:[(0,I.jsx)(`span`,{className:`text-muted-foreground flex items-center gap-1 text-sm font-medium`,children:(0,I.jsx)(`span`,{className:`whitespace-nowrap`,children:`Managed devices`})}),(0,I.jsx)(`span`,{className:`text-lg font-medium`,children:P1(u)})]})]})]})})]}),(0,I.jsxs)(`div`,{className:`grid grid-cols-1 gap-4 items-stretch lg:grid-cols-2`,children:[(0,I.jsxs)(_W,{className:`flex h-[420px] flex-col overflow-hidden`,children:[(0,I.jsxs)(vW,{className:`space-y-0 pb-2 flex-row pt-3`,children:[(0,I.jsx)(lc,{className:`pr-2 size-8 shrink-0`}),(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`Device summary`})]}),(0,I.jsxs)(xW,{className:`flex flex-1 min-h-0 flex-col pb-2 pt-0`,children:[(0,I.jsx)(EW,{config:{covered:{label:`MDE sensor installed`,color:`hsl(240, 40%, 45%)`},notCovered:{label:`Not covered`,color:`hsl(240, 45%, 80%)`}},className:`w-full flex-1 min-h-0`,children:(0,I.jsxs)(zU,{margin:{left:64,right:64,top:0,bottom:0},data:(()=>{let e=(e,t,n)=>{let r=Math.max(0,e||0),i=Math.max(0,t||0),a=Math.max(0,n||0),o=i+a0?Math.round(i/r*100):0;return{covered:i,notCovered:Math.max(0,r-i),percent:s,adjustedNotCovered:o}},r=e(i,W9(t,e=>[`Entra joined`,`Entra hybrid joined`,`Entra registered`].includes(e),e=>e===`Compliant`),W9(t,e=>[`Entra joined`,`Entra hybrid joined`,`Entra registered`].includes(e),e=>e===`Non-compliant`||e===`Unmanaged`)),l=e(a,W9(t,e=>e===`macOS`,e=>e===`Compliant`),W9(t,e=>e===`macOS`,e=>e===`Non-compliant`||e===`Unmanaged`)),u=e(o,W9(n,e=>e.includes(`iOS`),e=>e===`Compliant`),W9(n,e=>e.includes(`iOS`),e=>e===`Non-compliant`)),d=e(s,W9(n,e=>e.includes(`Android`),e=>e===`Compliant`),W9(n,e=>e.includes(`Android`),e=>e===`Non-compliant`)),f=e(c,0,c);return[{os:`Windows`,total:i,covered:r.covered,notCovered:r.notCovered,label:`${P1(r.covered)}/${P1(i)} (${r.percent}%)`},{os:`macOS`,total:a,covered:l.covered,notCovered:l.notCovered,label:`${P1(l.covered)}/${P1(a)} (${l.percent}%)`},{os:`iOS`,total:o,covered:u.covered,notCovered:u.notCovered,label:`${P1(u.covered)}/${P1(o)} (${u.percent}%)`},{os:`Android`,total:s,covered:d.covered,notCovered:d.notCovered,label:`${P1(d.covered)}/${P1(s)} (${d.percent}%)`},{os:`Linux`,total:c,covered:f.covered,notCovered:f.notCovered,label:`${P1(f.covered)}/${P1(c)} (${f.percent}%)`}]})(),layout:`vertical`,barSize:32,barGap:36,children:[(0,I.jsx)(ZV,{type:`number`,hide:!0}),(0,I.jsx)(mH,{dataKey:`os`,type:`category`,tickLine:!1,tickMargin:6,axisLine:!1}),(0,I.jsx)(OW,{cursor:!1,content:(0,I.jsx)(kW,{})}),(0,I.jsx)(tz,{dataKey:`covered`,stackId:`deviceCoverage`,fill:`var(--color-covered)`,radius:[5,0,0,5]}),(0,I.jsx)(tz,{dataKey:`notCovered`,stackId:`deviceCoverage`,fill:`var(--color-notCovered)`,radius:[0,5,5,0],children:(0,I.jsx)(NP,{position:`right`,dataKey:`label`,offset:8,fontSize:12,fill:`hsl(var(--foreground))`})})]})}),(0,I.jsxs)(`div`,{className:`flex items-center justify-center gap-4 pt-1 text-xs text-muted-foreground`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,I.jsx)(`span`,{className:`size-2.5 rounded-full`,style:{backgroundColor:`hsl(240, 40%, 45%)`}}),`MDE sensor installed`]}),(0,I.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,I.jsx)(`span`,{className:`size-2.5 rounded-full`,style:{backgroundColor:`hsl(240, 45%, 80%)`}}),`Not covered`]})]})]}),(0,I.jsx)(SW,{className:`flex flex-row items-center border-t p-4`,children:(0,I.jsxs)(`div`,{className:`flex w-full items-center gap-2`,children:[(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsx)(`div`,{className:`text-xs text-muted-foreground`,children:`Desktops`}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[(()=>{let e=i+a+c,t=e+(o+s);return t>0?Math.round(e/t*100):0})(),(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]}),(0,I.jsx)(W1,{orientation:`vertical`,className:`mx-2 h-10 w-px`}),(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsx)(`div`,{className:`text-xs text-muted-foreground`,children:`Mobiles`}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[(()=>{let e=i+a+c,t=o+s,n=e+t;return n>0?Math.round(t/n*100):0})(),(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]})]})})]}),(0,I.jsxs)(_W,{className:`flex h-[420px] flex-col overflow-hidden`,children:[(0,I.jsxs)(vW,{className:`space-y-0 pb-2 flex-row pt-3`,children:[(0,I.jsx)(Ys,{className:`pr-2 size-8`}),(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`Device compliance`})]}),(0,I.jsx)(xW,{className:`flex flex-1 min-h-0 items-center justify-center pb-2 pt-0`,children:h<=0?G9(`No compliance data available.`):(0,I.jsx)(EW,{config:{compliant:{label:`Compliant`,color:`hsl(142, 76%, 36%)`},nonCompliant:{label:`Non-compliant`,color:`hsl(0, 84%, 60%)`}},className:`mx-auto h-full w-full`,children:(0,I.jsxs)(BU,{margin:{top:5,right:5,bottom:5,left:5},children:[(0,I.jsxs)(KL,{data:[{name:`Compliant`,value:f,fill:`var(--color-compliant)`},{name:`Non-compliant`,value:m,fill:`var(--color-nonCompliant)`}],cx:`50%`,cy:`50%`,innerRadius:50,outerRadius:100,paddingAngle:2,dataKey:`value`,cornerRadius:5,children:[(0,I.jsx)(rw,{fill:`var(--color-compliant)`}),(0,I.jsx)(rw,{fill:`var(--color-nonCompliant)`}),(0,I.jsx)(dP,{content:({viewBox:e})=>e&&`cx`in e&&`cy`in e?(0,I.jsxs)(`text`,{x:e.cx,y:e.cy,textAnchor:`middle`,dominantBaseline:`middle`,children:[(0,I.jsx)(`tspan`,{x:e.cx,y:e.cy,className:`fill-foreground text-2xl font-bold`,children:P1(h)}),(0,I.jsx)(`tspan`,{x:e.cx,y:(e.cy||0)+20,className:`fill-muted-foreground text-xs`,children:`devices`})]}):null})]}),(0,I.jsx)(OW,{content:(0,I.jsx)(kW,{})})]})})}),(0,I.jsx)(SW,{className:`flex flex-row items-center border-t p-4`,children:(0,I.jsxs)(`div`,{className:`flex w-full items-center gap-2`,children:[(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-1 text-xs text-muted-foreground`,children:[(0,I.jsx)(`div`,{className:`h-3 w-3 rounded-sm`,style:{backgroundColor:`hsl(142, 76%, 36%)`}}),`Compliant`]}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[h>0?Math.round(f/h*100):0,(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]}),(0,I.jsx)(W1,{orientation:`vertical`,className:`mx-2 h-10 w-px`}),(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-1 text-xs text-muted-foreground`,children:[(0,I.jsx)(`div`,{className:`h-3 w-3 rounded-sm`,style:{backgroundColor:`hsl(0, 84%, 60%)`}}),`Non-compliant`]}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[h>0?Math.round(m/h*100):0,(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]})]})})]})]}),(0,I.jsxs)(`div`,{className:`grid grid-cols-1 gap-4 items-stretch lg:grid-cols-2`,children:[(0,I.jsxs)(_W,{className:`flex h-[420px] flex-col overflow-hidden`,children:[(0,I.jsxs)(vW,{className:`space-y-0 pb-2 flex-row pt-3`,children:[(0,I.jsx)(Hs,{className:`pr-2 size-8`}),(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`Device ownership`})]}),(0,I.jsx)(xW,{className:`flex flex-1 min-h-0 items-center justify-center pb-2 pt-0`,children:v<=0?G9():(0,I.jsx)(EW,{config:{corporate:{label:`Corporate`,color:`hsl(217, 91%, 60%)`},personal:{label:`Personal`,color:`hsl(280, 85%, 60%)`}},className:`mx-auto h-full w-full`,children:(0,I.jsxs)(BU,{margin:{top:5,right:5,bottom:5,left:5},children:[(0,I.jsxs)(KL,{data:[{name:`Corporate`,value:g,fill:`var(--color-corporate)`},{name:`Personal`,value:_,fill:`var(--color-personal)`}],cx:`50%`,cy:`50%`,innerRadius:50,outerRadius:100,paddingAngle:2,dataKey:`value`,cornerRadius:5,children:[(0,I.jsx)(rw,{fill:`var(--color-corporate)`}),(0,I.jsx)(rw,{fill:`var(--color-personal)`})]}),(0,I.jsx)(OW,{content:(0,I.jsx)(kW,{})})]})})}),(0,I.jsx)(SW,{className:`flex flex-row items-center border-t p-4`,children:(0,I.jsxs)(`div`,{className:`flex w-full items-center gap-2`,children:[(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-1 text-xs text-muted-foreground`,children:[(0,I.jsx)(`div`,{className:`h-3 w-3 rounded-sm bg-blue-500`}),`Corporate`]}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[v>0?Math.round(g/v*100):0,(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]}),(0,I.jsx)(W1,{orientation:`vertical`,className:`mx-2 h-10 w-px`}),(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-1 text-xs text-muted-foreground`,children:[(0,I.jsx)(`div`,{className:`h-3 w-3 rounded-sm bg-purple-500`}),`Personal`]}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[v>0?Math.round(_/v*100):0,(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]})]})})]}),(0,I.jsxs)(_W,{className:`flex h-[420px] flex-col overflow-hidden`,children:[(0,I.jsxs)(vW,{className:`space-y-0 pb-2 flex-row pt-3`,children:[(0,I.jsx)(mc,{className:`pr-2 size-8`}),(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`Device antivirus protection`})]}),(0,I.jsx)(xW,{className:`flex flex-1 min-h-0 items-center justify-center pb-2 pt-0`,children:G9()}),(0,I.jsx)(SW,{className:`flex flex-row items-center border-t p-4`,children:(0,I.jsxs)(`div`,{className:`flex w-full items-center gap-2`,children:[(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-1 text-xs text-muted-foreground`,children:[(0,I.jsx)(`div`,{className:`h-3 w-3 rounded-sm bg-green-600`}),`Protected`]}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[`0`,(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]}),(0,I.jsx)(W1,{orientation:`vertical`,className:`mx-2 h-10 w-px`}),(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-1 text-xs text-muted-foreground`,children:[(0,I.jsx)(`div`,{className:`h-3 w-3 rounded-sm bg-red-500`}),`Unprotected`]}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[`0`,(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]})]})})]})]}),(0,I.jsxs)(`div`,{className:`grid grid-cols-1 gap-4 items-start lg:grid-cols-2`,children:[(0,I.jsxs)(_W,{className:`w-full`,children:[(0,I.jsxs)(vW,{className:`space-y-0 pb-2 flex-row pt-3`,children:[(0,I.jsx)(uc,{className:`pr-2 size-8`}),(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`Desktop devices`})]}),(0,I.jsx)(xW,{children:(0,I.jsx)(EW,{config:{steps:{label:`Steps`,color:`hsl(var(--chart-1))`}},className:`h-[350px] w-full`,children:t.length>0?(0,I.jsx)(Cme,{data:t}):G9()})}),(0,I.jsx)(SW,{className:`flex flex-row border-t p-4`,children:(0,I.jsxs)(`div`,{className:`flex w-full items-center gap-2`,children:[(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsx)(`div`,{className:`text-xs text-muted-foreground`,children:`Entra joined`}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[(()=>{let e=i+a,n=t.find(e=>e.target===`Entra joined`)?.value||0;return e>0?Math.round(n/e*100):0})(),(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]}),(0,I.jsx)(W1,{orientation:`vertical`,className:`mx-2 h-10 w-px`}),(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsx)(`div`,{className:`text-xs text-muted-foreground`,children:`Entra hybrid joined`}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[(()=>{let e=i+a,n=t.find(e=>e.target===`Entra hybrid joined`)?.value||0;return e>0?Math.round(n/e*100):0})(),(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]}),(0,I.jsx)(W1,{orientation:`vertical`,className:`mx-2 h-10 w-px`}),(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsx)(`div`,{className:`text-xs text-muted-foreground`,children:`Entra registered`}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[(()=>{let e=i+a,n=t.find(e=>e.target===`Entra registered`)?.value||0;return e>0?Math.round(n/e*100):0})(),(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]})]})})]}),(0,I.jsxs)(_W,{className:`w-full`,children:[(0,I.jsxs)(vW,{className:`space-y-0 pb-2 flex-row pt-3`,children:[(0,I.jsx)(lc,{className:`pr-2 size-8`}),(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`Mobile devices`})]}),(0,I.jsx)(xW,{children:(0,I.jsx)(EW,{config:{steps:{label:`Steps`,color:`hsl(var(--chart-1))`}},className:`h-[350px] w-full`,children:n.length>0?(0,I.jsx)(wme,{data:n}):G9()})}),(0,I.jsx)(SW,{className:`flex flex-row border-t p-4`,children:(0,I.jsxs)(`div`,{className:`flex w-full items-center gap-2`,children:[(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsx)(`div`,{className:`text-xs text-muted-foreground`,children:`Android compliant`}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[(()=>{let e=n.filter(e=>e.source?.includes(`Android`)&&e.target===`Compliant`).reduce((e,t)=>e+(t.value||0),0);return s>0?Math.round(e/s*100):0})(),(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]}),(0,I.jsx)(W1,{orientation:`vertical`,className:`mx-2 h-10 w-px`}),(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsx)(`div`,{className:`text-xs text-muted-foreground`,children:`iOS compliant`}),(0,I.jsxs)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:[(()=>{let e=n.filter(e=>e.source?.includes(`iOS`)&&e.target===`Compliant`).reduce((e,t)=>e+(t.value||0),0);return o>0?Math.round(e/o*100):0})(),(0,I.jsx)(`span`,{className:`text-sm font-normal text-muted-foreground`,children:`%`})]})]}),(0,I.jsx)(W1,{orientation:`vertical`,className:`mx-2 h-10 w-px`}),(0,I.jsxs)(`div`,{className:`grid flex-1 auto-rows-min gap-0.5`,children:[(0,I.jsx)(`div`,{className:`text-xs text-muted-foreground`,children:`Total devices`}),(0,I.jsx)(`div`,{className:`flex items-baseline gap-1 text-2xl font-bold tabular-nums leading-none`,children:P1(s+o)})]})]})})]})]})]})})]})})})})}function Eme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(o0,{children:(0,I.jsx)(s0,{children:`Devices`})}),(0,I.jsx)(`div`,{className:`mb-2`,children:(0,I.jsx)(Tme,{})}),(0,I.jsxs)(xme,{defaultValue:`assessment`,className:`w-full`,children:[(0,I.jsxs)(V9,{className:`grid w-full grid-cols-2`,children:[(0,I.jsxs)(H9,{value:`assessment`,className:`flex items-center gap-2`,children:[(0,I.jsx)(Gs,{className:`h-4 w-4`}),`Assessment results`]}),(0,I.jsxs)(H9,{value:`config`,className:`flex items-center gap-2`,children:[(0,I.jsx)(pc,{className:`h-4 w-4`}),`Config`]})]}),(0,I.jsx)(U9,{value:`assessment`,className:`space-y-4`,children:(0,I.jsxs)(_W,{children:[(0,I.jsxs)(vW,{children:[(0,I.jsx)(yW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsxs)(bW,{children:[`The results presented below are based on the security principles detailed in the`,` `,(0,I.jsx)(`a`,{href:`https://learn.microsoft.com/intune/intune-service/protect/zero-trust-configure-security`,target:`_blank`,rel:`noopener noreferrer`,className:`text-primary font-medium underline underline-offset-4 hover:underline`,children:`Configuring Microsoft Intune for increased security`}),` `,`guide.`]})]}),(0,I.jsx)(xW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(x9,{columns:w9,data:z.Tests,pillar:`Devices`})})]})}),(0,I.jsx)(U9,{value:`config`,className:`space-y-4`,children:(0,I.jsxs)(_W,{children:[(0,I.jsxs)(vW,{children:[(0,I.jsx)(yW,{className:`mb-3`,children:`Device Configuration`}),(0,I.jsx)(bW,{children:`Device configuration settings and options.`})]}),(0,I.jsx)(xW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(Sme,{})})]})})]})]})}function Dme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(o0,{children:(0,I.jsx)(s0,{children:`Apps`})}),(0,I.jsx)(_W,{children:(0,I.jsxs)(vW,{children:[(0,I.jsx)(yW,{children:`Coming soon`}),(0,I.jsx)(bW,{children:`He that can have patience can have what he will. - Benjamin Franklin`})]})})]})}function K9(e){switch(e){case`Passed`:return`success`;case`Failed`:return`destructive`;case`Investigate`:return`warning`;default:return`secondary`}}var Ome=({data:e})=>{let t=(0,_.useContext)(cr),n=t.theme===`dark`||t.theme===`system`&&window.matchMedia(`(prefers-color-scheme: dark)`).matches;return(0,I.jsxs)(I.Fragment,{children:[(e.overallStatus||e.gates?.length)&&(0,I.jsxs)(`div`,{className:`mb-3 flex flex-wrap items-center gap-x-5 gap-y-2 text-sm`,"aria-label":`Microsoft 365 protection circuit verdicts`,children:[(0,I.jsxs)(`div`,{className:`flex items-center gap-2 font-medium`,children:[(0,I.jsx)(`span`,{children:`Circuit`}),(0,I.jsx)(c1,{variant:K9(e.overallStatus),children:e.overallStatus??`Unavailable`})]}),e.gates?.map(e=>(0,I.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,I.jsx)(`span`,{children:e.name}),(0,I.jsx)(c1,{variant:K9(e.status),children:e.status})]},e.testId))]}),(0,I.jsx)(`div`,{className:`h-80`,children:(0,I.jsx)(a1,{isDark:n,data:{nodes:[{id:`Total M365 traffic`,nodeColor:`hsl(215, 16%, 47%)`},{id:`Unprotected - not acquired`,nodeColor:`hsl(0, 84%, 60%)`},{id:`Acquired via Global Secure Access`,nodeColor:`hsl(142, 71%, 45%)`},{id:`Enforced - compliant network`,nodeColor:`hsl(142, 71%, 45%)`},{id:`Acquired but not enforced`,nodeColor:`hsl(0, 84%, 60%)`},{id:`Acquired, enforcement needs review`,nodeColor:`hsl(45, 93%, 47%)`},{id:`Acquisition needs review`,nodeColor:`hsl(45, 93%, 47%)`},{id:`Acquisition unavailable`,nodeColor:`hsl(215, 16%, 47%)`},{id:`Enforcement unavailable`,nodeColor:`hsl(215, 16%, 47%)`}],links:e.nodes}})})]})};function kme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(o0,{children:(0,I.jsx)(s0,{children:`Network`})}),(g1()||y1()||z.TenantInfo?.OverviewM365ProtectionCircuit?.nodes)&&(0,I.jsx)(_W,{className:`mb-[26px]`,children:(0,I.jsx)(xW,{className:`px-4 pb-3 pt-1`,children:(0,I.jsx)(Cg,{type:`single`,collapsible:!0,defaultValue:`network-insights`,className:`w-full`,children:(0,I.jsxs)(wg,{value:`network-insights`,className:`border-b-0`,children:[(0,I.jsx)(Tg,{className:`py-3 hover:no-underline`,children:(0,I.jsxs)(`div`,{className:`flex items-center gap-2 text-left`,children:[(0,I.jsx)(dc,{className:`size-5`}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(`div`,{className:`text-base font-semibold`,children:`Network insights`}),(0,I.jsx)(`div`,{className:`text-sm font-normal text-muted-foreground`,children:`Secure Web Gateway, Private Access, and Microsoft 365 protection posture.`})]})]})}),(0,I.jsxs)(Eg,{className:`pb-2`,children:[g1()&&(0,I.jsxs)(_W,{className:`h-full`,children:[(0,I.jsxs)(vW,{className:`flex-row space-y-0 pb-3 pt-3`,children:[(0,I.jsx)(mc,{className:`size-8 pr-2`}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`SWG defense-in-depth`}),(0,I.jsx)(bW,{className:`mt-1`,children:`Secure Web Gateway defense layers — internet traffic inspection posture`})]})]}),(0,I.jsx)(xW,{children:(0,I.jsx)(_1,{})})]}),(y1()||z.TenantInfo?.OverviewM365ProtectionCircuit?.nodes)&&(0,I.jsxs)(`div`,{className:`mt-4 grid grid-cols-1 items-stretch gap-4 lg:grid-cols-2`,children:[y1()&&(0,I.jsx)(b1,{}),z.TenantInfo?.OverviewM365ProtectionCircuit?.nodes&&(0,I.jsxs)(_W,{className:`h-full`,children:[(0,I.jsxs)(vW,{className:`flex-row space-y-0 pb-3 pt-3`,children:[(0,I.jsx)(mc,{className:`size-8 pr-2`}),(0,I.jsxs)(`div`,{children:[(0,I.jsx)(yW,{className:`text-2xl tabular-nums`,children:`Microsoft 365 protection circuit`}),(0,I.jsx)(bW,{className:`mt-1`,children:`Global Secure Access acquisition and compliant network enforcement`})]})]}),(0,I.jsx)(xW,{className:`w-full`,children:(0,I.jsx)(Ome,{data:z.TenantInfo.OverviewM365ProtectionCircuit})}),(0,I.jsx)(SW,{className:`text-sm text-muted-foreground`,children:z.TenantInfo.OverviewM365ProtectionCircuit.description})]})]})]})]})})})}),(0,I.jsxs)(_W,{children:[(0,I.jsxs)(vW,{children:[(0,I.jsx)(yW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsxs)(bW,{children:[`The results presented below are based on the security principles detailed in the`,` `,(0,I.jsx)(`a`,{href:`https://learn.microsoft.com/en-us/entra/fundamentals/configure-security`,target:`_blank`,rel:`noopener noreferrer`,className:`text-primary font-medium underline underline-offset-4 hover:underline`,children:`Configuring Microsoft Entra and Azure for increased security`}),` `,`guide.`]})]}),(0,I.jsx)(xW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(x9,{columns:w9,data:z.Tests,pillar:`Network`})})]})]})}function Ame(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(o0,{children:(0,I.jsx)(s0,{children:`Infrastructure`})}),(0,I.jsxs)(_W,{children:[(0,I.jsxs)(vW,{children:[(0,I.jsx)(yW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsx)(bW,{children:`The results below are based on Microsoft Defender for Cloud recommendations identified in the scanned environment. You must apply the following tag to each Azure subscription which you want to be included in the scan: ZeroTrustAssessment:Infrastructure.`})]}),(0,I.jsx)(xW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(x9,{columns:w9,data:z.Tests,pillar:`Infrastructure`})})]})]})}function jme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(o0,{children:(0,I.jsx)(s0,{children:`Data`})}),(0,I.jsxs)(_W,{children:[(0,I.jsxs)(vW,{children:[(0,I.jsx)(yW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsxs)(bW,{children:[`The results presented below are based on the security principles detailed in the`,` `,(0,I.jsx)(`a`,{href:`https://learn.microsoft.com/en-us/purview/configure-security`,target:`_blank`,rel:`noopener noreferrer`,className:`text-primary font-medium underline underline-offset-4 hover:underline`,children:`Configuring Microsoft Purview for increased security`}),` `,`guide.`]})]}),(0,I.jsx)(xW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(x9,{columns:w9,data:z.Tests,pillar:`Data`})})]})]})}function Mme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(o0,{children:(0,I.jsx)(s0,{children:`Security Operations`})}),(0,I.jsxs)(_W,{children:[(0,I.jsxs)(vW,{children:[(0,I.jsx)(yW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsx)(bW,{children:`The results presented below are based on Zero Trust security principles for security operations.`})]}),(0,I.jsx)(xW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(x9,{columns:w9,data:z.Tests,pillar:`SecOps`})})]})]})}function Nme(){return(0,I.jsxs)(I.Fragment,{children:[(0,I.jsx)(o0,{children:(0,I.jsx)(s0,{children:`AI`})}),(0,I.jsxs)(_W,{children:[(0,I.jsxs)(vW,{children:[(0,I.jsx)(yW,{className:`mb-3`,children:`Assessment results`}),(0,I.jsx)(bW,{children:`The results presented below are based on Zero Trust security principles for AI workloads.`})]}),(0,I.jsx)(xW,{className:`gap-4 px-4 pb-4 pt-1`,children:(0,I.jsx)(x9,{columns:w9,data:z.Tests,pillar:`AI`})})]})]})}var Pme=zn([{path:`/`,element:(0,I.jsx)(kg,{}),children:[{path:``,element:(0,I.jsx)(G1,{})},{path:`identity`,element:(0,I.jsx)(gme,{})},{path:`devices`,element:(0,I.jsx)(Eme,{})},{path:`apps`,element:(0,I.jsx)(Dme,{})},{path:`network`,element:(0,I.jsx)(kme,{})},{path:`infrastructure`,element:(0,I.jsx)(Ame,{})},{path:`data`,element:(0,I.jsx)(jme,{})},{path:`secops`,element:(0,I.jsx)(Mme,{})},{path:`ai`,element:(0,I.jsx)(Nme,{})}]},{path:`*`,element:(0,I.jsx)(Ag,{})}],{basename:{basename:``}.basename});function Fme(e){if(!e||typeof document>`u`)return;let t=document.head||document.getElementsByTagName(`head`)[0],n=document.createElement(`style`);n.type=`text/css`,t.appendChild(n),n.styleSheet?n.styleSheet.cssText=e:n.appendChild(document.createTextNode(e))}var Ime=e=>{switch(e){case`success`:return zme;case`info`:return Vme;case`warning`:return Bme;case`error`:return Hme;default:return null}},Lme=Array(12).fill(0),Rme=({visible:e,className:t})=>_.createElement(`div`,{className:[`sonner-loading-wrapper`,t].filter(Boolean).join(` `),"data-visible":e},_.createElement(`div`,{className:`sonner-spinner`},Lme.map((e,t)=>_.createElement(`div`,{className:`sonner-loading-bar`,key:`spinner-bar-${t}`})))),zme=_.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 20 20`,fill:`currentColor`,height:`20`,width:`20`},_.createElement(`path`,{fillRule:`evenodd`,d:`M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z`,clipRule:`evenodd`})),Bme=_.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 24 24`,fill:`currentColor`,height:`20`,width:`20`},_.createElement(`path`,{fillRule:`evenodd`,d:`M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003zM12 8.25a.75.75 0 01.75.75v3.75a.75.75 0 01-1.5 0V9a.75.75 0 01.75-.75zm0 8.25a.75.75 0 100-1.5.75.75 0 000 1.5z`,clipRule:`evenodd`})),Vme=_.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 20 20`,fill:`currentColor`,height:`20`,width:`20`},_.createElement(`path`,{fillRule:`evenodd`,d:`M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z`,clipRule:`evenodd`})),Hme=_.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 20 20`,fill:`currentColor`,height:`20`,width:`20`},_.createElement(`path`,{fillRule:`evenodd`,d:`M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z`,clipRule:`evenodd`})),Ume=_.createElement(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:`12`,height:`12`,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:`1.5`,strokeLinecap:`round`,strokeLinejoin:`round`},_.createElement(`line`,{x1:`18`,y1:`6`,x2:`6`,y2:`18`}),_.createElement(`line`,{x1:`6`,y1:`6`,x2:`18`,y2:`18`})),Wme=()=>{let[e,t]=_.useState(document.hidden);return _.useEffect(()=>{let e=()=>{t(document.hidden)};return document.addEventListener(`visibilitychange`,e),()=>window.removeEventListener(`visibilitychange`,e)},[]),e},q9=1,J9=new class{constructor(){this.subscribe=e=>(this.subscribers.push(e),()=>{let t=this.subscribers.indexOf(e);this.subscribers.splice(t,1)}),this.publish=e=>{this.subscribers.forEach(t=>t(e))},this.addToast=e=>{this.publish(e),this.toasts=[...this.toasts,e]},this.create=e=>{let{message:t,...n}=e,r=typeof e?.id==`number`||e.id?.length>0?e.id:q9++,i=this.toasts.find(e=>e.id===r),a=e.dismissible===void 0||e.dismissible;return this.dismissedToasts.has(r)&&this.dismissedToasts.delete(r),i?this.toasts=this.toasts.map(n=>n.id===r?(this.publish({...n,...e,id:r,title:t}),{...n,...e,id:r,dismissible:a,title:t}):n):this.addToast({title:t,...n,dismissible:a,id:r}),r},this.dismiss=e=>(e?(this.dismissedToasts.add(e),requestAnimationFrame(()=>this.subscribers.forEach(t=>t({id:e,dismiss:!0})))):this.toasts.forEach(e=>{this.subscribers.forEach(t=>t({id:e.id,dismiss:!0}))}),e),this.message=(e,t)=>this.create({...t,message:e}),this.error=(e,t)=>this.create({...t,message:e,type:`error`}),this.success=(e,t)=>this.create({...t,type:`success`,message:e}),this.info=(e,t)=>this.create({...t,type:`info`,message:e}),this.warning=(e,t)=>this.create({...t,type:`warning`,message:e}),this.loading=(e,t)=>this.create({...t,type:`loading`,message:e}),this.promise=(e,t)=>{if(!t)return;let n;t.loading!==void 0&&(n=this.create({...t,promise:e,type:`loading`,message:t.loading,description:typeof t.description==`function`?void 0:t.description}));let r=Promise.resolve(e instanceof Function?e():e),i=n!==void 0,a,o=r.then(async e=>{if(a=[`resolve`,e],_.isValidElement(e))i=!1,this.create({id:n,type:`default`,message:e});else if(Kme(e)&&!e.ok){i=!1;let r=typeof t.error==`function`?await t.error(`HTTP error! status: ${e.status}`):t.error,a=typeof t.description==`function`?await t.description(`HTTP error! status: ${e.status}`):t.description,o=typeof r==`object`&&!_.isValidElement(r)?r:{message:r};this.create({id:n,type:`error`,description:a,...o})}else if(e instanceof Error){i=!1;let r=typeof t.error==`function`?await t.error(e):t.error,a=typeof t.description==`function`?await t.description(e):t.description,o=typeof r==`object`&&!_.isValidElement(r)?r:{message:r};this.create({id:n,type:`error`,description:a,...o})}else if(t.success!==void 0){i=!1;let r=typeof t.success==`function`?await t.success(e):t.success,a=typeof t.description==`function`?await t.description(e):t.description,o=typeof r==`object`&&!_.isValidElement(r)?r:{message:r};this.create({id:n,type:`success`,description:a,...o})}}).catch(async e=>{if(a=[`reject`,e],t.error!==void 0){i=!1;let r=typeof t.error==`function`?await t.error(e):t.error,a=typeof t.description==`function`?await t.description(e):t.description,o=typeof r==`object`&&!_.isValidElement(r)?r:{message:r};this.create({id:n,type:`error`,description:a,...o})}}).finally(()=>{i&&(this.dismiss(n),n=void 0),t.finally==null||t.finally.call(t)}),s=()=>new Promise((e,t)=>o.then(()=>a[0]===`reject`?t(a[1]):e(a[1])).catch(t));return typeof n!=`string`&&typeof n!=`number`?{unwrap:s}:Object.assign(n,{unwrap:s})},this.custom=(e,t)=>{let n=t?.id||q9++;return this.create({jsx:e(n),id:n,...t}),n},this.getActiveToasts=()=>this.toasts.filter(e=>!this.dismissedToasts.has(e.id)),this.subscribers=[],this.toasts=[],this.dismissedToasts=new Set}},Gme=(e,t)=>{let n=t?.id||q9++;return J9.addToast({title:e,...t,id:n}),n},Kme=e=>e&&typeof e==`object`&&`ok`in e&&typeof e.ok==`boolean`&&`status`in e&&typeof e.status==`number`,Y9=Object.assign(Gme,{success:J9.success,info:J9.info,warning:J9.warning,error:J9.error,custom:J9.custom,message:J9.message,promise:J9.promise,dismiss:J9.dismiss,loading:J9.loading},{getHistory:()=>J9.toasts,getToasts:()=>J9.getActiveToasts()});Fme(`[data-sonner-toaster][dir=ltr],html[dir=ltr]{--toast-icon-margin-start:-3px;--toast-icon-margin-end:4px;--toast-svg-margin-start:-1px;--toast-svg-margin-end:0px;--toast-button-margin-start:auto;--toast-button-margin-end:0;--toast-close-button-start:0;--toast-close-button-end:unset;--toast-close-button-transform:translate(-35%, -35%)}[data-sonner-toaster][dir=rtl],html[dir=rtl]{--toast-icon-margin-start:4px;--toast-icon-margin-end:-3px;--toast-svg-margin-start:0px;--toast-svg-margin-end:-1px;--toast-button-margin-start:0;--toast-button-margin-end:auto;--toast-close-button-start:unset;--toast-close-button-end:0;--toast-close-button-transform:translate(35%, -35%)}[data-sonner-toaster]{position:fixed;width:var(--width);font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--gray1:hsl(0, 0%, 99%);--gray2:hsl(0, 0%, 97.3%);--gray3:hsl(0, 0%, 95.1%);--gray4:hsl(0, 0%, 93%);--gray5:hsl(0, 0%, 90.9%);--gray6:hsl(0, 0%, 88.7%);--gray7:hsl(0, 0%, 85.8%);--gray8:hsl(0, 0%, 78%);--gray9:hsl(0, 0%, 56.1%);--gray10:hsl(0, 0%, 52.3%);--gray11:hsl(0, 0%, 43.5%);--gray12:hsl(0, 0%, 9%);--border-radius:8px;box-sizing:border-box;padding:0;margin:0;list-style:none;outline:0;z-index:999999999;transition:transform .4s ease}@media (hover:none) and (pointer:coarse){[data-sonner-toaster][data-lifted=true]{transform:none}}[data-sonner-toaster][data-x-position=right]{right:var(--offset-right)}[data-sonner-toaster][data-x-position=left]{left:var(--offset-left)}[data-sonner-toaster][data-x-position=center]{left:50%;transform:translateX(-50%)}[data-sonner-toaster][data-y-position=top]{top:var(--offset-top)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--offset-bottom)}[data-sonner-toast]{--y:translateY(100%);--lift-amount:calc(var(--lift) * var(--gap));z-index:var(--z-index);position:absolute;opacity:0;transform:var(--y);touch-action:none;transition:transform .4s,opacity .4s,height .4s,box-shadow .2s;box-sizing:border-box;outline:0;overflow-wrap:anywhere}[data-sonner-toast][data-styled=true]{padding:16px;background:var(--normal-bg);border:1px solid var(--normal-border);color:var(--normal-text);border-radius:var(--border-radius);box-shadow:0 4px 12px rgba(0,0,0,.1);width:var(--width);font-size:13px;display:flex;align-items:center;gap:6px}[data-sonner-toast]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-y-position=top]{top:0;--y:translateY(-100%);--lift:1;--lift-amount:calc(1 * var(--gap))}[data-sonner-toast][data-y-position=bottom]{bottom:0;--y:translateY(100%);--lift:-1;--lift-amount:calc(var(--lift) * var(--gap))}[data-sonner-toast][data-styled=true] [data-description]{font-weight:400;line-height:1.4;color:#3f3f3f}[data-rich-colors=true][data-sonner-toast][data-styled=true] [data-description]{color:inherit}[data-sonner-toaster][data-sonner-theme=dark] [data-description]{color:#e8e8e8}[data-sonner-toast][data-styled=true] [data-title]{font-weight:500;line-height:1.5;color:inherit}[data-sonner-toast][data-styled=true] [data-icon]{display:flex;height:16px;width:16px;position:relative;justify-content:flex-start;align-items:center;flex-shrink:0;margin-left:var(--toast-icon-margin-start);margin-right:var(--toast-icon-margin-end)}[data-sonner-toast][data-promise=true] [data-icon]>svg{opacity:0;transform:scale(.8);transform-origin:center;animation:sonner-fade-in .3s ease forwards}[data-sonner-toast][data-styled=true] [data-icon]>*{flex-shrink:0}[data-sonner-toast][data-styled=true] [data-icon] svg{margin-left:var(--toast-svg-margin-start);margin-right:var(--toast-svg-margin-end)}[data-sonner-toast][data-styled=true] [data-content]{display:flex;flex-direction:column;gap:2px}[data-sonner-toast][data-styled=true] [data-button]{border-radius:4px;padding-left:8px;padding-right:8px;height:24px;font-size:12px;color:var(--normal-bg);background:var(--normal-text);margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end);border:none;font-weight:500;cursor:pointer;outline:0;display:flex;align-items:center;flex-shrink:0;transition:opacity .4s,box-shadow .2s}[data-sonner-toast][data-styled=true] [data-button]:focus-visible{box-shadow:0 0 0 2px rgba(0,0,0,.4)}[data-sonner-toast][data-styled=true] [data-button]:first-of-type{margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end)}[data-sonner-toast][data-styled=true] [data-cancel]{color:var(--normal-text);background:rgba(0,0,0,.08)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-styled=true] [data-cancel]{background:rgba(255,255,255,.3)}[data-sonner-toast][data-styled=true] [data-close-button]{position:absolute;left:var(--toast-close-button-start);right:var(--toast-close-button-end);top:0;height:20px;width:20px;display:flex;justify-content:center;align-items:center;padding:0;color:var(--gray12);background:var(--normal-bg);border:1px solid var(--gray4);transform:var(--toast-close-button-transform);border-radius:50%;cursor:pointer;z-index:1;transition:opacity .1s,background .2s,border-color .2s}[data-sonner-toast][data-styled=true] [data-close-button]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-styled=true] [data-disabled=true]{cursor:not-allowed}[data-sonner-toast][data-styled=true]:hover [data-close-button]:hover{background:var(--gray2);border-color:var(--gray5)}[data-sonner-toast][data-swiping=true]::before{content:'';position:absolute;left:-100%;right:-100%;height:100%;z-index:-1}[data-sonner-toast][data-y-position=top][data-swiping=true]::before{bottom:50%;transform:scaleY(3) translateY(50%)}[data-sonner-toast][data-y-position=bottom][data-swiping=true]::before{top:50%;transform:scaleY(3) translateY(-50%)}[data-sonner-toast][data-swiping=false][data-removed=true]::before{content:'';position:absolute;inset:0;transform:scaleY(2)}[data-sonner-toast][data-expanded=true]::after{content:'';position:absolute;left:0;height:calc(var(--gap) + 1px);bottom:100%;width:100%}[data-sonner-toast][data-mounted=true]{--y:translateY(0);opacity:1}[data-sonner-toast][data-expanded=false][data-front=false]{--scale:var(--toasts-before) * 0.05 + 1;--y:translateY(calc(var(--lift-amount) * var(--toasts-before))) scale(calc(-1 * var(--scale)));height:var(--front-toast-height)}[data-sonner-toast]>*{transition:opacity .4s}[data-sonner-toast][data-x-position=right]{right:0}[data-sonner-toast][data-x-position=left]{left:0}[data-sonner-toast][data-expanded=false][data-front=false][data-styled=true]>*{opacity:0}[data-sonner-toast][data-visible=false]{opacity:0;pointer-events:none}[data-sonner-toast][data-mounted=true][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset)));height:var(--initial-height)}[data-sonner-toast][data-removed=true][data-front=true][data-swipe-out=false]{--y:translateY(calc(var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset) + var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=false]{--y:translateY(40%);opacity:0;transition:transform .5s,opacity .2s}[data-sonner-toast][data-removed=true][data-front=false]::before{height:calc(var(--initial-height) + 20%)}[data-sonner-toast][data-swiping=true]{transform:var(--y) translateY(var(--swipe-amount-y,0)) translateX(var(--swipe-amount-x,0));transition:none}[data-sonner-toast][data-swiped=true]{user-select:none}[data-sonner-toast][data-swipe-out=true][data-y-position=bottom],[data-sonner-toast][data-swipe-out=true][data-y-position=top]{animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=left]{animation-name:swipe-out-left}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=right]{animation-name:swipe-out-right}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=up]{animation-name:swipe-out-up}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=down]{animation-name:swipe-out-down}@keyframes swipe-out-left{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) - 100%));opacity:0}}@keyframes swipe-out-right{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) + 100%));opacity:0}}@keyframes swipe-out-up{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) - 100%));opacity:0}}@keyframes swipe-out-down{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) + 100%));opacity:0}}@media (max-width:600px){[data-sonner-toaster]{position:fixed;right:var(--mobile-offset-right);left:var(--mobile-offset-left);width:100%}[data-sonner-toaster][dir=rtl]{left:calc(var(--mobile-offset-left) * -1)}[data-sonner-toaster] [data-sonner-toast]{left:0;right:0;width:calc(100% - var(--mobile-offset-left) * 2)}[data-sonner-toaster][data-x-position=left]{left:var(--mobile-offset-left)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--mobile-offset-bottom)}[data-sonner-toaster][data-y-position=top]{top:var(--mobile-offset-top)}[data-sonner-toaster][data-x-position=center]{left:var(--mobile-offset-left);right:var(--mobile-offset-right);transform:none}}[data-sonner-toaster][data-sonner-theme=light]{--normal-bg:#fff;--normal-border:var(--gray4);--normal-text:var(--gray12);--success-bg:hsl(143, 85%, 96%);--success-border:hsl(145, 92%, 87%);--success-text:hsl(140, 100%, 27%);--info-bg:hsl(208, 100%, 97%);--info-border:hsl(221, 91%, 93%);--info-text:hsl(210, 92%, 45%);--warning-bg:hsl(49, 100%, 97%);--warning-border:hsl(49, 91%, 84%);--warning-text:hsl(31, 92%, 45%);--error-bg:hsl(359, 100%, 97%);--error-border:hsl(359, 100%, 94%);--error-text:hsl(360, 100%, 45%)}[data-sonner-toaster][data-sonner-theme=light] [data-sonner-toast][data-invert=true]{--normal-bg:#000;--normal-border:hsl(0, 0%, 20%);--normal-text:var(--gray1)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-invert=true]{--normal-bg:#fff;--normal-border:var(--gray3);--normal-text:var(--gray12)}[data-sonner-toaster][data-sonner-theme=dark]{--normal-bg:#000;--normal-bg-hover:hsl(0, 0%, 12%);--normal-border:hsl(0, 0%, 20%);--normal-border-hover:hsl(0, 0%, 25%);--normal-text:var(--gray1);--success-bg:hsl(150, 100%, 6%);--success-border:hsl(147, 100%, 12%);--success-text:hsl(150, 86%, 65%);--info-bg:hsl(215, 100%, 6%);--info-border:hsl(223, 43%, 17%);--info-text:hsl(216, 87%, 65%);--warning-bg:hsl(64, 100%, 6%);--warning-border:hsl(60, 100%, 9%);--warning-text:hsl(46, 87%, 65%);--error-bg:hsl(358, 76%, 10%);--error-border:hsl(357, 89%, 16%);--error-text:hsl(358, 100%, 81%)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]{background:var(--normal-bg);border-color:var(--normal-border);color:var(--normal-text)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]:hover{background:var(--normal-bg-hover);border-color:var(--normal-border-hover)}[data-rich-colors=true][data-sonner-toast][data-type=success]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=success] [data-close-button]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=info]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=info] [data-close-button]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning] [data-close-button]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=error]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}[data-rich-colors=true][data-sonner-toast][data-type=error] [data-close-button]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}.sonner-loading-wrapper{--size:16px;height:var(--size);width:var(--size);position:absolute;inset:0;z-index:10}.sonner-loading-wrapper[data-visible=false]{transform-origin:center;animation:sonner-fade-out .2s ease forwards}.sonner-spinner{position:relative;top:50%;left:50%;height:var(--size);width:var(--size)}.sonner-loading-bar{animation:sonner-spin 1.2s linear infinite;background:var(--gray11);border-radius:6px;height:8%;left:-10%;position:absolute;top:-3.9%;width:24%}.sonner-loading-bar:first-child{animation-delay:-1.2s;transform:rotate(.0001deg) translate(146%)}.sonner-loading-bar:nth-child(2){animation-delay:-1.1s;transform:rotate(30deg) translate(146%)}.sonner-loading-bar:nth-child(3){animation-delay:-1s;transform:rotate(60deg) translate(146%)}.sonner-loading-bar:nth-child(4){animation-delay:-.9s;transform:rotate(90deg) translate(146%)}.sonner-loading-bar:nth-child(5){animation-delay:-.8s;transform:rotate(120deg) translate(146%)}.sonner-loading-bar:nth-child(6){animation-delay:-.7s;transform:rotate(150deg) translate(146%)}.sonner-loading-bar:nth-child(7){animation-delay:-.6s;transform:rotate(180deg) translate(146%)}.sonner-loading-bar:nth-child(8){animation-delay:-.5s;transform:rotate(210deg) translate(146%)}.sonner-loading-bar:nth-child(9){animation-delay:-.4s;transform:rotate(240deg) translate(146%)}.sonner-loading-bar:nth-child(10){animation-delay:-.3s;transform:rotate(270deg) translate(146%)}.sonner-loading-bar:nth-child(11){animation-delay:-.2s;transform:rotate(300deg) translate(146%)}.sonner-loading-bar:nth-child(12){animation-delay:-.1s;transform:rotate(330deg) translate(146%)}@keyframes sonner-fade-in{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}@keyframes sonner-fade-out{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.8)}}@keyframes sonner-spin{0%{opacity:1}100%{opacity:.15}}@media (prefers-reduced-motion){.sonner-loading-bar,[data-sonner-toast],[data-sonner-toast]>*{transition:none!important;animation:none!important}}.sonner-loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transform-origin:center;transition:opacity .2s,transform .2s}.sonner-loader[data-visible=false]{opacity:0;transform:scale(.8) translate(-50%,-50%)}`);function X9(e){return e.label!==void 0}var qme=3,Jme=`24px`,Yme=`16px`,Z9=4e3,Xme=356,Zme=14,Qme=45,$me=200;function Q9(...e){return e.filter(Boolean).join(` `)}function ehe(e){let[t,n]=e.split(`-`),r=[];return t&&r.push(t),n&&r.push(n),r}var the=e=>{let{invert:t,toast:n,unstyled:r,interacting:i,setHeights:a,visibleToasts:o,heights:s,index:c,toasts:l,expanded:u,removeToast:d,defaultRichColors:f,closeButton:p,style:m,cancelButtonStyle:h,actionButtonStyle:g,className:v=``,descriptionClassName:y=``,duration:b,position:x,gap:S,expandByDefault:C,classNames:w,icons:T,closeButtonAriaLabel:E=`Close toast`}=e,[D,O]=_.useState(null),[k,A]=_.useState(null),[j,M]=_.useState(!1),[N,P]=_.useState(!1),[F,ee]=_.useState(!1),[te,ne]=_.useState(!1),[re,ie]=_.useState(!1),[ae,oe]=_.useState(0),[se,ce]=_.useState(0),le=_.useRef(n.duration||b||Z9),ue=_.useRef(null),de=_.useRef(null),fe=c===0,pe=c+1<=o,me=n.type,he=n.dismissible!==!1,ge=n.className||``,_e=n.descriptionClassName||``,ve=_.useMemo(()=>s.findIndex(e=>e.toastId===n.id)||0,[s,n.id]),ye=_.useMemo(()=>n.closeButton??p,[n.closeButton,p]),be=_.useMemo(()=>n.duration||b||Z9,[n.duration,b]),xe=_.useRef(0),Se=_.useRef(0),Ce=_.useRef(0),we=_.useRef(null),[Te,Ee]=x.split(`-`),De=_.useMemo(()=>s.reduce((e,t,n)=>n>=ve?e:e+t.height,0),[s,ve]),Oe=Wme(),ke=n.invert||t,Ae=me===`loading`;Se.current=_.useMemo(()=>ve*S+De,[ve,De]),_.useEffect(()=>{le.current=be},[be]),_.useEffect(()=>{M(!0)},[]),_.useEffect(()=>{let e=de.current;if(e){let t=e.getBoundingClientRect().height;return ce(t),a(e=>[{toastId:n.id,height:t,position:n.position},...e]),()=>a(e=>e.filter(e=>e.toastId!==n.id))}},[a,n.id]),_.useLayoutEffect(()=>{if(!j)return;let e=de.current,t=e.style.height;e.style.height=`auto`;let r=e.getBoundingClientRect().height;e.style.height=t,ce(r),a(e=>e.find(e=>e.toastId===n.id)?e.map(e=>e.toastId===n.id?{...e,height:r}:e):[{toastId:n.id,height:r,position:n.position},...e])},[j,n.title,n.description,a,n.id,n.jsx,n.action,n.cancel]);let je=_.useCallback(()=>{P(!0),oe(Se.current),a(e=>e.filter(e=>e.toastId!==n.id)),setTimeout(()=>{d(n)},$me)},[n,d,a,Se]);_.useEffect(()=>{if(n.promise&&me===`loading`||n.duration===1/0||n.type===`loading`)return;let e;return u||i||Oe?(()=>{if(Ce.current{n.onAutoClose==null||n.onAutoClose.call(n,n),je()},le.current)),()=>clearTimeout(e)},[u,i,n,me,Oe,je]),_.useEffect(()=>{n.delete&&(je(),n.onDismiss==null||n.onDismiss.call(n,n))},[je,n.delete]);function Me(){return T?.loading?_.createElement(`div`,{className:Q9(w?.loader,n?.classNames?.loader,`sonner-loader`),"data-visible":me===`loading`},T.loading):_.createElement(Rme,{className:Q9(w?.loader,n?.classNames?.loader),visible:me===`loading`})}let Ne=n.icon||T?.[me]||Ime(me);return _.createElement(`li`,{tabIndex:0,ref:de,className:Q9(v,ge,w?.toast,n?.classNames?.toast,w?.default,w?.[me],n?.classNames?.[me]),"data-sonner-toast":``,"data-rich-colors":n.richColors??f,"data-styled":!(n.jsx||n.unstyled||r),"data-mounted":j,"data-promise":!!n.promise,"data-swiped":re,"data-removed":N,"data-visible":pe,"data-y-position":Te,"data-x-position":Ee,"data-index":c,"data-front":fe,"data-swiping":F,"data-dismissible":he,"data-type":me,"data-invert":ke,"data-swipe-out":te,"data-swipe-direction":k,"data-expanded":!!(u||C&&j),"data-testid":n.testId,style:{"--index":c,"--toasts-before":c,"--z-index":l.length-c,"--offset":`${N?ae:Se.current}px`,"--initial-height":C?`auto`:`${se}px`,...m,...n.style},onDragEnd:()=>{ee(!1),O(null),we.current=null},onPointerDown:e=>{e.button!==2&&(Ae||!he||(ue.current=new Date,oe(Se.current),e.target.setPointerCapture(e.pointerId),e.target.tagName!==`BUTTON`&&(ee(!0),we.current={x:e.clientX,y:e.clientY})))},onPointerUp:()=>{if(te||!he)return;we.current=null;let e=Number(de.current?.style.getPropertyValue(`--swipe-amount-x`).replace(`px`,``)||0),t=Number(de.current?.style.getPropertyValue(`--swipe-amount-y`).replace(`px`,``)||0),r=new Date().getTime()-ue.current?.getTime(),i=D===`x`?e:t,a=Math.abs(i)/r;if(Math.abs(i)>=Qme||a>.11){oe(Se.current),n.onDismiss==null||n.onDismiss.call(n,n),A(D===`x`?e>0?`right`:`left`:t>0?`down`:`up`),je(),ne(!0);return}var o,s;(o=de.current)==null||o.style.setProperty(`--swipe-amount-x`,`0px`),(s=de.current)==null||s.style.setProperty(`--swipe-amount-y`,`0px`),ie(!1),ee(!1),O(null)},onPointerMove:t=>{var n,r;if(!we.current||!he||window.getSelection()?.toString().length>0)return;let i=t.clientY-we.current.y,a=t.clientX-we.current.x,o=e.swipeDirections??ehe(x);!D&&(Math.abs(a)>1||Math.abs(i)>1)&&O(Math.abs(a)>Math.abs(i)?`x`:`y`);let s={x:0,y:0},c=e=>1/(1.5+Math.abs(e)/20);if(D===`y`){if(o.includes(`top`)||o.includes(`bottom`)){if(o.includes(`top`)&&i<0||o.includes(`bottom`)&&i>0)s.y=i;else{let e=i*c(i);s.y=Math.abs(e)0)s.x=a;else{let e=a*c(a);s.x=Math.abs(e)0||Math.abs(s.y)>0)&&ie(!0),(n=de.current)==null||n.style.setProperty(`--swipe-amount-x`,`${s.x}px`),(r=de.current)==null||r.style.setProperty(`--swipe-amount-y`,`${s.y}px`)}},ye&&!n.jsx&&me!==`loading`?_.createElement(`button`,{"aria-label":E,"data-disabled":Ae,"data-close-button":!0,onClick:Ae||!he?()=>{}:()=>{je(),n.onDismiss==null||n.onDismiss.call(n,n)},className:Q9(w?.closeButton,n?.classNames?.closeButton)},T?.close??Ume):null,(me||n.icon||n.promise)&&n.icon!==null&&(T?.[me]!==null||n.icon)?_.createElement(`div`,{"data-icon":``,className:Q9(w?.icon,n?.classNames?.icon)},n.promise||n.type===`loading`&&!n.icon?n.icon||Me():null,n.type===`loading`?null:Ne):null,_.createElement(`div`,{"data-content":``,className:Q9(w?.content,n?.classNames?.content)},_.createElement(`div`,{"data-title":``,className:Q9(w?.title,n?.classNames?.title)},n.jsx?n.jsx:typeof n.title==`function`?n.title():n.title),n.description?_.createElement(`div`,{"data-description":``,className:Q9(y,_e,w?.description,n?.classNames?.description)},typeof n.description==`function`?n.description():n.description):null),_.isValidElement(n.cancel)?n.cancel:n.cancel&&X9(n.cancel)?_.createElement(`button`,{"data-button":!0,"data-cancel":!0,style:n.cancelButtonStyle||h,onClick:e=>{X9(n.cancel)&&he&&(n.cancel.onClick==null||n.cancel.onClick.call(n.cancel,e),je())},className:Q9(w?.cancelButton,n?.classNames?.cancelButton)},n.cancel.label):null,_.isValidElement(n.action)?n.action:n.action&&X9(n.action)?_.createElement(`button`,{"data-button":!0,"data-action":!0,style:n.actionButtonStyle||g,onClick:e=>{X9(n.action)&&(n.action.onClick==null||n.action.onClick.call(n.action,e),!e.defaultPrevented&&je())},className:Q9(w?.actionButton,n?.classNames?.actionButton)},n.action.label):null)};function $9(){if(typeof window>`u`||typeof document>`u`)return`ltr`;let e=document.documentElement.getAttribute(`dir`);return e===`auto`||!e?window.getComputedStyle(document.documentElement).direction:e}function nhe(e,t){let n={};return[e,t].forEach((e,t)=>{let r=t===1,i=r?`--mobile-offset`:`--offset`,a=r?Yme:Jme;function o(e){[`top`,`right`,`bottom`,`left`].forEach(t=>{n[`${i}-${t}`]=typeof e==`number`?`${e}px`:e})}typeof e==`number`||typeof e==`string`?o(e):typeof e==`object`?[`top`,`right`,`bottom`,`left`].forEach(t=>{e[t]===void 0?n[`${i}-${t}`]=a:n[`${i}-${t}`]=typeof e[t]==`number`?`${e[t]}px`:e[t]}):o(a)}),n}var rhe=_.forwardRef(function(e,t){let{id:n,invert:r,position:i=`bottom-right`,hotkey:a=[`altKey`,`KeyT`],expand:o,closeButton:s,className:c,offset:l,mobileOffset:u,theme:d=`light`,richColors:f,duration:p,style:m,visibleToasts:h=qme,toastOptions:g,dir:y=$9(),gap:b=Zme,icons:x,containerAriaLabel:S=`Notifications`}=e,[C,w]=_.useState([]),T=_.useMemo(()=>n?C.filter(e=>e.toasterId===n):C.filter(e=>!e.toasterId),[C,n]),E=_.useMemo(()=>Array.from(new Set([i].concat(T.filter(e=>e.position).map(e=>e.position)))),[T,i]),[D,O]=_.useState([]),[k,A]=_.useState(!1),[j,M]=_.useState(!1),[N,P]=_.useState(d===`system`?typeof window<`u`&&window.matchMedia&&window.matchMedia(`(prefers-color-scheme: dark)`).matches?`dark`:`light`:d),F=_.useRef(null),ee=a.join(`+`).replace(/Key/g,``).replace(/Digit/g,``),te=_.useRef(null),ne=_.useRef(!1),re=_.useCallback(e=>{w(t=>(t.find(t=>t.id===e.id)?.delete||J9.dismiss(e.id),t.filter(({id:t})=>t!==e.id)))},[]);return _.useEffect(()=>J9.subscribe(e=>{if(e.dismiss){requestAnimationFrame(()=>{w(t=>t.map(t=>t.id===e.id?{...t,delete:!0}:t))});return}setTimeout(()=>{v.flushSync(()=>{w(t=>{let n=t.findIndex(t=>t.id===e.id);return n===-1?[e,...t]:[...t.slice(0,n),{...t[n],...e},...t.slice(n+1)]})})})}),[C]),_.useEffect(()=>{if(d!==`system`){P(d);return}if(d===`system`&&(window.matchMedia&&window.matchMedia(`(prefers-color-scheme: dark)`).matches?P(`dark`):P(`light`)),typeof window>`u`)return;let e=window.matchMedia(`(prefers-color-scheme: dark)`);try{e.addEventListener(`change`,({matches:e})=>{P(e?`dark`:`light`)})}catch{e.addListener(({matches:e})=>{try{P(e?`dark`:`light`)}catch(e){console.error(e)}})}},[d]),_.useEffect(()=>{C.length<=1&&A(!1)},[C]),_.useEffect(()=>{let e=e=>{if(a.every(t=>e[t]||e.code===t)){var t;A(!0),(t=F.current)==null||t.focus()}e.code===`Escape`&&(document.activeElement===F.current||F.current?.contains(document.activeElement))&&A(!1)};return document.addEventListener(`keydown`,e),()=>document.removeEventListener(`keydown`,e)},[a]),_.useEffect(()=>{if(F.current)return()=>{te.current&&(te.current.focus({preventScroll:!0}),te.current=null,ne.current=!1)}},[F.current]),_.createElement(`section`,{ref:t,"aria-label":`${S} ${ee}`,tabIndex:-1,"aria-live":`polite`,"aria-relevant":`additions text`,"aria-atomic":`false`,suppressHydrationWarning:!0},E.map((t,n)=>{let[i,a]=t.split(`-`);return T.length?_.createElement(`ol`,{key:t,dir:y===`auto`?$9():y,tabIndex:-1,ref:F,className:c,"data-sonner-toaster":!0,"data-sonner-theme":N,"data-y-position":i,"data-x-position":a,style:{"--front-toast-height":`${D[0]?.height||0}px`,"--width":`${Xme}px`,"--gap":`${b}px`,...m,...nhe(l,u)},onBlur:e=>{ne.current&&!e.currentTarget.contains(e.relatedTarget)&&(ne.current=!1,te.current&&=(te.current.focus({preventScroll:!0}),null))},onFocus:e=>{e.target instanceof HTMLElement&&e.target.dataset.dismissible===`false`||ne.current||(ne.current=!0,te.current=e.relatedTarget)},onMouseEnter:()=>A(!0),onMouseMove:()=>A(!0),onMouseLeave:()=>{j||A(!1)},onDragEnd:()=>A(!1),onPointerDown:e=>{e.target instanceof HTMLElement&&e.target.dataset.dismissible===`false`||M(!0)},onPointerUp:()=>M(!1)},T.filter(e=>!e.position&&n===0||e.position===t).map((n,i)=>_.createElement(the,{key:n.id,icons:x,index:i,toast:n,defaultRichColors:f,duration:g?.duration??p,className:g?.className,descriptionClassName:g?.descriptionClassName,invert:r,visibleToasts:h,closeButton:g?.closeButton??s,interacting:j,position:t,style:g?.style,unstyled:g?.unstyled,classNames:g?.classNames,cancelButtonStyle:g?.cancelButtonStyle,actionButtonStyle:g?.actionButtonStyle,closeButtonAriaLabel:g?.closeButtonAriaLabel,removeToast:re,toasts:T.filter(e=>e.position==n.position),heights:D.filter(e=>e.position==n.position),setHeights:O,expandByDefault:o,gap:b,expanded:k,swipeDirections:e.swipeDirections}))):null}))}),ihe=({...e})=>{let{theme:t=`system`}=(0,_.useContext)(cr);return(0,I.jsx)(rhe,{theme:t,className:`toaster group`,icons:{success:(0,I.jsx)(Xs,{className:`size-4`}),info:(0,I.jsx)(nc,{className:`size-4`}),warning:(0,I.jsx)(gc,{className:`size-4`}),error:(0,I.jsx)(fc,{className:`size-4`}),loading:(0,I.jsx)(ic,{className:`size-4 animate-spin`})},toastOptions:{classNames:{toast:`bg-background text-foreground border-border`}},style:{"--normal-bg":`hsl(var(--background))`,"--normal-text":`hsl(var(--foreground))`,"--normal-border":`hsl(var(--border))`,"--border-radius":`var(--radius)`,"--toast-icon-margin-start":`0`,"--toast-icon-margin-end":`12px`},...e})};function ahe(){(0,_.useEffect)(()=>{if(z.IsDemo){let e,t=setTimeout(()=>{e=Y9.warning((0,I.jsxs)(`div`,{className:`flex flex-col gap-2 w-full`,children:[(0,I.jsx)(`div`,{className:`font-semibold break-words`,children:`Microsoft Zero Trust Assessment Demo Report`}),(0,I.jsxs)(`div`,{className:`text-sm text-muted-foreground flex flex-col gap-1 break-words`,children:[(0,I.jsxs)(`div`,{className:`break-words`,children:[`This is a demo of the report generated by the`,` `,(0,I.jsx)(`a`,{href:`https://aka.ms/ZeroTrust/Assessment`,target:`_blank`,rel:`noopener noreferrer`,className:`underline hover:text-primary break-all`,onClick:e=>e.stopPropagation(),children:`Zero Trust Assessment`}),` `,`tool.`]}),(0,I.jsxs)(`div`,{className:`break-words`,children:[`The latest version of this demo report is available at`,` `,(0,I.jsx)(`a`,{href:`https://aka.ms/ZeroTrust/Demo`,target:`_blank`,rel:`noopener noreferrer`,className:`underline hover:text-primary break-all`,onClick:e=>e.stopPropagation(),children:`aka.ms/ZeroTrust/Demo`}),`.`]})]})]}),{duration:1/0,closeButton:!0,style:{minWidth:`min(600px, calc(100vw - 32px))`,maxWidth:`calc(100vw - 32px)`},className:`break-words`});let t=n=>{let r=n.target;r.tagName===`A`&&r.closest(`[data-sonner-toast]`)||(Y9.dismiss(e),document.removeEventListener(`click`,t))};setTimeout(()=>{document.addEventListener(`click`,t)},100)},500);return()=>{clearTimeout(t),e&&Y9.dismiss(e)}}},[])}function ohe(){return ahe(),(0,I.jsxs)(lr,{defaultTheme:`system`,children:[(0,I.jsx)(Yn,{router:Pme}),(0,I.jsx)(ihe,{position:`top-center`,richColors:!0})]})}y.createRoot(document.getElementById(`root`)).render((0,I.jsx)(_.StrictMode,{children:(0,I.jsx)(ohe,{})})); +
diff --git a/src/report/demo-report-data.json b/src/report/demo-report-data.json new file mode 100644 index 0000000000..efae44adf4 --- /dev/null +++ b/src/report/demo-report-data.json @@ -0,0 +1,766 @@ +{ + "ExecutedAt": "2025-10-21T08:07:56.502298+11:00", + "TenantId": "0817c655-a853-4d8f-9723-3a333b5b9235", + "TenantName": "Pora Inc.", + "Domain": "elapora.com", + "Account": "merill@elapora.com", + "CurrentVersion": "0.18.0", + "LatestVersion": "0.18.0", + "TestResultSummary": { + "IdentityPassed": 0, + "IdentityTotal": 0, + "DevicesPassed": 1, + "DevicesTotal": 1, + "DataPassed": 0, + "DataTotal": 0 + }, + "Tests": [ + { + "TestId": "24546", + "TestResult": "\nWindows Automatic Enrollment is enabled.\n\n\n## Windows Automatic Enrollment\n\n| Policy Name | User Scope |\n| :---------- | :--------- |\n| [Microsoft Intune](https://intune.microsoft.com/#view/Microsoft_AAD_IAM/MdmConfiguration.ReactView/appId/0000000a-0000-0000-c000-000000000000/appName/Microsoft%20Intune) | ✅ Specific Groups |\n\n\n\n", + "TestDescription": "If Windows automatic enrollment isn't enabled, unmanaged devices can become an entry point for attackers. Threat actors might use these devices to access corporate data, bypass compliance policies, and introduce vulnerabilities into the environment. Devices joined to Microsoft Entra without Intune enrollment create gaps in visibility and control. These unmanaged endpoints can expose weaknesses in the operating system or misconfigured applications that attackers can exploit.\n\nEnforcing automatic enrollment ensures Windows devices are managed from the start, enabling consistent policy enforcement and visibility into compliance. This supports Zero Trust by ensuring all devices are verified, monitored, and governed by security controls.\n\n**Remediation action**\n\nEnable automatic enrollment for Windows devices using Intune and Microsoft Entra to ensure all domain-joined or Entra-joined devices are managed: \n- [Enable Windows automatic enrollment](https://learn.microsoft.com/intune/intune-service/enrollment/windows-enroll?wt.mc_id=zerotrustrecommendations_automation_content_cnl_csasci#enable-windows-automatic-enrollment)\n\nFor more information, see: \n- [Deployment guide - Enrollment for Windows](https://learn.microsoft.com/intune/intune-service/fundamentals/deployment-guide-enroll?tabs=work-profile%2Ccorporate-owned-apple%2Cautomatic-enrollment&wt.mc_id=zerotrustrecommendations_automation_content_cnl_csasci#enrollment-for-windows)\n", + "TestSkipped": "", + "TestTitle": "Windows automatic device enrollment is enforced to eliminate risks from unmanaged endpoints", + "TestStatus": "Passed", + "TestTags": null, + "TestRisk": "High", + "TestPillar": "Devices", + "TestImpact": "Low", + "TestSfiPillar": "Protect tenants and isolate production systems", + "TestCategory": "Devices", + "TestImplementationCost": "Low", + "SkippedReason": null, + "TestAppliesTo": null + } + ], + "TenantInfo": { + "AgentOwnershipDistribution": { + "ownerAndSponsor": 2, + "ownerOnly": 1, + "sponsorOnly": 1, + "neither": 1, + "skippedCount": 1, + "agents": { + "ownerAndSponsor": [ + { "displayName": "Research assistant", "accountEnabled": true }, + { "displayName": "Support copilot", "accountEnabled": true } + ], + "ownerOnly": [ + { "displayName": "Red-team agent", "accountEnabled": false } + ], + "sponsorOnly": [ + { "displayName": "Procurement assistant", "accountEnabled": true } + ], + "neither": [ + { "displayName": "Legacy automation agent", "accountEnabled": false } + ] + } + }, + "ConfigWindowsEnrollment": [ + { + "Type": "MDM", + "PolicyName": "Microsoft Intune", + "AppliesTo": "Selected", + "Groups": "All active users" + }, + { + "Type": "MDM", + "PolicyName": "Microsoft Intune Enrollment", + "AppliesTo": "None", + "Groups": "Not Applicable" + } + ], + "ConfigDeviceCompliancePolicies": [ + { + "Platform": "iOS/iPadOS", + "PolicyName": "My iOS policy", + "DefenderForEndPoint": "Clear", + "MinOsVersion": "4", + "MaxOsVersion": "5", + "RequirePswd": true, + "MinPswdLength": 5, + "PasswordType": "Alphanumeric", + "PswdExpiryDays": 34, + "CountOfPreviousPswdToBlock": 5, + "RequireEncryption": "Not Applicable", + "RootedJailbrokenDevices": "Blocked", + "MaxDeviceThreatLevel": "Secured", + "RequireFirewall": "Not Applicable", + "MaxInactivityMin": 0, + "ActionForNoncomplianceDaysPushNotification": 2.0, + "ActionForNoncomplianceDaysSendEmail": 2.0, + "ActionForNoncomplianceDaysRemoteLock": 2.0, + "ActionForNoncomplianceDaysBlock": 1.0, + "ActionForNoncomplianceDaysRetire": 3.0, + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + }, + { + "Platform": "Android Enterprise (Personal)", + "PolicyName": "My android personally-owned", + "DefenderForEndPoint": "", + "MinOsVersion": "3", + "MaxOsVersion": "4", + "RequirePswd": "Yes", + "MinPswdLength": 5, + "PasswordType": null, + "PswdExpiryDays": 200, + "CountOfPreviousPswdToBlock": 12, + "RequireEncryption": "Yes", + "RootedJailbrokenDevices": "Blocked", + "MaxDeviceThreatLevel": "Low", + "RequireFirewall": "Not Applicable", + "MaxInactivityMin": 5, + "ActionForNoncomplianceDaysPushNotification": "", + "ActionForNoncomplianceDaysSendEmail": "", + "ActionForNoncomplianceDaysRemoteLock": 2.0, + "ActionForNoncomplianceDaysBlock": 2.0, + "ActionForNoncomplianceDaysRetire": "Immediately", + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + }, + { + "Platform": "Windows 10 and later", + "PolicyName": "Min Windows Compliance", + "DefenderForEndPoint": "", + "MinOsVersion": null, + "MaxOsVersion": null, + "RequirePswd": "", + "MinPswdLength": null, + "PasswordType": null, + "PswdExpiryDays": null, + "CountOfPreviousPswdToBlock": null, + "RequireEncryption": "", + "RootedJailbrokenDevices": "Not Applicable", + "MaxDeviceThreatLevel": "Not Applicable", + "RequireFirewall": "", + "MaxInactivityMin": null, + "ActionForNoncomplianceDaysPushNotification": "", + "ActionForNoncomplianceDaysSendEmail": "", + "ActionForNoncomplianceDaysRemoteLock": "", + "ActionForNoncomplianceDaysBlock": "Immediately", + "ActionForNoncomplianceDaysRetire": "", + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + }, + { + "Platform": "macOS", + "PolicyName": "My macOS policy", + "DefenderForEndPoint": "", + "MinOsVersion": "1", + "MaxOsVersion": "2", + "RequirePswd": "Yes", + "MinPswdLength": 6, + "PasswordType": null, + "PswdExpiryDays": null, + "CountOfPreviousPswdToBlock": null, + "RequireEncryption": "Yes", + "RootedJailbrokenDevices": "Not Applicable", + "MaxDeviceThreatLevel": "", + "RequireFirewall": "Yes", + "MaxInactivityMin": 15, + "ActionForNoncomplianceDaysPushNotification": "", + "ActionForNoncomplianceDaysSendEmail": "", + "ActionForNoncomplianceDaysRemoteLock": 4.0, + "ActionForNoncomplianceDaysBlock": "Immediately", + "ActionForNoncomplianceDaysRetire": 6.0, + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + }, + { + "Platform": "Windows 10 and later", + "PolicyName": "My Windows policy", + "DefenderForEndPoint": "High", + "MinOsVersion": null, + "MaxOsVersion": null, + "RequirePswd": "Yes", + "MinPswdLength": 5, + "PasswordType": null, + "PswdExpiryDays": 22, + "CountOfPreviousPswdToBlock": 6, + "RequireEncryption": "Yes", + "RootedJailbrokenDevices": "Not Applicable", + "MaxDeviceThreatLevel": "Not Applicable", + "RequireFirewall": "Yes", + "MaxInactivityMin": 1, + "ActionForNoncomplianceDaysPushNotification": "", + "ActionForNoncomplianceDaysSendEmail": "", + "ActionForNoncomplianceDaysRemoteLock": "", + "ActionForNoncomplianceDaysBlock": "Immediately", + "ActionForNoncomplianceDaysRetire": "Immediately", + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + }, + { + "Platform": "Android device administrator", + "PolicyName": "My android device policy", + "DefenderForEndPoint": "Clear", + "MinOsVersion": "2", + "MaxOsVersion": "3", + "RequirePswd": "Yes", + "MinPswdLength": null, + "PasswordType": null, + "PswdExpiryDays": null, + "CountOfPreviousPswdToBlock": null, + "RequireEncryption": "Yes", + "RootedJailbrokenDevices": "Blocked", + "MaxDeviceThreatLevel": "Low", + "RequireFirewall": "Not Applicable", + "MaxInactivityMin": 1, + "ActionForNoncomplianceDaysPushNotification": 12.0, + "ActionForNoncomplianceDaysSendEmail": "", + "ActionForNoncomplianceDaysRemoteLock": "Immediately", + "ActionForNoncomplianceDaysBlock": "Immediately", + "ActionForNoncomplianceDaysRetire": "Immediately", + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + }, + { + "Platform": "Android Enterprise (Corp)", + "PolicyName": "My android enterprise policy", + "DefenderForEndPoint": "Low", + "MinOsVersion": null, + "MaxOsVersion": null, + "RequirePswd": "Yes", + "MinPswdLength": 4, + "PasswordType": null, + "PswdExpiryDays": 200, + "CountOfPreviousPswdToBlock": null, + "RequireEncryption": "Yes", + "RootedJailbrokenDevices": "", + "MaxDeviceThreatLevel": "", + "RequireFirewall": "Not Applicable", + "MaxInactivityMin": 15, + "ActionForNoncomplianceDaysPushNotification": "", + "ActionForNoncomplianceDaysSendEmail": "", + "ActionForNoncomplianceDaysRemoteLock": "", + "ActionForNoncomplianceDaysBlock": "Immediately", + "ActionForNoncomplianceDaysRetire": "", + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + }, + { + "Platform": "Windows 8.1 and later", + "PolicyName": "My Windows 8 policy", + "DefenderForEndPoint": "Not Applicable", + "MinOsVersion": "1.1", + "MaxOsVersion": "2.1", + "RequirePswd": "Yes", + "MinPswdLength": null, + "PasswordType": null, + "PswdExpiryDays": 22, + "CountOfPreviousPswdToBlock": 10, + "RequireEncryption": "Yes", + "RootedJailbrokenDevices": "Not Applicable", + "MaxDeviceThreatLevel": "Not Applicable", + "RequireFirewall": "Not Applicable", + "MaxInactivityMin": 240, + "ActionForNoncomplianceDaysPushNotification": "", + "ActionForNoncomplianceDaysSendEmail": "", + "ActionForNoncomplianceDaysRemoteLock": "", + "ActionForNoncomplianceDaysBlock": "Immediately", + "ActionForNoncomplianceDaysRetire": 4.0, + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + }, + { + "Platform": "Android (AOSP)", + "PolicyName": "My android aosp policy", + "DefenderForEndPoint": "Not Applicable", + "MinOsVersion": "1", + "MaxOsVersion": "2", + "RequirePswd": "Yes", + "MinPswdLength": 16, + "PasswordType": null, + "PswdExpiryDays": "Not Applicable", + "CountOfPreviousPswdToBlock": "Not Applicable", + "RequireEncryption": "Yes", + "RootedJailbrokenDevices": "Blocked", + "MaxDeviceThreatLevel": "Not Applicable", + "RequireFirewall": "Not Applicable", + "MaxInactivityMin": 480, + "ActionForNoncomplianceDaysPushNotification": "", + "ActionForNoncomplianceDaysSendEmail": "", + "ActionForNoncomplianceDaysRemoteLock": "Immediately", + "ActionForNoncomplianceDaysBlock": "Immediately", + "ActionForNoncomplianceDaysRetire": "", + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + } + ], + "ConfigDeviceAppProtectionPolicies": [ + { + "Platform": "Android", + "Name": "Android Policy", + "AppsPublic": "Cortana, Microsoft Dynamics 365 for phones, Field Service (Dynamics 365), Dynamics 365 Sales, Microsoft Dynamics 365 for tablets, Microsoft Invoicing, Microsoft Edge, Power Automate, Azure Information Protection, Microsoft Launcher, Microsoft Lists, Microsoft Kaizala, Microsoft Power Apps, Microsoft Excel, Skype for Business, Microsoft 365 (Office) (China), Microsoft Office (HL), Microsoft 365 Copilot, Microsoft Lens, Microsoft OneNote, Microsoft Outlook, Microsoft PowerPoint, Microsoft Word, Microsoft Planner, Microsoft Power BI, Microsoft Defender Endpoint, Microsoft SharePoint, Microsoft OneDrive, Microsoft Teams, Microsoft To-Do, Microsoft Whiteboard, Work Folders, Microsoft 365 Admin, Viva Engage, Microsoft StaffHub", + "AppsCustom": "com.microsoft.d365.fs.mobile, com.microsoft.ramobile, com.microsoft.stream, com.oracle.java.pdfviewer", + "BackupOrgDataToICloudOrGoogle": "Allow", + "SendOrgDataToOtherApps": "Policy managed apps", + "AppsToExempt": "Trello:app:trello", + "SaveCopiesOfOrgData": "Block", + "AllowUserToSaveCopiesToSelectedServices": "Box, Local storage, OneDrive for Business, SharePoint, Photo library", + "DataProtectionTransferTelecommunicationDataTo": "A specific dialer app", + "DataProtectionReceiveDataFromOtherApps": "Policy managed apps", + "DataProtectionOpenDataIntoOrgDocuments": "", + "DataProtectionAllowUsersToOpenDataFromSelectedServices": "", + "DataProtectionRestrictCutCopyBetweenOtherApps": "", + "DataProtectionCutCopyCharacterLimitForAnyApp": "", + "DataProtectionEncryptOrgData": "", + "DataProtectionSyncPolicyManagedAppDataWithNativeApps": "", + "DataProtectionPrintingOrgData": "", + "DataProtectionRestrictWebContentTransferWithOtherApps": "", + "DataProtectionOrgDataNotifications": "", + "ConditionalLaunchAppMaxPinAttempts": "", + "ConditionalLaunchAppOfflineGracePeriodBlockAccess": "", + "ConditionalLaunchAppOfflineGracePeriodWipeData": "", + "ConditionalLaunchAppDisabedAccount": "", + "ConditionalLaunchAppMinAppVersion": "", + "ConditionalLaunchDeviceRootedJailbrokenDevices": "Block access", + "ConditionalLaunchDevicePrimaryMtdService": "", + "ConditionalLaunchDeviceMaxAllowedDeviceThreatLevel": "", + "ConditionalLaunchDeviceMinOsVersion": "", + "ConditionalLaunchDeviceMaxOsVersion": "", + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + }, + { + "Platform": "iOS/iPadOS", + "Name": "iOS Policy", + "AppsPublic": "Adobe Acrobat Reader, Cortana, Microsoft Dynamics 365, Microsoft Invoicing, Microsoft Dynamics 365 for phones, Field Service (Dynamics 365), Dynamics 365 Sales, Skype for Business, Microsoft Kaizala, Microsoft Power Apps, Microsoft Edge, Microsoft 365 Admin, Microsoft Excel, Microsoft Outlook, Microsoft PowerPoint, Microsoft Word, Microsoft Lens, Microsoft 365 Copilot, Microsoft OneNote, Microsoft Planner, Microsoft Power BI, Power Automate, Azure Information Protection, Microsoft Defender Endpoint, Microsoft SharePoint, Microsoft StaffHub, Microsoft OneDrive, Microsoft Teams, Microsoft Lists, Microsoft To-Do, Microsoft Whiteboard, Work Folders, Vera for Intune, Viva Engage", + "AppsCustom": "com.microsoft.d365.fs.mobile, com.microsoft.ramobile, com.microsoft.stream, com.microsoft.visio, my.merill.net", + "BackupOrgDataToICloudOrGoogle": "Block", + "SendOrgDataToOtherApps": "Policy managed apps with OS sharing", + "AppsToExempt": "", + "SaveCopiesOfOrgData": "Allow", + "AllowUserToSaveCopiesToSelectedServices": "Box, Local storage, OneDrive for Business, SharePoint, Photo library", + "DataProtectionTransferTelecommunicationDataTo": "A specific dialer app", + "DataProtectionReceiveDataFromOtherApps": "None", + "DataProtectionOpenDataIntoOrgDocuments": "", + "DataProtectionAllowUsersToOpenDataFromSelectedServices": "", + "DataProtectionRestrictCutCopyBetweenOtherApps": "", + "DataProtectionCutCopyCharacterLimitForAnyApp": "", + "DataProtectionEncryptOrgData": "", + "DataProtectionSyncPolicyManagedAppDataWithNativeApps": "", + "DataProtectionPrintingOrgData": "", + "DataProtectionRestrictWebContentTransferWithOtherApps": "", + "DataProtectionOrgDataNotifications": "", + "ConditionalLaunchAppMaxPinAttempts": "", + "ConditionalLaunchAppOfflineGracePeriodBlockAccess": "", + "ConditionalLaunchAppOfflineGracePeriodWipeData": "", + "ConditionalLaunchAppDisabedAccount": "", + "ConditionalLaunchAppMinAppVersion": "", + "ConditionalLaunchDeviceRootedJailbrokenDevices": "Wipe data", + "ConditionalLaunchDevicePrimaryMtdService": "", + "ConditionalLaunchDeviceMaxAllowedDeviceThreatLevel": "", + "ConditionalLaunchDeviceMinOsVersion": "", + "ConditionalLaunchDeviceMaxOsVersion": "", + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + }, + { + "Platform": "Windows", + "Name": "Windows Info Protect", + "AppsPublic": "", + "AppsCustom": "", + "BackupOrgDataToICloudOrGoogle": "", + "SendOrgDataToOtherApps": "", + "AppsToExempt": "", + "SaveCopiesOfOrgData": "", + "AllowUserToSaveCopiesToSelectedServices": "", + "DataProtectionTransferTelecommunicationDataTo": null, + "DataProtectionReceiveDataFromOtherApps": null, + "DataProtectionOpenDataIntoOrgDocuments": "", + "DataProtectionAllowUsersToOpenDataFromSelectedServices": "", + "DataProtectionRestrictCutCopyBetweenOtherApps": "", + "DataProtectionCutCopyCharacterLimitForAnyApp": "", + "DataProtectionEncryptOrgData": "", + "DataProtectionSyncPolicyManagedAppDataWithNativeApps": "", + "DataProtectionPrintingOrgData": "", + "DataProtectionRestrictWebContentTransferWithOtherApps": "", + "DataProtectionOrgDataNotifications": "", + "ConditionalLaunchAppMaxPinAttempts": "", + "ConditionalLaunchAppOfflineGracePeriodBlockAccess": "", + "ConditionalLaunchAppOfflineGracePeriodWipeData": "", + "ConditionalLaunchAppDisabedAccount": "", + "ConditionalLaunchAppMinAppVersion": "", + "ConditionalLaunchDeviceRootedJailbrokenDevices": null, + "ConditionalLaunchDevicePrimaryMtdService": "", + "ConditionalLaunchDeviceMaxAllowedDeviceThreatLevel": "", + "ConditionalLaunchDeviceMinOsVersion": "", + "ConditionalLaunchDeviceMaxOsVersion": "", + "Scope": "Default", + "IncludedGroups": "", + "ExcludedGroups": "" + } + ], + "ConfigDeviceEnrollmentRestriction": [ + { + "Platform": "iOS/iPadOS", + "Priority": 2, + "Name": "iOS Restriction 2", + "MDM": "Blocked", + "MinVer": null, + "MaxVer": null, + "PersonallyOwned": "Allowed", + "BlockedManufacturers": null, + "Scope": "Default", + "AssignedTo": "All users" + }, + { + "Platform": "Android Enterprise (work profile)", + "Priority": 1, + "Name": "Andy Penn", + "MDM": "Allowed", + "MinVer": "5.0", + "MaxVer": "5.1.1", + "PersonallyOwned": "Allowed", + "BlockedManufacturers": "Samsung", + "Scope": "Biscope, Default", + "AssignedTo": "aad-conditional-access-allow-legacy-auth" + }, + { + "Platform": "Android device administrator", + "Priority": 1, + "Name": "Andy Penn", + "MDM": "Allowed", + "MinVer": "5.0", + "MaxVer": "6.0", + "PersonallyOwned": "Allowed", + "BlockedManufacturers": "Samsung", + "Scope": "Biscope, Default", + "AssignedTo": "aad-conditional-access-allow-legacy-auth" + }, + { + "Platform": "iOS/iPadOS", + "Priority": 1, + "Name": "iOS Restriction", + "MDM": "Allowed", + "MinVer": "9.0", + "MaxVer": "10.0", + "PersonallyOwned": "Blocked", + "BlockedManufacturers": null, + "Scope": "Default", + "AssignedTo": "aad-conditional-access-excluded, Avanade Users" + }, + { + "Platform": "Windows", + "Priority": 1, + "Name": "Win1", + "MDM": "Allowed", + "MinVer": null, + "MaxVer": null, + "PersonallyOwned": "Allowed", + "BlockedManufacturers": null, + "Scope": "Biscope, Default", + "AssignedTo": "All users" + }, + { + "Platform": "iOS/iPadOS", + "Priority": "Default", + "Name": "All users", + "MDM": "Allowed", + "MinVer": "9.0", + "MaxVer": "10.0", + "PersonallyOwned": "Blocked", + "BlockedManufacturers": null, + "Scope": "", + "AssignedTo": "All devices" + }, + { + "Platform": "Windows", + "Priority": "Default", + "Name": "All users", + "MDM": "Allowed", + "MinVer": "10.0", + "MaxVer": "11.0", + "PersonallyOwned": "Blocked", + "BlockedManufacturers": null, + "Scope": "", + "AssignedTo": "All devices" + }, + { + "Platform": "Android device administrator", + "Priority": "Default", + "Name": "All users", + "MDM": "Allowed", + "MinVer": "7.0", + "MaxVer": "8.0", + "PersonallyOwned": "Blocked", + "BlockedManufacturers": "Samsung", + "Scope": "", + "AssignedTo": "All devices" + }, + { + "Platform": "macOS", + "Priority": "Default", + "Name": "All users", + "MDM": "Allowed", + "MinVer": null, + "MaxVer": null, + "PersonallyOwned": "Blocked", + "BlockedManufacturers": null, + "Scope": "", + "AssignedTo": "All devices" + }, + { + "Platform": "Android Enterprise (work profile)", + "Priority": "Default", + "Name": "All users", + "MDM": "Allowed", + "MinVer": "5.0", + "MaxVer": "6.0", + "PersonallyOwned": "Blocked", + "BlockedManufacturers": "Samsung", + "Scope": "", + "AssignedTo": "All devices" + } + ], + "DeviceOverview": { + "DeviceSummary": null, + "DesktopDevicesSummary": { + "nodes": [ + { + "source": "Desktop devices", + "target": "Windows", + "value": 11.0 + }, + { + "source": "Desktop devices", + "target": "macOS", + "value": 2.0 + }, + { + "source": "Windows", + "target": "Entra joined", + "value": 8.0 + }, + { + "source": "Windows", + "target": "Entra hybrid joined", + "value": 0 + }, + { + "source": "Windows", + "target": "Entra registered", + "value": 3.0 + }, + { + "source": "macOS", + "target": "Compliant", + "value": 1.0 + }, + { + "source": "macOS", + "target": "Non-compliant", + "value": 1.0 + }, + { + "source": "macOS", + "target": "Unmanaged", + "value": null + }, + { + "source": "Entra joined", + "target": "Compliant", + "value": null + }, + { + "source": "Entra joined", + "target": "Non-compliant", + "value": 4.0 + }, + { + "source": "Entra joined", + "target": "Unmanaged", + "value": null + }, + { + "source": "Entra hybrid joined", + "target": "Compliant", + "value": null + }, + { + "source": "Entra hybrid joined", + "target": "Non-compliant", + "value": null + }, + { + "source": "Entra hybrid joined", + "target": "Unmanaged", + "value": null + }, + { + "source": "Entra registered", + "target": "Compliant", + "value": null + }, + { + "source": "Entra registered", + "target": "Non-compliant", + "value": null + }, + { + "source": "Entra registered", + "target": "Unmanaged", + "value": null + } + ], + "entrahybridjoined": 0, + "description": "Desktop devices (Windows and macOS) by join type and compliance status.", + "totalDevices": 13.0, + "entrajoined": 9.0, + "entrareigstered": 4.0 + }, + "MobileSummary": { + "nodes": [ + { + "source": "Mobile devices", + "target": "Android", + "value": 40 + }, + { + "source": "Mobile devices", + "target": "iOS", + "value": 53 + }, + { + "source": "Android", + "target": "Android (Company)", + "value": 20 + }, + { + "source": "Android", + "target": "Android (Personal)", + "value": 20 + }, + { + "source": "iOS", + "target": "iOS (Company)", + "value": 28 + }, + { + "source": "iOS", + "target": "iOS (Personal)", + "value": 25 + }, + { + "source": "Android (Company)", + "target": "Compliant", + "value": 15 + }, + { + "source": "Android (Company)", + "target": "Non-compliant", + "value": 5 + }, + { + "source": "Android (Personal)", + "target": "Compliant", + "value": 8 + }, + { + "source": "Android (Personal)", + "target": "Non-compliant", + "value": 12 + }, + { + "source": "iOS (Company)", + "target": "Compliant", + "value": 25 + }, + { + "source": "iOS (Company)", + "target": "Non-compliant", + "value": 3 + }, + { + "source": "iOS (Personal)", + "target": "Compliant", + "value": 18 + }, + { + "source": "iOS (Personal)", + "target": "Non-compliant", + "value": 7 + } + ], + "description": "Mobile devices by compliance status.", + "totalDevices": 93 + }, + "ManagedDevices": { + "@odata.context": "https://graph.microsoft.com/beta/$metadata#microsoft.graph.managedDeviceOverview", + "id": "4a197fb2-79de-4f46-89e3-bd318ca08984", + "enrolledDeviceCount": 0, + "mdmEnrolledCount": 0, + "dualEnrolledDeviceCount": 0, + "managedDeviceModelsAndManufacturers": null, + "lastModifiedDateTime": "2025-10-20T21:07:52.4781572Z", + "deviceOperatingSystemSummary": { + "androidCount": 300, + "iosCount": 340, + "macOSCount": 10, + "windowsMobileCount": 0, + "windowsCount": 1000, + "unknownCount": 0, + "androidDedicatedCount": 0, + "androidDeviceAdminCount": 0, + "androidFullyManagedCount": 0, + "androidWorkProfileCount": 0, + "androidCorporateWorkProfileCount": 0, + "configMgrDeviceCount": 0, + "aospUserlessCount": 0, + "aospUserAssociatedCount": 0, + "linuxCount": 20, + "chromeOSCount": 0 + }, + "deviceExchangeAccessStateSummary": { + "allowedDeviceCount": 0, + "blockedDeviceCount": 0, + "quarantinedDeviceCount": 0, + "unknownDeviceCount": 0, + "unavailableDeviceCount": 0 + }, + "desktopCount": 20, + "mobileCount": 30, + "totalCount": 50 + }, + "DeviceCompliance": { + "@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/deviceCompliancePolicyDeviceStateSummary/$entity", + "inGracePeriodCount": 0, + "configManagerCount": 0, + "id": "afaac8a4-5f74-40f5-a213-51af45bedc36", + "unknownDeviceCount": 0, + "notApplicableDeviceCount": 0, + "compliantDeviceCount": 10, + "remediatedDeviceCount": 0, + "nonCompliantDeviceCount": 10, + "errorDeviceCount": 0, + "conflictDeviceCount": 0 + }, + "DeviceOwnership": { + "corporateCount": 20, + "personalCount": 10 + } + }, + "TenantOverview": { + "UserCount": 71000, + "GuestCount": 12, + "GroupCount": 1890, + "ApplicationCount": 120, + "DeviceCount": 20, + "ManagedDeviceCount": 0 + } + }, + "EndOfJson": "EndOfJson" +} diff --git a/src/report/package-lock.json b/src/report/package-lock.json index fae03bf891..c118d49d40 100644 --- a/src/report/package-lock.json +++ b/src/report/package-lock.json @@ -46,7 +46,7 @@ "@types/react-dom": "^18.3.0", "@typescript-eslint/eslint-plugin": "^7.15.0", "@typescript-eslint/parser": "^7.15.0", - "@vitejs/plugin-react": "^4.7.0", + "@vitejs/plugin-react": "^6.0.3", "autoprefixer": "^10.4.19", "baseline-browser-mapping": "^2.9.19", "eslint": "^8.57.0", @@ -55,8 +55,8 @@ "postcss": "^8.5.15", "tailwindcss": "^3.4.7", "typescript": "^5.2.2", - "vite": "^7.3.2", - "vite-plugin-singlefile": "^2.3.0" + "vite": "^8.1.0", + "vite-plugin-singlefile": "^2.3.3" } }, "node_modules/@alloc/quick-lru": { @@ -71,757 +71,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@babel/code-frame": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", - "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.27.1", - "js-tokens": "^4.0.0", - "picocolors": "^1.1.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", - "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", - "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.27.1", - "@babel/generator": "^7.28.5", - "@babel/helper-compilation-targets": "^7.27.2", - "@babel/helper-module-transforms": "^7.28.3", - "@babel/helpers": "^7.28.4", - "@babel/parser": "^7.28.5", - "@babel/template": "^7.27.2", - "@babel/traverse": "^7.28.5", - "@babel/types": "^7.28.5", - "@jridgewell/remapping": "^2.3.5", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/generator": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", - "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.28.5", - "@babel/types": "^7.28.5", - "@jridgewell/gen-mapping": "^0.3.12", - "@jridgewell/trace-mapping": "^0.3.28", - "jsesc": "^3.0.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.27.2", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", - "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.27.2", - "@babel/helper-validator-option": "^7.27.1", - "browserslist": "^4.24.0", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-globals": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", - "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", - "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.27.1", - "@babel/types": "^7.27.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.28.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", - "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.27.1", - "@babel/helper-validator-identifier": "^7.27.1", - "@babel/traverse": "^7.28.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", - "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", - "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", - "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", - "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.28.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", - "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.27.2", - "@babel/types": "^7.28.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", - "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.28.5" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", - "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", - "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.28.4", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", - "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.27.2", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", - "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.27.1", - "@babel/parser": "^7.27.2", - "@babel/types": "^7.27.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", - "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.27.1", - "@babel/generator": "^7.28.5", - "@babel/helper-globals": "^7.28.0", - "@babel/parser": "^7.28.5", - "@babel/template": "^7.27.2", - "@babel/types": "^7.28.5", - "debug": "^4.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", - "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.27.1", - "@babel/helper-validator-identifier": "^7.28.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", - "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", - "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", - "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", - "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", - "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", - "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", - "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", - "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", - "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", - "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", - "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", - "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", - "cpu": [ - "loong64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", - "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", - "cpu": [ - "mips64el" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", - "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", - "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", - "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", - "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/netbsd-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", - "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", - "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/openbsd-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", - "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", - "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/openharmony-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", - "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openharmony" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", - "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", - "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", - "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", - "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", - "cpu": [ - "x64" - ], - "dev": true, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", "license": "MIT", - "optional": true, - "os": [ - "win32" - ], "engines": { - "node": ">=18" + "node": ">=6.9.0" } }, "node_modules/@eslint-community/eslint-utils": { @@ -1021,17 +277,6 @@ "@jridgewell/trace-mapping": "^0.3.24" } }, - "node_modules/@jridgewell/remapping": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", - "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - } - }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", @@ -1189,6 +434,16 @@ "node": ">= 8" } }, + "node_modules/@oxc-project/types": { + "version": "0.146.0", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@oxc-project/types/-/types-0.146.0.tgz", + "integrity": "sha1-1Xolkau/H25QmBsH7iSrJpUw2Ho=", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/Boshen" + } + }, "node_modules/@radix-ui/number": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz", @@ -2342,17 +1597,10 @@ "node": ">=14.0.0" } }, - "node_modules/@rolldown/pluginutils": { - "version": "1.0.0-beta.27", - "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", - "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz", - "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==", + "node_modules/@rolldown/binding-android-arm-eabi": { + "version": "1.2.5", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-android-arm-eabi/-/binding-android-arm-eabi-1.2.5.tgz", + "integrity": "sha1-FluAkQ3nzTP3ctW3sEWyWay3Qgw=", "cpu": [ "arm" ], @@ -2361,12 +1609,15 @@ "optional": true, "os": [ "android" - ] + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz", - "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==", + "node_modules/@rolldown/binding-android-arm64": { + "version": "1.2.5", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-android-arm64/-/binding-android-arm64-1.2.5.tgz", + "integrity": "sha1-XtdNS4+lbGjrGuuB0NIHqFtt4Fw=", "cpu": [ "arm64" ], @@ -2375,12 +1626,15 @@ "optional": true, "os": [ "android" - ] + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz", - "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==", + "node_modules/@rolldown/binding-darwin-arm64": { + "version": "1.2.5", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.2.5.tgz", + "integrity": "sha1-byfHBg5YygMGH6fVD53ECbw3f+E=", "cpu": [ "arm64" ], @@ -2389,12 +1643,15 @@ "optional": true, "os": [ "darwin" - ] + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz", - "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==", + "node_modules/@rolldown/binding-darwin-x64": { + "version": "1.2.5", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.2.5.tgz", + "integrity": "sha1-dKuJfRNO3kBy/cYQjwAZPmFn7ig=", "cpu": [ "x64" ], @@ -2403,26 +1660,15 @@ "optional": true, "os": [ "darwin" - ] - }, - "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz", - "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==", - "cpu": [ - "arm64" ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz", - "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==", + "node_modules/@rolldown/binding-freebsd-x64": { + "version": "1.2.5", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.2.5.tgz", + "integrity": "sha1-fTN/muS3OWdOGTh0cRirBnbI74o=", "cpu": [ "x64" ], @@ -2431,26 +1677,15 @@ "optional": true, "os": [ "freebsd" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz", - "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==", - "cpu": [ - "arm" ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz", - "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==", + "node_modules/@rolldown/binding-linux-arm-gnueabihf": { + "version": "1.2.5", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.2.5.tgz", + "integrity": "sha1-qBldwQka3g+RKwYT72UAlB5WFfQ=", "cpu": [ "arm" ], @@ -2459,180 +1694,135 @@ "optional": true, "os": [ "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz", - "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==", - "cpu": [ - "arm64" ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz", - "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==", + "node_modules/@rolldown/binding-linux-arm64-gnu": { + "version": "1.2.5", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.2.5.tgz", + "integrity": "sha1-QPu7lwcrGsqj4Oj+l3T+Uk6GC7o=", "cpu": [ "arm64" ], "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-loong64-gnu": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz", - "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==", - "cpu": [ - "loong64" + "libc": [ + "glibc" ], - "dev": true, "license": "MIT", "optional": true, "os": [ "linux" - ] - }, - "node_modules/@rollup/rollup-linux-loong64-musl": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz", - "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==", - "cpu": [ - "loong64" ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-linux-ppc64-gnu": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz", - "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==", + "node_modules/@rolldown/binding-linux-arm64-musl": { + "version": "1.2.5", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.2.5.tgz", + "integrity": "sha1-PP6LD3wT3inazpqfxsAwgRZBdqs=", "cpu": [ - "ppc64" + "arm64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ "linux" - ] + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-linux-ppc64-musl": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz", - "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==", + "node_modules/@rolldown/binding-linux-ppc64-gnu": { + "version": "1.2.5", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.2.5.tgz", + "integrity": "sha1-O9iQ2Wrin5NxiqFC7QmC8u4peK0=", "cpu": [ "ppc64" ], "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz", - "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==", - "cpu": [ - "riscv64" + "libc": [ + "glibc" ], - "dev": true, "license": "MIT", "optional": true, "os": [ "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz", - "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==", - "cpu": [ - "riscv64" ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz", - "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==", + "node_modules/@rolldown/binding-linux-s390x-gnu": { + "version": "1.2.5", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.2.5.tgz", + "integrity": "sha1-CVmg1a8idB1Xh5GOJ673DchgKAQ=", "cpu": [ "s390x" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ "linux" - ] + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz", - "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==", + "node_modules/@rolldown/binding-linux-x64-gnu": { + "version": "1.2.5", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.2.5.tgz", + "integrity": "sha1-e6qU6CYyisb0V9nhq6z/oDU+jSI=", "cpu": [ "x64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ "linux" - ] + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz", - "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==", + "node_modules/@rolldown/binding-linux-x64-musl": { + "version": "1.2.5", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.2.5.tgz", + "integrity": "sha1-XzdZfq8OIjE9Hj1L59G+H9MykE4=", "cpu": [ "x64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ "linux" - ] - }, - "node_modules/@rollup/rollup-openbsd-x64": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz", - "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==", - "cpu": [ - "x64" ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ] + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-openharmony-arm64": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz", - "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==", + "node_modules/@rolldown/binding-openharmony-arm64": { + "version": "1.2.5", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.2.5.tgz", + "integrity": "sha1-0JZWevP3OMvmqoWKsKAarp81fvQ=", "cpu": [ "arm64" ], @@ -2641,12 +1831,15 @@ "optional": true, "os": [ "openharmony" - ] + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz", - "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==", + "node_modules/@rolldown/binding-win32-arm64-msvc": { + "version": "1.2.5", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.2.5.tgz", + "integrity": "sha1-1TuRGqTmtUe3icB3R/q6sqyMI30=", "cpu": [ "arm64" ], @@ -2655,26 +1848,15 @@ "optional": true, "os": [ "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz", - "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==", - "cpu": [ - "ia32" ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] + "engines": { + "node": "^20.19.0 || >=22.12.0" + } }, - "node_modules/@rollup/rollup-win32-x64-gnu": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz", - "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==", + "node_modules/@rolldown/binding-win32-x64-msvc": { + "version": "1.2.5", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.2.5.tgz", + "integrity": "sha1-e70Iz9pqmN6bdWRyx3KjbrtyKbw=", "cpu": [ "x64" ], @@ -2683,21 +1865,17 @@ "optional": true, "os": [ "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz", - "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==", - "cpu": [ - "x64" ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.1", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz", + "integrity": "sha1-4/zuCT+7XOdl4a0Ij/TeKIn2+b4=", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] + "license": "MIT" }, "node_modules/@tailwindcss/typography": { "version": "0.5.19", @@ -2745,51 +1923,6 @@ "url": "https://github.com/sponsors/tannerlinsley" } }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", - "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", - "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.28.2" - } - }, "node_modules/@types/d3-array": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz", @@ -3173,24 +2306,33 @@ "license": "ISC" }, "node_modules/@vitejs/plugin-react": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz", - "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==", + "version": "6.1.0", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitejs/plugin-react/-/plugin-react-6.1.0.tgz", + "integrity": "sha1-o9ejuZjGGDhdB245C3Q5jD2MZbw=", "dev": true, "license": "MIT", "dependencies": { - "@babel/core": "^7.28.0", - "@babel/plugin-transform-react-jsx-self": "^7.27.1", - "@babel/plugin-transform-react-jsx-source": "^7.27.1", - "@rolldown/pluginutils": "1.0.0-beta.27", - "@types/babel__core": "^7.20.5", - "react-refresh": "^0.17.0" + "@rolldown/pluginutils": "^1.0.1" }, "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": "^20.19.0 || >=22.12.0" }, "peerDependencies": { - "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0", + "babel-plugin-react-compiler": "^1.0.0", + "oxc-transform-react": "^0.145.0", + "vite": "^8.0.0" + }, + "peerDependenciesMeta": { + "@rolldown/plugin-babel": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "oxc-transform-react": { + "optional": true + } } }, "node_modules/acorn": { @@ -3656,13 +2798,6 @@ "dev": true, "license": "MIT" }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true, - "license": "MIT" - }, "node_modules/cross-spawn": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", @@ -3907,6 +3042,16 @@ "node": ">=6" } }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha1-aJxdzcGQDvVYOky59te0c3QgdK0=", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, "node_modules/detect-node-es": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", @@ -3993,48 +3138,6 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/esbuild": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz", - "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=18" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.27.7", - "@esbuild/android-arm": "0.27.7", - "@esbuild/android-arm64": "0.27.7", - "@esbuild/android-x64": "0.27.7", - "@esbuild/darwin-arm64": "0.27.7", - "@esbuild/darwin-x64": "0.27.7", - "@esbuild/freebsd-arm64": "0.27.7", - "@esbuild/freebsd-x64": "0.27.7", - "@esbuild/linux-arm": "0.27.7", - "@esbuild/linux-arm64": "0.27.7", - "@esbuild/linux-ia32": "0.27.7", - "@esbuild/linux-loong64": "0.27.7", - "@esbuild/linux-mips64el": "0.27.7", - "@esbuild/linux-ppc64": "0.27.7", - "@esbuild/linux-riscv64": "0.27.7", - "@esbuild/linux-s390x": "0.27.7", - "@esbuild/linux-x64": "0.27.7", - "@esbuild/netbsd-arm64": "0.27.7", - "@esbuild/netbsd-x64": "0.27.7", - "@esbuild/openbsd-arm64": "0.27.7", - "@esbuild/openbsd-x64": "0.27.7", - "@esbuild/openharmony-arm64": "0.27.7", - "@esbuild/sunos-x64": "0.27.7", - "@esbuild/win32-arm64": "0.27.7", - "@esbuild/win32-ia32": "0.27.7", - "@esbuild/win32-x64": "0.27.7" - } - }, "node_modules/escalade": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", @@ -4453,16 +3556,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/get-nonce": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", @@ -4991,19 +4084,6 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/jsesc": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", - "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", - "dev": true, - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/json-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", @@ -5025,19 +4105,6 @@ "dev": true, "license": "MIT" }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/keyv": { "version": "4.5.4", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", @@ -5062,6 +4129,279 @@ "node": ">= 0.8.0" } }, + "node_modules/lightningcss": { + "version": "1.33.0", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss/-/lightningcss-1.33.0.tgz", + "integrity": "sha1-wIhn1xp5OFxuGQIU/XL+8+X5Xws=", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.33.0", + "lightningcss-darwin-arm64": "1.33.0", + "lightningcss-darwin-x64": "1.33.0", + "lightningcss-freebsd-x64": "1.33.0", + "lightningcss-linux-arm-gnueabihf": "1.33.0", + "lightningcss-linux-arm64-gnu": "1.33.0", + "lightningcss-linux-arm64-musl": "1.33.0", + "lightningcss-linux-x64-gnu": "1.33.0", + "lightningcss-linux-x64-musl": "1.33.0", + "lightningcss-win32-arm64-msvc": "1.33.0", + "lightningcss-win32-x64-msvc": "1.33.0" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.33.0", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss-android-arm64/-/lightningcss-android-arm64-1.33.0.tgz", + "integrity": "sha1-mmhB+IrlD8g1ApA4krQa9BvCuQc=", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.33.0", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.33.0.tgz", + "integrity": "sha1-wPLDHAv9GfpN0/GOlXofGhUgl9Y=", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.33.0", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.33.0.tgz", + "integrity": "sha1-ywcFllrLU4xmg5Sc5pJfs833w2E=", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.33.0", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.33.0.tgz", + "integrity": "sha1-djU4gosmurJoDa2vzITueLDrUCs=", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.33.0", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.33.0.tgz", + "integrity": "sha1-aGLjF2ozGu297B7TUrTX0N0HhN4=", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.33.0", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.33.0.tgz", + "integrity": "sha1-xqOi7RUUHa9r3CYokw+OOb30c6o=", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.33.0", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.33.0.tgz", + "integrity": "sha1-f6EzSXH8goRfmCffbvigsgkUusY=", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.33.0", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.33.0.tgz", + "integrity": "sha1-i5J4YuqMK7xoMaRlCSRLUNmTblU=", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.33.0", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.33.0.tgz", + "integrity": "sha1-DFJbsHff2UQEwFnP5C2teX6Wrq8=", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.33.0", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.33.0.tgz", + "integrity": "sha1-hQ7hED2smJz6tQ46wi0aaeOU5j0=", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.33.0", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.33.0.tgz", + "integrity": "sha1-40OuFS7tNgncbhGUnRo785oclG8=", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, "node_modules/lilconfig": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", @@ -5131,16 +4471,6 @@ "loose-envify": "cli.js" } }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" - } - }, "node_modules/lucide-react": { "version": "0.416.0", "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.416.0.tgz", @@ -6061,9 +5391,9 @@ } }, "node_modules/nanoid": { - "version": "3.3.12", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", - "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", + "version": "3.3.18", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/nanoid/-/nanoid-3.3.18.tgz", + "integrity": "sha1-9mot4Rmf/eD88hyKXxMQaxwIGRM=", "funding": [ { "type": "github", @@ -6322,9 +5652,9 @@ } }, "node_modules/postcss": { - "version": "8.5.15", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz", - "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==", + "version": "8.5.26", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/postcss/-/postcss-8.5.26.tgz", + "integrity": "sha1-bnUTV4DH4Q3zQzvyJmxVLTXIxiA=", "funding": [ { "type": "opencollective", @@ -6341,7 +5671,7 @@ ], "license": "MIT", "dependencies": { - "nanoid": "^3.3.12", + "nanoid": "^3.3.17", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" }, @@ -6610,16 +5940,6 @@ "react": ">=18" } }, - "node_modules/react-refresh": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", - "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/react-remove-scroll": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.7.1.tgz", @@ -6972,49 +6292,38 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/rollup": { - "version": "4.59.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz", - "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==", + "node_modules/rolldown": { + "version": "1.2.5", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/rolldown/-/rolldown-1.2.5.tgz", + "integrity": "sha1-H1BKfQUmCnaeYX2VBBC7sFFJjFA=", "dev": true, "license": "MIT", "dependencies": { - "@types/estree": "1.0.8" + "@oxc-project/types": "=0.146.0", + "@rolldown/pluginutils": "^1.0.0" }, "bin": { - "rollup": "dist/bin/rollup" + "rolldown": "bin/cli.mjs" }, "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" + "node": "^20.19.0 || >=22.12.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.59.0", - "@rollup/rollup-android-arm64": "4.59.0", - "@rollup/rollup-darwin-arm64": "4.59.0", - "@rollup/rollup-darwin-x64": "4.59.0", - "@rollup/rollup-freebsd-arm64": "4.59.0", - "@rollup/rollup-freebsd-x64": "4.59.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.59.0", - "@rollup/rollup-linux-arm-musleabihf": "4.59.0", - "@rollup/rollup-linux-arm64-gnu": "4.59.0", - "@rollup/rollup-linux-arm64-musl": "4.59.0", - "@rollup/rollup-linux-loong64-gnu": "4.59.0", - "@rollup/rollup-linux-loong64-musl": "4.59.0", - "@rollup/rollup-linux-ppc64-gnu": "4.59.0", - "@rollup/rollup-linux-ppc64-musl": "4.59.0", - "@rollup/rollup-linux-riscv64-gnu": "4.59.0", - "@rollup/rollup-linux-riscv64-musl": "4.59.0", - "@rollup/rollup-linux-s390x-gnu": "4.59.0", - "@rollup/rollup-linux-x64-gnu": "4.59.0", - "@rollup/rollup-linux-x64-musl": "4.59.0", - "@rollup/rollup-openbsd-x64": "4.59.0", - "@rollup/rollup-openharmony-arm64": "4.59.0", - "@rollup/rollup-win32-arm64-msvc": "4.59.0", - "@rollup/rollup-win32-ia32-msvc": "4.59.0", - "@rollup/rollup-win32-x64-gnu": "4.59.0", - "@rollup/rollup-win32-x64-msvc": "4.59.0", - "fsevents": "~2.3.2" + "@rolldown/binding-android-arm-eabi": "1.2.5", + "@rolldown/binding-android-arm64": "1.2.5", + "@rolldown/binding-darwin-arm64": "1.2.5", + "@rolldown/binding-darwin-x64": "1.2.5", + "@rolldown/binding-freebsd-x64": "1.2.5", + "@rolldown/binding-linux-arm-gnueabihf": "1.2.5", + "@rolldown/binding-linux-arm64-gnu": "1.2.5", + "@rolldown/binding-linux-arm64-musl": "1.2.5", + "@rolldown/binding-linux-ppc64-gnu": "1.2.5", + "@rolldown/binding-linux-s390x-gnu": "1.2.5", + "@rolldown/binding-linux-x64-gnu": "1.2.5", + "@rolldown/binding-linux-x64-musl": "1.2.5", + "@rolldown/binding-openharmony-arm64": "1.2.5", + "@rolldown/binding-win32-arm64-msvc": "1.2.5", + "@rolldown/binding-win32-x64-msvc": "1.2.5" } }, "node_modules/run-parallel": { @@ -7333,13 +6642,13 @@ "license": "MIT" }, "node_modules/tinyglobby": { - "version": "0.2.15", - "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", - "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "version": "0.2.17", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tinyglobby/-/tinyglobby-0.2.17.tgz", + "integrity": "sha1-ViqabJ6ys7Ej05cZ+a9btE/NdjE=", "license": "MIT", "dependencies": { "fdir": "^6.5.0", - "picomatch": "^4.0.3" + "picomatch": "^4.0.4" }, "engines": { "node": ">=12.0.0" @@ -7744,18 +7053,17 @@ } }, "node_modules/vite": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.2.tgz", - "integrity": "sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==", + "version": "8.2.2", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/vite/-/vite-8.2.2.tgz", + "integrity": "sha1-OZrvrTZWFFFFvhENE3oH6lu1UBQ=", "dev": true, "license": "MIT", "dependencies": { - "esbuild": "^0.27.0", - "fdir": "^6.5.0", - "picomatch": "^4.0.3", - "postcss": "^8.5.6", - "rollup": "^4.43.0", - "tinyglobby": "^0.2.15" + "lightningcss": "^1.33.0", + "picomatch": "^4.0.5", + "postcss": "^8.5.26", + "rolldown": "~1.2.4", + "tinyglobby": "^0.2.17" }, "bin": { "vite": "bin/vite.js" @@ -7771,9 +7079,10 @@ }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", + "@vitejs/devtools": "^0.4.0 || ^0.5.0", + "esbuild": "^0.27.0 || ^0.28.0", "jiti": ">=1.21.0", "less": "^4.0.0", - "lightningcss": "^1.21.0", "sass": "^1.70.0", "sass-embedded": "^1.70.0", "stylus": ">=0.54.8", @@ -7786,13 +7095,16 @@ "@types/node": { "optional": true }, - "jiti": { + "@vitejs/devtools": { "optional": true }, - "less": { + "esbuild": { + "optional": true + }, + "jiti": { "optional": true }, - "lightningcss": { + "less": { "optional": true }, "sass": { @@ -7819,9 +7131,9 @@ } }, "node_modules/vite-plugin-singlefile": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/vite-plugin-singlefile/-/vite-plugin-singlefile-2.3.0.tgz", - "integrity": "sha512-DAcHzYypM0CasNLSz/WG0VdKOCxGHErfrjOoyIPiNxTPTGmO6rRD/te93n1YL/s+miXq66ipF1brMBikf99c6A==", + "version": "2.3.3", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/vite-plugin-singlefile/-/vite-plugin-singlefile-2.3.3.tgz", + "integrity": "sha1-6FmupMDEt0/LumuvUn6I8q0J3mk=", "dev": true, "license": "MIT", "dependencies": { @@ -7831,32 +7143,19 @@ "node": ">18.0.0" }, "peerDependencies": { - "rollup": "^4.44.1", - "vite": "^5.4.11 || ^6.0.0 || ^7.0.0" - } - }, - "node_modules/vite/node_modules/fdir": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", - "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "picomatch": "^3 || ^4" + "rollup": "^4.59.0", + "vite": "^5.4.21 || ^6.0.0 || ^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { - "picomatch": { + "rollup": { "optional": true } } }, "node_modules/vite/node_modules/picomatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", - "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "version": "4.0.5", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/picomatch/-/picomatch-4.0.5.tgz", + "integrity": "sha1-UepXoX2G9gX4EDlZX7xA7QalX6s=", "dev": true, "license": "MIT", "engines": { @@ -7909,13 +7208,6 @@ "dev": true, "license": "ISC" }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true, - "license": "ISC" - }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", diff --git a/src/report/package.json b/src/report/package.json index 3a3d0e370e..2750bbf2ac 100644 --- a/src/report/package.json +++ b/src/report/package.json @@ -51,7 +51,7 @@ "@types/react-dom": "^18.3.0", "@typescript-eslint/eslint-plugin": "^7.15.0", "@typescript-eslint/parser": "^7.15.0", - "@vitejs/plugin-react": "^4.7.0", + "@vitejs/plugin-react": "^6.0.3", "autoprefixer": "^10.4.19", "baseline-browser-mapping": "^2.9.19", "eslint": "^8.57.0", @@ -60,7 +60,7 @@ "postcss": "^8.5.15", "tailwindcss": "^3.4.7", "typescript": "^5.2.2", - "vite": "^7.3.2", - "vite-plugin-singlefile": "^2.3.0" + "vite": "^8.1.0", + "vite-plugin-singlefile": "^2.3.3" } } diff --git a/src/report/src-curent/config/report-data.ts b/src/report/src-curent/config/report-data.ts index 26eac995c4..b856a5efba 100644 --- a/src/report/src-curent/config/report-data.ts +++ b/src/report/src-curent/config/report-data.ts @@ -298,769 +298,9 @@ export interface Test { TestDescription: string; } -export const reportData: ZeroTrustAssessmentReport = { - "ExecutedAt": "2025-10-21T08:07:56.502298+11:00", - "TenantId": "0817c655-a853-4d8f-9723-3a333b5b9235", - "TenantName": "Pora Inc.", - "Domain": "elapora.com", - "Account": "merill@elapora.com", - "CurrentVersion": "0.18.0", - "LatestVersion": "0.18.0", - "TestResultSummary": { - "IdentityPassed": 0, - "IdentityTotal": 0, - "DevicesPassed": 1, - "DevicesTotal": 1, - "DataPassed": 0, - "DataTotal": 0 - }, - "Tests": [ - { - "TestId": "24546", - "TestResult": "\nWindows Automatic Enrollment is enabled.\n\n\n## Windows Automatic Enrollment\n\n| Policy Name | User Scope |\n| :---------- | :--------- |\n| [Microsoft Intune](https://intune.microsoft.com/#view/Microsoft_AAD_IAM/MdmConfiguration.ReactView/appId/0000000a-0000-0000-c000-000000000000/appName/Microsoft%20Intune) | ✅ Specific Groups |\n\n\n\n", - "TestDescription": "If Windows automatic enrollment isn't enabled, unmanaged devices can become an entry point for attackers. Threat actors might use these devices to access corporate data, bypass compliance policies, and introduce vulnerabilities into the environment. Devices joined to Microsoft Entra without Intune enrollment create gaps in visibility and control. These unmanaged endpoints can expose weaknesses in the operating system or misconfigured applications that attackers can exploit.\n\nEnforcing automatic enrollment ensures Windows devices are managed from the start, enabling consistent policy enforcement and visibility into compliance. This supports Zero Trust by ensuring all devices are verified, monitored, and governed by security controls.\n\n**Remediation action**\n\nEnable automatic enrollment for Windows devices using Intune and Microsoft Entra to ensure all domain-joined or Entra-joined devices are managed: \n- [Enable Windows automatic enrollment](https://learn.microsoft.com/intune/intune-service/enrollment/windows-enroll?wt.mc_id=zerotrustrecommendations_automation_content_cnl_csasci#enable-windows-automatic-enrollment)\n\nFor more information, see: \n- [Deployment guide - Enrollment for Windows](https://learn.microsoft.com/intune/intune-service/fundamentals/deployment-guide-enroll?tabs=work-profile%2Ccorporate-owned-apple%2Cautomatic-enrollment&wt.mc_id=zerotrustrecommendations_automation_content_cnl_csasci#enrollment-for-windows)\n", - "TestSkipped": "", - "TestTitle": "Windows automatic device enrollment is enforced to eliminate risks from unmanaged endpoints", - "TestStatus": "Passed", - "TestTags": null, - "TestRisk": "High", - "TestPillar": "Devices", - "TestImpact": "Low", - "TestSfiPillar": "Protect tenants and isolate production systems", - "TestCategory": "Devices", - "TestImplementationCost": "Low", - "SkippedReason": null, - "TestAppliesTo": null - } - ], - "TenantInfo": { - "AgentOwnershipDistribution": { - "ownerAndSponsor": 2, - "ownerOnly": 1, - "sponsorOnly": 1, - "neither": 1, - "skippedCount": 1, - "agents": { - "ownerAndSponsor": [ - { "displayName": "Research assistant", "accountEnabled": true }, - { "displayName": "Support copilot", "accountEnabled": true } - ], - "ownerOnly": [ - { "displayName": "Red-team agent", "accountEnabled": false } - ], - "sponsorOnly": [ - { "displayName": "Procurement assistant", "accountEnabled": true } - ], - "neither": [ - { "displayName": "Legacy automation agent", "accountEnabled": false } - ] - } - }, - "ConfigWindowsEnrollment": [ - { - "Type": "MDM", - "PolicyName": "Microsoft Intune", - "AppliesTo": "Selected", - "Groups": "All active users" - }, - { - "Type": "MDM", - "PolicyName": "Microsoft Intune Enrollment", - "AppliesTo": "None", - "Groups": "Not Applicable" - } - ], - "ConfigDeviceCompliancePolicies": [ - { - "Platform": "iOS/iPadOS", - "PolicyName": "My iOS policy", - "DefenderForEndPoint": "Clear", - "MinOsVersion": "4", - "MaxOsVersion": "5", - "RequirePswd": true, - "MinPswdLength": 5, - "PasswordType": "Alphanumeric", - "PswdExpiryDays": 34, - "CountOfPreviousPswdToBlock": 5, - "RequireEncryption": "Not Applicable", - "RootedJailbrokenDevices": "Blocked", - "MaxDeviceThreatLevel": "Secured", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 0, - "ActionForNoncomplianceDaysPushNotification": 2.0, - "ActionForNoncomplianceDaysSendEmail": 2.0, - "ActionForNoncomplianceDaysRemoteLock": 2.0, - "ActionForNoncomplianceDaysBlock": 1.0, - "ActionForNoncomplianceDaysRetire": 3.0, - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Android Enterprise (Personal)", - "PolicyName": "My android personally-owned", - "DefenderForEndPoint": "", - "MinOsVersion": "3", - "MaxOsVersion": "4", - "RequirePswd": "Yes", - "MinPswdLength": 5, - "PasswordType": null, - "PswdExpiryDays": 200, - "CountOfPreviousPswdToBlock": 12, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Blocked", - "MaxDeviceThreatLevel": "Low", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 5, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": 2.0, - "ActionForNoncomplianceDaysBlock": 2.0, - "ActionForNoncomplianceDaysRetire": "Immediately", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Windows 10 and later", - "PolicyName": "Min Windows Compliance", - "DefenderForEndPoint": "", - "MinOsVersion": null, - "MaxOsVersion": null, - "RequirePswd": "", - "MinPswdLength": null, - "PasswordType": null, - "PswdExpiryDays": null, - "CountOfPreviousPswdToBlock": null, - "RequireEncryption": "", - "RootedJailbrokenDevices": "Not Applicable", - "MaxDeviceThreatLevel": "Not Applicable", - "RequireFirewall": "", - "MaxInactivityMin": null, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "macOS", - "PolicyName": "My macOS policy", - "DefenderForEndPoint": "", - "MinOsVersion": "1", - "MaxOsVersion": "2", - "RequirePswd": "Yes", - "MinPswdLength": 6, - "PasswordType": null, - "PswdExpiryDays": null, - "CountOfPreviousPswdToBlock": null, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Not Applicable", - "MaxDeviceThreatLevel": "", - "RequireFirewall": "Yes", - "MaxInactivityMin": 15, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": 4.0, - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": 6.0, - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Windows 10 and later", - "PolicyName": "My Windows policy", - "DefenderForEndPoint": "High", - "MinOsVersion": null, - "MaxOsVersion": null, - "RequirePswd": "Yes", - "MinPswdLength": 5, - "PasswordType": null, - "PswdExpiryDays": 22, - "CountOfPreviousPswdToBlock": 6, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Not Applicable", - "MaxDeviceThreatLevel": "Not Applicable", - "RequireFirewall": "Yes", - "MaxInactivityMin": 1, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": "Immediately", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Android device administrator", - "PolicyName": "My android device policy", - "DefenderForEndPoint": "Clear", - "MinOsVersion": "2", - "MaxOsVersion": "3", - "RequirePswd": "Yes", - "MinPswdLength": null, - "PasswordType": null, - "PswdExpiryDays": null, - "CountOfPreviousPswdToBlock": null, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Blocked", - "MaxDeviceThreatLevel": "Low", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 1, - "ActionForNoncomplianceDaysPushNotification": 12.0, - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "Immediately", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": "Immediately", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Android Enterprise (Corp)", - "PolicyName": "My android enterprise policy", - "DefenderForEndPoint": "Low", - "MinOsVersion": null, - "MaxOsVersion": null, - "RequirePswd": "Yes", - "MinPswdLength": 4, - "PasswordType": null, - "PswdExpiryDays": 200, - "CountOfPreviousPswdToBlock": null, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "", - "MaxDeviceThreatLevel": "", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 15, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Windows 8.1 and later", - "PolicyName": "My Windows 8 policy", - "DefenderForEndPoint": "Not Applicable", - "MinOsVersion": "1.1", - "MaxOsVersion": "2.1", - "RequirePswd": "Yes", - "MinPswdLength": null, - "PasswordType": null, - "PswdExpiryDays": 22, - "CountOfPreviousPswdToBlock": 10, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Not Applicable", - "MaxDeviceThreatLevel": "Not Applicable", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 240, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": 4.0, - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Android (AOSP)", - "PolicyName": "My android aosp policy", - "DefenderForEndPoint": "Not Applicable", - "MinOsVersion": "1", - "MaxOsVersion": "2", - "RequirePswd": "Yes", - "MinPswdLength": 16, - "PasswordType": null, - "PswdExpiryDays": "Not Applicable", - "CountOfPreviousPswdToBlock": "Not Applicable", - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Blocked", - "MaxDeviceThreatLevel": "Not Applicable", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 480, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "Immediately", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - } - ], - "ConfigDeviceAppProtectionPolicies": [ - { - "Platform": "Android", - "Name": "Android Policy", - "AppsPublic": "Cortana, Microsoft Dynamics 365 for phones, Field Service (Dynamics 365), Dynamics 365 Sales, Microsoft Dynamics 365 for tablets, Microsoft Invoicing, Microsoft Edge, Power Automate, Azure Information Protection, Microsoft Launcher, Microsoft Lists, Microsoft Kaizala, Microsoft Power Apps, Microsoft Excel, Skype for Business, Microsoft 365 (Office) (China), Microsoft Office (HL), Microsoft 365 Copilot, Microsoft Lens, Microsoft OneNote, Microsoft Outlook, Microsoft PowerPoint, Microsoft Word, Microsoft Planner, Microsoft Power BI, Microsoft Defender Endpoint, Microsoft SharePoint, Microsoft OneDrive, Microsoft Teams, Microsoft To-Do, Microsoft Whiteboard, Work Folders, Microsoft 365 Admin, Viva Engage, Microsoft StaffHub", - "AppsCustom": "com.microsoft.d365.fs.mobile, com.microsoft.ramobile, com.microsoft.stream, com.oracle.java.pdfviewer", - "BackupOrgDataToICloudOrGoogle": "Allow", - "SendOrgDataToOtherApps": "Policy managed apps", - "AppsToExempt": "Trello:app:trello", - "SaveCopiesOfOrgData": "Block", - "AllowUserToSaveCopiesToSelectedServices": "Box, Local storage, OneDrive for Business, SharePoint, Photo library", - "DataProtectionTransferTelecommunicationDataTo": "A specific dialer app", - "DataProtectionReceiveDataFromOtherApps": "Policy managed apps", - "DataProtectionOpenDataIntoOrgDocuments": "", - "DataProtectionAllowUsersToOpenDataFromSelectedServices": "", - "DataProtectionRestrictCutCopyBetweenOtherApps": "", - "DataProtectionCutCopyCharacterLimitForAnyApp": "", - "DataProtectionEncryptOrgData": "", - "DataProtectionSyncPolicyManagedAppDataWithNativeApps": "", - "DataProtectionPrintingOrgData": "", - "DataProtectionRestrictWebContentTransferWithOtherApps": "", - "DataProtectionOrgDataNotifications": "", - "ConditionalLaunchAppMaxPinAttempts": "", - "ConditionalLaunchAppOfflineGracePeriodBlockAccess": "", - "ConditionalLaunchAppOfflineGracePeriodWipeData": "", - "ConditionalLaunchAppDisabedAccount": "", - "ConditionalLaunchAppMinAppVersion": "", - "ConditionalLaunchDeviceRootedJailbrokenDevices": "Block access", - "ConditionalLaunchDevicePrimaryMtdService": "", - "ConditionalLaunchDeviceMaxAllowedDeviceThreatLevel": "", - "ConditionalLaunchDeviceMinOsVersion": "", - "ConditionalLaunchDeviceMaxOsVersion": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "iOS/iPadOS", - "Name": "iOS Policy", - "AppsPublic": "Adobe Acrobat Reader, Cortana, Microsoft Dynamics 365, Microsoft Invoicing, Microsoft Dynamics 365 for phones, Field Service (Dynamics 365), Dynamics 365 Sales, Skype for Business, Microsoft Kaizala, Microsoft Power Apps, Microsoft Edge, Microsoft 365 Admin, Microsoft Excel, Microsoft Outlook, Microsoft PowerPoint, Microsoft Word, Microsoft Lens, Microsoft 365 Copilot, Microsoft OneNote, Microsoft Planner, Microsoft Power BI, Power Automate, Azure Information Protection, Microsoft Defender Endpoint, Microsoft SharePoint, Microsoft StaffHub, Microsoft OneDrive, Microsoft Teams, Microsoft Lists, Microsoft To-Do, Microsoft Whiteboard, Work Folders, Vera for Intune, Viva Engage", - "AppsCustom": "com.microsoft.d365.fs.mobile, com.microsoft.ramobile, com.microsoft.stream, com.microsoft.visio, my.merill.net", - "BackupOrgDataToICloudOrGoogle": "Block", - "SendOrgDataToOtherApps": "Policy managed apps with OS sharing", - "AppsToExempt": "", - "SaveCopiesOfOrgData": "Allow", - "AllowUserToSaveCopiesToSelectedServices": "Box, Local storage, OneDrive for Business, SharePoint, Photo library", - "DataProtectionTransferTelecommunicationDataTo": "A specific dialer app", - "DataProtectionReceiveDataFromOtherApps": "None", - "DataProtectionOpenDataIntoOrgDocuments": "", - "DataProtectionAllowUsersToOpenDataFromSelectedServices": "", - "DataProtectionRestrictCutCopyBetweenOtherApps": "", - "DataProtectionCutCopyCharacterLimitForAnyApp": "", - "DataProtectionEncryptOrgData": "", - "DataProtectionSyncPolicyManagedAppDataWithNativeApps": "", - "DataProtectionPrintingOrgData": "", - "DataProtectionRestrictWebContentTransferWithOtherApps": "", - "DataProtectionOrgDataNotifications": "", - "ConditionalLaunchAppMaxPinAttempts": "", - "ConditionalLaunchAppOfflineGracePeriodBlockAccess": "", - "ConditionalLaunchAppOfflineGracePeriodWipeData": "", - "ConditionalLaunchAppDisabedAccount": "", - "ConditionalLaunchAppMinAppVersion": "", - "ConditionalLaunchDeviceRootedJailbrokenDevices": "Wipe data", - "ConditionalLaunchDevicePrimaryMtdService": "", - "ConditionalLaunchDeviceMaxAllowedDeviceThreatLevel": "", - "ConditionalLaunchDeviceMinOsVersion": "", - "ConditionalLaunchDeviceMaxOsVersion": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Windows", - "Name": "Windows Info Protect", - "AppsPublic": "", - "AppsCustom": "", - "BackupOrgDataToICloudOrGoogle": "", - "SendOrgDataToOtherApps": "", - "AppsToExempt": "", - "SaveCopiesOfOrgData": "", - "AllowUserToSaveCopiesToSelectedServices": "", - "DataProtectionTransferTelecommunicationDataTo": null, - "DataProtectionReceiveDataFromOtherApps": null, - "DataProtectionOpenDataIntoOrgDocuments": "", - "DataProtectionAllowUsersToOpenDataFromSelectedServices": "", - "DataProtectionRestrictCutCopyBetweenOtherApps": "", - "DataProtectionCutCopyCharacterLimitForAnyApp": "", - "DataProtectionEncryptOrgData": "", - "DataProtectionSyncPolicyManagedAppDataWithNativeApps": "", - "DataProtectionPrintingOrgData": "", - "DataProtectionRestrictWebContentTransferWithOtherApps": "", - "DataProtectionOrgDataNotifications": "", - "ConditionalLaunchAppMaxPinAttempts": "", - "ConditionalLaunchAppOfflineGracePeriodBlockAccess": "", - "ConditionalLaunchAppOfflineGracePeriodWipeData": "", - "ConditionalLaunchAppDisabedAccount": "", - "ConditionalLaunchAppMinAppVersion": "", - "ConditionalLaunchDeviceRootedJailbrokenDevices": null, - "ConditionalLaunchDevicePrimaryMtdService": "", - "ConditionalLaunchDeviceMaxAllowedDeviceThreatLevel": "", - "ConditionalLaunchDeviceMinOsVersion": "", - "ConditionalLaunchDeviceMaxOsVersion": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - } - ], - "ConfigDeviceEnrollmentRestriction": [ - { - "Platform": "iOS/iPadOS", - "Priority": 2, - "Name": "iOS Restriction 2", - "MDM": "Blocked", - "MinVer": null, - "MaxVer": null, - "PersonallyOwned": "Allowed", - "BlockedManufacturers": null, - "Scope": "Default", - "AssignedTo": "All users" - }, - { - "Platform": "Android Enterprise (work profile)", - "Priority": 1, - "Name": "Andy Penn", - "MDM": "Allowed", - "MinVer": "5.0", - "MaxVer": "5.1.1", - "PersonallyOwned": "Allowed", - "BlockedManufacturers": "Samsung", - "Scope": "Biscope, Default", - "AssignedTo": "aad-conditional-access-allow-legacy-auth" - }, - { - "Platform": "Android device administrator", - "Priority": 1, - "Name": "Andy Penn", - "MDM": "Allowed", - "MinVer": "5.0", - "MaxVer": "6.0", - "PersonallyOwned": "Allowed", - "BlockedManufacturers": "Samsung", - "Scope": "Biscope, Default", - "AssignedTo": "aad-conditional-access-allow-legacy-auth" - }, - { - "Platform": "iOS/iPadOS", - "Priority": 1, - "Name": "iOS Restriction", - "MDM": "Allowed", - "MinVer": "9.0", - "MaxVer": "10.0", - "PersonallyOwned": "Blocked", - "BlockedManufacturers": null, - "Scope": "Default", - "AssignedTo": "aad-conditional-access-excluded, Avanade Users" - }, - { - "Platform": "Windows", - "Priority": 1, - "Name": "Win1", - "MDM": "Allowed", - "MinVer": null, - "MaxVer": null, - "PersonallyOwned": "Allowed", - "BlockedManufacturers": null, - "Scope": "Biscope, Default", - "AssignedTo": "All users" - }, - { - "Platform": "iOS/iPadOS", - "Priority": "Default", - "Name": "All users", - "MDM": "Allowed", - "MinVer": "9.0", - "MaxVer": "10.0", - "PersonallyOwned": "Blocked", - "BlockedManufacturers": null, - "Scope": "", - "AssignedTo": "All devices" - }, - { - "Platform": "Windows", - "Priority": "Default", - "Name": "All users", - "MDM": "Allowed", - "MinVer": "10.0", - "MaxVer": "11.0", - "PersonallyOwned": "Blocked", - "BlockedManufacturers": null, - "Scope": "", - "AssignedTo": "All devices" - }, - { - "Platform": "Android device administrator", - "Priority": "Default", - "Name": "All users", - "MDM": "Allowed", - "MinVer": "7.0", - "MaxVer": "8.0", - "PersonallyOwned": "Blocked", - "BlockedManufacturers": "Samsung", - "Scope": "", - "AssignedTo": "All devices" - }, - { - "Platform": "macOS", - "Priority": "Default", - "Name": "All users", - "MDM": "Allowed", - "MinVer": null, - "MaxVer": null, - "PersonallyOwned": "Blocked", - "BlockedManufacturers": null, - "Scope": "", - "AssignedTo": "All devices" - }, - { - "Platform": "Android Enterprise (work profile)", - "Priority": "Default", - "Name": "All users", - "MDM": "Allowed", - "MinVer": "5.0", - "MaxVer": "6.0", - "PersonallyOwned": "Blocked", - "BlockedManufacturers": "Samsung", - "Scope": "", - "AssignedTo": "All devices" - } - ], - "DeviceOverview": { - "DeviceSummary": null, - "DesktopDevicesSummary": { - "nodes": [ - { - "source": "Desktop devices", - "target": "Windows", - "value": 11.0 - }, - { - "source": "Desktop devices", - "target": "macOS", - "value": 2.0 - }, - { - "source": "Windows", - "target": "Entra joined", - "value": 8.0 - }, - { - "source": "Windows", - "target": "Entra hybrid joined", - "value": 0 - }, - { - "source": "Windows", - "target": "Entra registered", - "value": 3.0 - }, - { - "source": "macOS", - "target": "Compliant", - "value": 1.0 - }, - { - "source": "macOS", - "target": "Non-compliant", - "value": 1.0 - }, - { - "source": "macOS", - "target": "Unmanaged", - "value": null - }, - { - "source": "Entra joined", - "target": "Compliant", - "value": null - }, - { - "source": "Entra joined", - "target": "Non-compliant", - "value": 4.0 - }, - { - "source": "Entra joined", - "target": "Unmanaged", - "value": null - }, - { - "source": "Entra hybrid joined", - "target": "Compliant", - "value": null - }, - { - "source": "Entra hybrid joined", - "target": "Non-compliant", - "value": null - }, - { - "source": "Entra hybrid joined", - "target": "Unmanaged", - "value": null - }, - { - "source": "Entra registered", - "target": "Compliant", - "value": null - }, - { - "source": "Entra registered", - "target": "Non-compliant", - "value": null - }, - { - "source": "Entra registered", - "target": "Unmanaged", - "value": null - } - ], - "entrahybridjoined": 0, - "description": "Desktop devices (Windows and macOS) by join type and compliance status.", - "totalDevices": 13.0, - "entrajoined": 9.0, - "entrareigstered": 4.0 - }, - "MobileSummary": { - "nodes": [ - { - "source": "Mobile devices", - "target": "Android", - "value": 40 - }, - { - "source": "Mobile devices", - "target": "iOS", - "value": 53 - }, - { - "source": "Android", - "target": "Android (Company)", - "value": 20 - }, - { - "source": "Android", - "target": "Android (Personal)", - "value": 20 - }, - { - "source": "iOS", - "target": "iOS (Company)", - "value": 28 - }, - { - "source": "iOS", - "target": "iOS (Personal)", - "value": 25 - }, - { - "source": "Android (Company)", - "target": "Compliant", - "value": 15 - }, - { - "source": "Android (Company)", - "target": "Non-compliant", - "value": 5 - }, - { - "source": "Android (Personal)", - "target": "Compliant", - "value": 8 - }, - { - "source": "Android (Personal)", - "target": "Non-compliant", - "value": 12 - }, - { - "source": "iOS (Company)", - "target": "Compliant", - "value": 25 - }, - { - "source": "iOS (Company)", - "target": "Non-compliant", - "value": 3 - }, - { - "source": "iOS (Personal)", - "target": "Compliant", - "value": 18 - }, - { - "source": "iOS (Personal)", - "target": "Non-compliant", - "value": 7 - } - ], - "description": "Mobile devices by compliance status.", - "totalDevices": 93 - }, - "ManagedDevices": { - "@odata.context": "https://graph.microsoft.com/beta/$metadata#microsoft.graph.managedDeviceOverview", - "id": "4a197fb2-79de-4f46-89e3-bd318ca08984", - "enrolledDeviceCount": 0, - "mdmEnrolledCount": 0, - "dualEnrolledDeviceCount": 0, - "managedDeviceModelsAndManufacturers": null, - "lastModifiedDateTime": "2025-10-20T21:07:52.4781572Z", - "deviceOperatingSystemSummary": { - "androidCount": 300, - "iosCount": 340, - "macOSCount": 10, - "windowsMobileCount": 0, - "windowsCount": 1000, - "unknownCount": 0, - "androidDedicatedCount": 0, - "androidDeviceAdminCount": 0, - "androidFullyManagedCount": 0, - "androidWorkProfileCount": 0, - "androidCorporateWorkProfileCount": 0, - "configMgrDeviceCount": 0, - "aospUserlessCount": 0, - "aospUserAssociatedCount": 0, - "linuxCount": 20, - "chromeOSCount": 0 - }, - "deviceExchangeAccessStateSummary": { - "allowedDeviceCount": 0, - "blockedDeviceCount": 0, - "quarantinedDeviceCount": 0, - "unknownDeviceCount": 0, - "unavailableDeviceCount": 0 - }, - "desktopCount": 20, - "mobileCount": 30, - "totalCount": 50 - }, - "DeviceCompliance": { - "@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/deviceCompliancePolicyDeviceStateSummary/$entity", - "inGracePeriodCount": 0, - "configManagerCount": 0, - "id": "afaac8a4-5f74-40f5-a213-51af45bedc36", - "unknownDeviceCount": 0, - "notApplicableDeviceCount": 0, - "compliantDeviceCount": 10, - "remediatedDeviceCount": 0, - "nonCompliantDeviceCount": 10, - "errorDeviceCount": 0, - "conflictDeviceCount": 0 - }, - "DeviceOwnership": { - "corporateCount": 20, - "personalCount": 10 - } - }, - "TenantOverview": { - "UserCount": 71000, - "GuestCount": 12, - "GroupCount": 1890, - "ApplicationCount": 120, - "DeviceCount": 20, - "ManagedDeviceCount": 0 - } - }, - "EndOfJson": "EndOfJson" -} + +// Populated by the reportDataPlaceholder Vite plugin, then replaced with the real assessment +// payload by Get-HtmlReport. The demo dataset lives in src/report/demo-report-data.json. +export const reportData: ZeroTrustAssessmentReport = ( + globalThis as unknown as { reportData: ZeroTrustAssessmentReport } +).reportData diff --git a/src/report/src/config/report-data.ts b/src/report/src/config/report-data.ts index 26eac995c4..b856a5efba 100644 --- a/src/report/src/config/report-data.ts +++ b/src/report/src/config/report-data.ts @@ -298,769 +298,9 @@ export interface Test { TestDescription: string; } -export const reportData: ZeroTrustAssessmentReport = { - "ExecutedAt": "2025-10-21T08:07:56.502298+11:00", - "TenantId": "0817c655-a853-4d8f-9723-3a333b5b9235", - "TenantName": "Pora Inc.", - "Domain": "elapora.com", - "Account": "merill@elapora.com", - "CurrentVersion": "0.18.0", - "LatestVersion": "0.18.0", - "TestResultSummary": { - "IdentityPassed": 0, - "IdentityTotal": 0, - "DevicesPassed": 1, - "DevicesTotal": 1, - "DataPassed": 0, - "DataTotal": 0 - }, - "Tests": [ - { - "TestId": "24546", - "TestResult": "\nWindows Automatic Enrollment is enabled.\n\n\n## Windows Automatic Enrollment\n\n| Policy Name | User Scope |\n| :---------- | :--------- |\n| [Microsoft Intune](https://intune.microsoft.com/#view/Microsoft_AAD_IAM/MdmConfiguration.ReactView/appId/0000000a-0000-0000-c000-000000000000/appName/Microsoft%20Intune) | ✅ Specific Groups |\n\n\n\n", - "TestDescription": "If Windows automatic enrollment isn't enabled, unmanaged devices can become an entry point for attackers. Threat actors might use these devices to access corporate data, bypass compliance policies, and introduce vulnerabilities into the environment. Devices joined to Microsoft Entra without Intune enrollment create gaps in visibility and control. These unmanaged endpoints can expose weaknesses in the operating system or misconfigured applications that attackers can exploit.\n\nEnforcing automatic enrollment ensures Windows devices are managed from the start, enabling consistent policy enforcement and visibility into compliance. This supports Zero Trust by ensuring all devices are verified, monitored, and governed by security controls.\n\n**Remediation action**\n\nEnable automatic enrollment for Windows devices using Intune and Microsoft Entra to ensure all domain-joined or Entra-joined devices are managed: \n- [Enable Windows automatic enrollment](https://learn.microsoft.com/intune/intune-service/enrollment/windows-enroll?wt.mc_id=zerotrustrecommendations_automation_content_cnl_csasci#enable-windows-automatic-enrollment)\n\nFor more information, see: \n- [Deployment guide - Enrollment for Windows](https://learn.microsoft.com/intune/intune-service/fundamentals/deployment-guide-enroll?tabs=work-profile%2Ccorporate-owned-apple%2Cautomatic-enrollment&wt.mc_id=zerotrustrecommendations_automation_content_cnl_csasci#enrollment-for-windows)\n", - "TestSkipped": "", - "TestTitle": "Windows automatic device enrollment is enforced to eliminate risks from unmanaged endpoints", - "TestStatus": "Passed", - "TestTags": null, - "TestRisk": "High", - "TestPillar": "Devices", - "TestImpact": "Low", - "TestSfiPillar": "Protect tenants and isolate production systems", - "TestCategory": "Devices", - "TestImplementationCost": "Low", - "SkippedReason": null, - "TestAppliesTo": null - } - ], - "TenantInfo": { - "AgentOwnershipDistribution": { - "ownerAndSponsor": 2, - "ownerOnly": 1, - "sponsorOnly": 1, - "neither": 1, - "skippedCount": 1, - "agents": { - "ownerAndSponsor": [ - { "displayName": "Research assistant", "accountEnabled": true }, - { "displayName": "Support copilot", "accountEnabled": true } - ], - "ownerOnly": [ - { "displayName": "Red-team agent", "accountEnabled": false } - ], - "sponsorOnly": [ - { "displayName": "Procurement assistant", "accountEnabled": true } - ], - "neither": [ - { "displayName": "Legacy automation agent", "accountEnabled": false } - ] - } - }, - "ConfigWindowsEnrollment": [ - { - "Type": "MDM", - "PolicyName": "Microsoft Intune", - "AppliesTo": "Selected", - "Groups": "All active users" - }, - { - "Type": "MDM", - "PolicyName": "Microsoft Intune Enrollment", - "AppliesTo": "None", - "Groups": "Not Applicable" - } - ], - "ConfigDeviceCompliancePolicies": [ - { - "Platform": "iOS/iPadOS", - "PolicyName": "My iOS policy", - "DefenderForEndPoint": "Clear", - "MinOsVersion": "4", - "MaxOsVersion": "5", - "RequirePswd": true, - "MinPswdLength": 5, - "PasswordType": "Alphanumeric", - "PswdExpiryDays": 34, - "CountOfPreviousPswdToBlock": 5, - "RequireEncryption": "Not Applicable", - "RootedJailbrokenDevices": "Blocked", - "MaxDeviceThreatLevel": "Secured", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 0, - "ActionForNoncomplianceDaysPushNotification": 2.0, - "ActionForNoncomplianceDaysSendEmail": 2.0, - "ActionForNoncomplianceDaysRemoteLock": 2.0, - "ActionForNoncomplianceDaysBlock": 1.0, - "ActionForNoncomplianceDaysRetire": 3.0, - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Android Enterprise (Personal)", - "PolicyName": "My android personally-owned", - "DefenderForEndPoint": "", - "MinOsVersion": "3", - "MaxOsVersion": "4", - "RequirePswd": "Yes", - "MinPswdLength": 5, - "PasswordType": null, - "PswdExpiryDays": 200, - "CountOfPreviousPswdToBlock": 12, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Blocked", - "MaxDeviceThreatLevel": "Low", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 5, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": 2.0, - "ActionForNoncomplianceDaysBlock": 2.0, - "ActionForNoncomplianceDaysRetire": "Immediately", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Windows 10 and later", - "PolicyName": "Min Windows Compliance", - "DefenderForEndPoint": "", - "MinOsVersion": null, - "MaxOsVersion": null, - "RequirePswd": "", - "MinPswdLength": null, - "PasswordType": null, - "PswdExpiryDays": null, - "CountOfPreviousPswdToBlock": null, - "RequireEncryption": "", - "RootedJailbrokenDevices": "Not Applicable", - "MaxDeviceThreatLevel": "Not Applicable", - "RequireFirewall": "", - "MaxInactivityMin": null, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "macOS", - "PolicyName": "My macOS policy", - "DefenderForEndPoint": "", - "MinOsVersion": "1", - "MaxOsVersion": "2", - "RequirePswd": "Yes", - "MinPswdLength": 6, - "PasswordType": null, - "PswdExpiryDays": null, - "CountOfPreviousPswdToBlock": null, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Not Applicable", - "MaxDeviceThreatLevel": "", - "RequireFirewall": "Yes", - "MaxInactivityMin": 15, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": 4.0, - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": 6.0, - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Windows 10 and later", - "PolicyName": "My Windows policy", - "DefenderForEndPoint": "High", - "MinOsVersion": null, - "MaxOsVersion": null, - "RequirePswd": "Yes", - "MinPswdLength": 5, - "PasswordType": null, - "PswdExpiryDays": 22, - "CountOfPreviousPswdToBlock": 6, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Not Applicable", - "MaxDeviceThreatLevel": "Not Applicable", - "RequireFirewall": "Yes", - "MaxInactivityMin": 1, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": "Immediately", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Android device administrator", - "PolicyName": "My android device policy", - "DefenderForEndPoint": "Clear", - "MinOsVersion": "2", - "MaxOsVersion": "3", - "RequirePswd": "Yes", - "MinPswdLength": null, - "PasswordType": null, - "PswdExpiryDays": null, - "CountOfPreviousPswdToBlock": null, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Blocked", - "MaxDeviceThreatLevel": "Low", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 1, - "ActionForNoncomplianceDaysPushNotification": 12.0, - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "Immediately", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": "Immediately", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Android Enterprise (Corp)", - "PolicyName": "My android enterprise policy", - "DefenderForEndPoint": "Low", - "MinOsVersion": null, - "MaxOsVersion": null, - "RequirePswd": "Yes", - "MinPswdLength": 4, - "PasswordType": null, - "PswdExpiryDays": 200, - "CountOfPreviousPswdToBlock": null, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "", - "MaxDeviceThreatLevel": "", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 15, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Windows 8.1 and later", - "PolicyName": "My Windows 8 policy", - "DefenderForEndPoint": "Not Applicable", - "MinOsVersion": "1.1", - "MaxOsVersion": "2.1", - "RequirePswd": "Yes", - "MinPswdLength": null, - "PasswordType": null, - "PswdExpiryDays": 22, - "CountOfPreviousPswdToBlock": 10, - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Not Applicable", - "MaxDeviceThreatLevel": "Not Applicable", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 240, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": 4.0, - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Android (AOSP)", - "PolicyName": "My android aosp policy", - "DefenderForEndPoint": "Not Applicable", - "MinOsVersion": "1", - "MaxOsVersion": "2", - "RequirePswd": "Yes", - "MinPswdLength": 16, - "PasswordType": null, - "PswdExpiryDays": "Not Applicable", - "CountOfPreviousPswdToBlock": "Not Applicable", - "RequireEncryption": "Yes", - "RootedJailbrokenDevices": "Blocked", - "MaxDeviceThreatLevel": "Not Applicable", - "RequireFirewall": "Not Applicable", - "MaxInactivityMin": 480, - "ActionForNoncomplianceDaysPushNotification": "", - "ActionForNoncomplianceDaysSendEmail": "", - "ActionForNoncomplianceDaysRemoteLock": "Immediately", - "ActionForNoncomplianceDaysBlock": "Immediately", - "ActionForNoncomplianceDaysRetire": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - } - ], - "ConfigDeviceAppProtectionPolicies": [ - { - "Platform": "Android", - "Name": "Android Policy", - "AppsPublic": "Cortana, Microsoft Dynamics 365 for phones, Field Service (Dynamics 365), Dynamics 365 Sales, Microsoft Dynamics 365 for tablets, Microsoft Invoicing, Microsoft Edge, Power Automate, Azure Information Protection, Microsoft Launcher, Microsoft Lists, Microsoft Kaizala, Microsoft Power Apps, Microsoft Excel, Skype for Business, Microsoft 365 (Office) (China), Microsoft Office (HL), Microsoft 365 Copilot, Microsoft Lens, Microsoft OneNote, Microsoft Outlook, Microsoft PowerPoint, Microsoft Word, Microsoft Planner, Microsoft Power BI, Microsoft Defender Endpoint, Microsoft SharePoint, Microsoft OneDrive, Microsoft Teams, Microsoft To-Do, Microsoft Whiteboard, Work Folders, Microsoft 365 Admin, Viva Engage, Microsoft StaffHub", - "AppsCustom": "com.microsoft.d365.fs.mobile, com.microsoft.ramobile, com.microsoft.stream, com.oracle.java.pdfviewer", - "BackupOrgDataToICloudOrGoogle": "Allow", - "SendOrgDataToOtherApps": "Policy managed apps", - "AppsToExempt": "Trello:app:trello", - "SaveCopiesOfOrgData": "Block", - "AllowUserToSaveCopiesToSelectedServices": "Box, Local storage, OneDrive for Business, SharePoint, Photo library", - "DataProtectionTransferTelecommunicationDataTo": "A specific dialer app", - "DataProtectionReceiveDataFromOtherApps": "Policy managed apps", - "DataProtectionOpenDataIntoOrgDocuments": "", - "DataProtectionAllowUsersToOpenDataFromSelectedServices": "", - "DataProtectionRestrictCutCopyBetweenOtherApps": "", - "DataProtectionCutCopyCharacterLimitForAnyApp": "", - "DataProtectionEncryptOrgData": "", - "DataProtectionSyncPolicyManagedAppDataWithNativeApps": "", - "DataProtectionPrintingOrgData": "", - "DataProtectionRestrictWebContentTransferWithOtherApps": "", - "DataProtectionOrgDataNotifications": "", - "ConditionalLaunchAppMaxPinAttempts": "", - "ConditionalLaunchAppOfflineGracePeriodBlockAccess": "", - "ConditionalLaunchAppOfflineGracePeriodWipeData": "", - "ConditionalLaunchAppDisabedAccount": "", - "ConditionalLaunchAppMinAppVersion": "", - "ConditionalLaunchDeviceRootedJailbrokenDevices": "Block access", - "ConditionalLaunchDevicePrimaryMtdService": "", - "ConditionalLaunchDeviceMaxAllowedDeviceThreatLevel": "", - "ConditionalLaunchDeviceMinOsVersion": "", - "ConditionalLaunchDeviceMaxOsVersion": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "iOS/iPadOS", - "Name": "iOS Policy", - "AppsPublic": "Adobe Acrobat Reader, Cortana, Microsoft Dynamics 365, Microsoft Invoicing, Microsoft Dynamics 365 for phones, Field Service (Dynamics 365), Dynamics 365 Sales, Skype for Business, Microsoft Kaizala, Microsoft Power Apps, Microsoft Edge, Microsoft 365 Admin, Microsoft Excel, Microsoft Outlook, Microsoft PowerPoint, Microsoft Word, Microsoft Lens, Microsoft 365 Copilot, Microsoft OneNote, Microsoft Planner, Microsoft Power BI, Power Automate, Azure Information Protection, Microsoft Defender Endpoint, Microsoft SharePoint, Microsoft StaffHub, Microsoft OneDrive, Microsoft Teams, Microsoft Lists, Microsoft To-Do, Microsoft Whiteboard, Work Folders, Vera for Intune, Viva Engage", - "AppsCustom": "com.microsoft.d365.fs.mobile, com.microsoft.ramobile, com.microsoft.stream, com.microsoft.visio, my.merill.net", - "BackupOrgDataToICloudOrGoogle": "Block", - "SendOrgDataToOtherApps": "Policy managed apps with OS sharing", - "AppsToExempt": "", - "SaveCopiesOfOrgData": "Allow", - "AllowUserToSaveCopiesToSelectedServices": "Box, Local storage, OneDrive for Business, SharePoint, Photo library", - "DataProtectionTransferTelecommunicationDataTo": "A specific dialer app", - "DataProtectionReceiveDataFromOtherApps": "None", - "DataProtectionOpenDataIntoOrgDocuments": "", - "DataProtectionAllowUsersToOpenDataFromSelectedServices": "", - "DataProtectionRestrictCutCopyBetweenOtherApps": "", - "DataProtectionCutCopyCharacterLimitForAnyApp": "", - "DataProtectionEncryptOrgData": "", - "DataProtectionSyncPolicyManagedAppDataWithNativeApps": "", - "DataProtectionPrintingOrgData": "", - "DataProtectionRestrictWebContentTransferWithOtherApps": "", - "DataProtectionOrgDataNotifications": "", - "ConditionalLaunchAppMaxPinAttempts": "", - "ConditionalLaunchAppOfflineGracePeriodBlockAccess": "", - "ConditionalLaunchAppOfflineGracePeriodWipeData": "", - "ConditionalLaunchAppDisabedAccount": "", - "ConditionalLaunchAppMinAppVersion": "", - "ConditionalLaunchDeviceRootedJailbrokenDevices": "Wipe data", - "ConditionalLaunchDevicePrimaryMtdService": "", - "ConditionalLaunchDeviceMaxAllowedDeviceThreatLevel": "", - "ConditionalLaunchDeviceMinOsVersion": "", - "ConditionalLaunchDeviceMaxOsVersion": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - }, - { - "Platform": "Windows", - "Name": "Windows Info Protect", - "AppsPublic": "", - "AppsCustom": "", - "BackupOrgDataToICloudOrGoogle": "", - "SendOrgDataToOtherApps": "", - "AppsToExempt": "", - "SaveCopiesOfOrgData": "", - "AllowUserToSaveCopiesToSelectedServices": "", - "DataProtectionTransferTelecommunicationDataTo": null, - "DataProtectionReceiveDataFromOtherApps": null, - "DataProtectionOpenDataIntoOrgDocuments": "", - "DataProtectionAllowUsersToOpenDataFromSelectedServices": "", - "DataProtectionRestrictCutCopyBetweenOtherApps": "", - "DataProtectionCutCopyCharacterLimitForAnyApp": "", - "DataProtectionEncryptOrgData": "", - "DataProtectionSyncPolicyManagedAppDataWithNativeApps": "", - "DataProtectionPrintingOrgData": "", - "DataProtectionRestrictWebContentTransferWithOtherApps": "", - "DataProtectionOrgDataNotifications": "", - "ConditionalLaunchAppMaxPinAttempts": "", - "ConditionalLaunchAppOfflineGracePeriodBlockAccess": "", - "ConditionalLaunchAppOfflineGracePeriodWipeData": "", - "ConditionalLaunchAppDisabedAccount": "", - "ConditionalLaunchAppMinAppVersion": "", - "ConditionalLaunchDeviceRootedJailbrokenDevices": null, - "ConditionalLaunchDevicePrimaryMtdService": "", - "ConditionalLaunchDeviceMaxAllowedDeviceThreatLevel": "", - "ConditionalLaunchDeviceMinOsVersion": "", - "ConditionalLaunchDeviceMaxOsVersion": "", - "Scope": "Default", - "IncludedGroups": "", - "ExcludedGroups": "" - } - ], - "ConfigDeviceEnrollmentRestriction": [ - { - "Platform": "iOS/iPadOS", - "Priority": 2, - "Name": "iOS Restriction 2", - "MDM": "Blocked", - "MinVer": null, - "MaxVer": null, - "PersonallyOwned": "Allowed", - "BlockedManufacturers": null, - "Scope": "Default", - "AssignedTo": "All users" - }, - { - "Platform": "Android Enterprise (work profile)", - "Priority": 1, - "Name": "Andy Penn", - "MDM": "Allowed", - "MinVer": "5.0", - "MaxVer": "5.1.1", - "PersonallyOwned": "Allowed", - "BlockedManufacturers": "Samsung", - "Scope": "Biscope, Default", - "AssignedTo": "aad-conditional-access-allow-legacy-auth" - }, - { - "Platform": "Android device administrator", - "Priority": 1, - "Name": "Andy Penn", - "MDM": "Allowed", - "MinVer": "5.0", - "MaxVer": "6.0", - "PersonallyOwned": "Allowed", - "BlockedManufacturers": "Samsung", - "Scope": "Biscope, Default", - "AssignedTo": "aad-conditional-access-allow-legacy-auth" - }, - { - "Platform": "iOS/iPadOS", - "Priority": 1, - "Name": "iOS Restriction", - "MDM": "Allowed", - "MinVer": "9.0", - "MaxVer": "10.0", - "PersonallyOwned": "Blocked", - "BlockedManufacturers": null, - "Scope": "Default", - "AssignedTo": "aad-conditional-access-excluded, Avanade Users" - }, - { - "Platform": "Windows", - "Priority": 1, - "Name": "Win1", - "MDM": "Allowed", - "MinVer": null, - "MaxVer": null, - "PersonallyOwned": "Allowed", - "BlockedManufacturers": null, - "Scope": "Biscope, Default", - "AssignedTo": "All users" - }, - { - "Platform": "iOS/iPadOS", - "Priority": "Default", - "Name": "All users", - "MDM": "Allowed", - "MinVer": "9.0", - "MaxVer": "10.0", - "PersonallyOwned": "Blocked", - "BlockedManufacturers": null, - "Scope": "", - "AssignedTo": "All devices" - }, - { - "Platform": "Windows", - "Priority": "Default", - "Name": "All users", - "MDM": "Allowed", - "MinVer": "10.0", - "MaxVer": "11.0", - "PersonallyOwned": "Blocked", - "BlockedManufacturers": null, - "Scope": "", - "AssignedTo": "All devices" - }, - { - "Platform": "Android device administrator", - "Priority": "Default", - "Name": "All users", - "MDM": "Allowed", - "MinVer": "7.0", - "MaxVer": "8.0", - "PersonallyOwned": "Blocked", - "BlockedManufacturers": "Samsung", - "Scope": "", - "AssignedTo": "All devices" - }, - { - "Platform": "macOS", - "Priority": "Default", - "Name": "All users", - "MDM": "Allowed", - "MinVer": null, - "MaxVer": null, - "PersonallyOwned": "Blocked", - "BlockedManufacturers": null, - "Scope": "", - "AssignedTo": "All devices" - }, - { - "Platform": "Android Enterprise (work profile)", - "Priority": "Default", - "Name": "All users", - "MDM": "Allowed", - "MinVer": "5.0", - "MaxVer": "6.0", - "PersonallyOwned": "Blocked", - "BlockedManufacturers": "Samsung", - "Scope": "", - "AssignedTo": "All devices" - } - ], - "DeviceOverview": { - "DeviceSummary": null, - "DesktopDevicesSummary": { - "nodes": [ - { - "source": "Desktop devices", - "target": "Windows", - "value": 11.0 - }, - { - "source": "Desktop devices", - "target": "macOS", - "value": 2.0 - }, - { - "source": "Windows", - "target": "Entra joined", - "value": 8.0 - }, - { - "source": "Windows", - "target": "Entra hybrid joined", - "value": 0 - }, - { - "source": "Windows", - "target": "Entra registered", - "value": 3.0 - }, - { - "source": "macOS", - "target": "Compliant", - "value": 1.0 - }, - { - "source": "macOS", - "target": "Non-compliant", - "value": 1.0 - }, - { - "source": "macOS", - "target": "Unmanaged", - "value": null - }, - { - "source": "Entra joined", - "target": "Compliant", - "value": null - }, - { - "source": "Entra joined", - "target": "Non-compliant", - "value": 4.0 - }, - { - "source": "Entra joined", - "target": "Unmanaged", - "value": null - }, - { - "source": "Entra hybrid joined", - "target": "Compliant", - "value": null - }, - { - "source": "Entra hybrid joined", - "target": "Non-compliant", - "value": null - }, - { - "source": "Entra hybrid joined", - "target": "Unmanaged", - "value": null - }, - { - "source": "Entra registered", - "target": "Compliant", - "value": null - }, - { - "source": "Entra registered", - "target": "Non-compliant", - "value": null - }, - { - "source": "Entra registered", - "target": "Unmanaged", - "value": null - } - ], - "entrahybridjoined": 0, - "description": "Desktop devices (Windows and macOS) by join type and compliance status.", - "totalDevices": 13.0, - "entrajoined": 9.0, - "entrareigstered": 4.0 - }, - "MobileSummary": { - "nodes": [ - { - "source": "Mobile devices", - "target": "Android", - "value": 40 - }, - { - "source": "Mobile devices", - "target": "iOS", - "value": 53 - }, - { - "source": "Android", - "target": "Android (Company)", - "value": 20 - }, - { - "source": "Android", - "target": "Android (Personal)", - "value": 20 - }, - { - "source": "iOS", - "target": "iOS (Company)", - "value": 28 - }, - { - "source": "iOS", - "target": "iOS (Personal)", - "value": 25 - }, - { - "source": "Android (Company)", - "target": "Compliant", - "value": 15 - }, - { - "source": "Android (Company)", - "target": "Non-compliant", - "value": 5 - }, - { - "source": "Android (Personal)", - "target": "Compliant", - "value": 8 - }, - { - "source": "Android (Personal)", - "target": "Non-compliant", - "value": 12 - }, - { - "source": "iOS (Company)", - "target": "Compliant", - "value": 25 - }, - { - "source": "iOS (Company)", - "target": "Non-compliant", - "value": 3 - }, - { - "source": "iOS (Personal)", - "target": "Compliant", - "value": 18 - }, - { - "source": "iOS (Personal)", - "target": "Non-compliant", - "value": 7 - } - ], - "description": "Mobile devices by compliance status.", - "totalDevices": 93 - }, - "ManagedDevices": { - "@odata.context": "https://graph.microsoft.com/beta/$metadata#microsoft.graph.managedDeviceOverview", - "id": "4a197fb2-79de-4f46-89e3-bd318ca08984", - "enrolledDeviceCount": 0, - "mdmEnrolledCount": 0, - "dualEnrolledDeviceCount": 0, - "managedDeviceModelsAndManufacturers": null, - "lastModifiedDateTime": "2025-10-20T21:07:52.4781572Z", - "deviceOperatingSystemSummary": { - "androidCount": 300, - "iosCount": 340, - "macOSCount": 10, - "windowsMobileCount": 0, - "windowsCount": 1000, - "unknownCount": 0, - "androidDedicatedCount": 0, - "androidDeviceAdminCount": 0, - "androidFullyManagedCount": 0, - "androidWorkProfileCount": 0, - "androidCorporateWorkProfileCount": 0, - "configMgrDeviceCount": 0, - "aospUserlessCount": 0, - "aospUserAssociatedCount": 0, - "linuxCount": 20, - "chromeOSCount": 0 - }, - "deviceExchangeAccessStateSummary": { - "allowedDeviceCount": 0, - "blockedDeviceCount": 0, - "quarantinedDeviceCount": 0, - "unknownDeviceCount": 0, - "unavailableDeviceCount": 0 - }, - "desktopCount": 20, - "mobileCount": 30, - "totalCount": 50 - }, - "DeviceCompliance": { - "@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/deviceCompliancePolicyDeviceStateSummary/$entity", - "inGracePeriodCount": 0, - "configManagerCount": 0, - "id": "afaac8a4-5f74-40f5-a213-51af45bedc36", - "unknownDeviceCount": 0, - "notApplicableDeviceCount": 0, - "compliantDeviceCount": 10, - "remediatedDeviceCount": 0, - "nonCompliantDeviceCount": 10, - "errorDeviceCount": 0, - "conflictDeviceCount": 0 - }, - "DeviceOwnership": { - "corporateCount": 20, - "personalCount": 10 - } - }, - "TenantOverview": { - "UserCount": 71000, - "GuestCount": 12, - "GroupCount": 1890, - "ApplicationCount": 120, - "DeviceCount": 20, - "ManagedDeviceCount": 0 - } - }, - "EndOfJson": "EndOfJson" -} + +// Populated by the reportDataPlaceholder Vite plugin, then replaced with the real assessment +// payload by Get-HtmlReport. The demo dataset lives in src/report/demo-report-data.json. +export const reportData: ZeroTrustAssessmentReport = ( + globalThis as unknown as { reportData: ZeroTrustAssessmentReport } +).reportData diff --git a/src/report/tsconfig.node.json b/src/report/tsconfig.node.json index 3afdd6e384..95384d93d0 100644 --- a/src/report/tsconfig.node.json +++ b/src/report/tsconfig.node.json @@ -9,5 +9,5 @@ "strict": true, "noEmit": true }, - "include": ["vite.config.ts"] + "include": ["vite.config.ts", "vite.config.current.ts", "vite-plugin-report-data.ts"] } diff --git a/src/report/vite-plugin-report-data.ts b/src/report/vite-plugin-report-data.ts new file mode 100644 index 0000000000..ea01b2f392 --- /dev/null +++ b/src/report/vite-plugin-report-data.ts @@ -0,0 +1,32 @@ +import { readFileSync } from "node:fs" +import path from "node:path" +import type { Plugin } from "vite" + +// PowerShell (Get-HtmlReport) replaces everything between these two markers with the real +// assessment payload, so the block must reach the built HTML byte-for-byte. Injecting it via +// transformIndexHtml keeps it out of the JS bundle, where the Oxc minifier would rename +// `reportData` and rewrite the double quotes to backticks. +export const reportDataStartMarker = "reportData={" +export const reportDataEndMarker = 'EndOfJson:"EndOfJson"}' + +export function reportDataPlaceholder(): Plugin { + return { + name: "zt:report-data-placeholder", + transformIndexHtml() { + const demoPath = path.resolve(__dirname, "demo-report-data.json") + const demoData = JSON.parse(readFileSync(demoPath, "utf8")) as Record + delete demoData.EndOfJson + + // EndOfJson is appended unquoted so the closing marker matches what Get-HtmlReport searches for. + const body = JSON.stringify(demoData).slice(1, -1) + + return [ + { + tag: "script", + children: `window.${reportDataStartMarker}${body},${reportDataEndMarker}`, + injectTo: "head-prepend", + }, + ] + }, + } +} diff --git a/src/report/vite.config.current.ts b/src/report/vite.config.current.ts index 921d9e748a..d1ff8c550e 100644 --- a/src/report/vite.config.current.ts +++ b/src/report/vite.config.current.ts @@ -2,25 +2,22 @@ import path from "path" import react from "@vitejs/plugin-react" import { defineConfig } from "vite" import { viteSingleFile } from "vite-plugin-singlefile" +import { reportDataPlaceholder } from "./vite-plugin-report-data" export default defineConfig({ - plugins: [react(), viteSingleFile()], + plugins: [react(), reportDataPlaceholder(), viteSingleFile()], resolve: { alias: { "@": path.resolve(__dirname, "./src-curent"), }, }, - esbuild: { - minifyIdentifiers: false, - keepNames: true, - }, define: { global: { basename: "", }, }, build: { - rollupOptions: { + rolldownOptions: { input: path.resolve(__dirname, "index.current.html"), }, }, diff --git a/src/report/vite.config.ts b/src/report/vite.config.ts index 6b39d891dc..e91efc9fcd 100644 --- a/src/report/vite.config.ts +++ b/src/report/vite.config.ts @@ -2,21 +2,16 @@ import path from "path" import react from "@vitejs/plugin-react" import { defineConfig } from "vite" import { viteSingleFile } from "vite-plugin-singlefile" +import { reportDataPlaceholder } from "./vite-plugin-report-data" -export default defineConfig(({ command }) => { - const isProd = command === 'build' - +export default defineConfig(() => { return { - plugins: [react(), viteSingleFile()], + plugins: [react(), reportDataPlaceholder(), viteSingleFile()], resolve: { alias: { "@": path.resolve(__dirname, "./src"), }, }, - esbuild: { - minifyIdentifiers: false, - keepNames: true, - }, define: { global: { basename: '',