spire.xls.zaki 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,228 @@
1
+ # Spire.XLS-for-JavaScript
2
+ A professional Excel development component that can be used to create, read, write, and convert Excel files in web applications with JavaScript.
3
+
4
+ [![Foo](https://i.imgur.com/L6PhXkQ.png)](https://www.e-iceblue.com/Introduce/xls-for-javascript.html)
5
+
6
+ [Product Page](https://www.e-iceblue.com/Introduce/xls-for-javascript.html) | Documentation | Examples | [Forum](https://www.e-iceblue.com/forum/spire-xls-f4.html) | [Temporary License](https://www.e-iceblue.com/TemLicense.html) | [Customized Demo](https://www.e-iceblue.com/Misc/customized-demo.html)
7
+
8
+ [Spire.XLS for JavaScript](https://www.e-iceblue.com/Introduce/xls-for-javascript.html) is a powerful Excel JavaScript library that can be used to create, read, write, and convert Excel files in any JavaScript environment with no reliance on Microsoft Office Excel. This JavaScript library supports both client-side and server-side development, including environments like Node.js, and enables smooth integration with frameworks such as Vue, React, Angular, and pure JavaScript.
9
+
10
+ The API supports old Excel 97-2003 formats (.xls) and modern Excel formats like Excel 2007, Excel 2010, Excel 2013, Excel 2016, and Excel 2019 (.xlsx, .xlsb, .xlsm), as well as OpenOffice (.ods). It offers fast performance and reliability, reducing the complexity of manual Excel manipulation and avoiding the need for Microsoft Automation.
11
+
12
+ ### 100% Standalone JavaScript API
13
+ Spire.XLS for JavaScript is a completely standalone Excel manipulation library that does not require Microsoft Excel or Office to be installed on the system.
14
+
15
+ ### Freely Operate Excel Files
16
+ - Create/Save/Merge/Split/Get Excel files.
17
+ - Protect/Encrypt/Decrypt Excel files.
18
+ - Create/Add/Rename/Edit/Delete/Move worksheets.
19
+ - Insert/Modify/Remove hyperlinks.
20
+ - Add/Remove/Change/Hide/Show comments in Excel.
21
+ - Merge/Unmerge Excel cells, freeze/unfreeze panes, and insert/delete rows and columns.
22
+ - Add/Read/Calculate/Remove Excel formulas.
23
+ - Create/Refresh pivot tables.
24
+ - Apply/Remove conditional formatting.
25
+ - Add/Set/Change headers and footers.
26
+
27
+ ### Easily Manipulate Cells & Excel Calculation Engine at Runtime
28
+ Developers can easily manipulate Excel cells and evaluate formulas in JavaScript at runtime. The fast, scalable calculation engine is compatible with Excel versions from 97-2003 to 2019. The library supports a wide range of cell formatting options, including cell merging, text wrapping, alignment, rotation, interior, borders, and font formatting (e.g., font type, size, color, bold, italic, strikeout, underline). Conditional formatting, search/replace, filtering, and data validation are also supported.
29
+
30
+ ### Powerful & High-Quality Excel File Conversion
31
+ - Convert Excel to PDF/HTML/XML/CSV/Image/XPS/SVG.
32
+ - Convert CSV to Excel/CSV to PDF.
33
+ - Convert a selected range of cells to PDF.
34
+ - Convert XLS to XLSX or XSLX to XLS.
35
+ - Convert Excel to OpenDocument Spreadsheet (.ods).
36
+ - Save Excel charts as SVG/Image.
37
+ - Convert HTML to Excel.
38
+
39
+ ### Chart, Data, and Other Elements
40
+ Spire.XLS for JavaScript provides a variety of chart types such as Pie Chart, Bar Chart, Column Chart, Line Chart, and Radar Chart. It supports seamless data transportation between databases and Excel in JavaScript. Hyperlinks and templates are also supported, making it easy to integrate Excel functionality into your web applications.
41
+
42
+ ## Vue Examples
43
+
44
+ ### Create an Excel File in JavaScript
45
+ ```JavaScript
46
+ <template>
47
+ <span>Click the following button to create my first Excel</span>
48
+ <el-button @click="startProcessing">Start</el-button>
49
+ <a v-if="downloadUrl" :href="downloadUrl" :download="downloadName">
50
+ Click here to download the generated file
51
+ </a>
52
+ </template>
53
+
54
+ <script>
55
+ import { ref } from 'vue';
56
+
57
+ export default {
58
+ setup() {
59
+ const downloadUrl = ref(null);
60
+ const downloadName = ref("");
61
+
62
+ const startProcessing = async () => {
63
+ wasmModule = window.wasmModule;
64
+ if (wasmModule) {
65
+ // Load the ARIALUNI.TTF font file into the virtual file system (VFS)
66
+ await wasmModule.FetchFileToVFS('ARIALUNI.TTF', '/Library/Fonts/', `${import.meta.env.BASE_URL}static/font/`);
67
+
68
+ // Create a new workbook
69
+ const workbook = wasmModule.Workbook.Create();
70
+
71
+ // Clear default worksheets
72
+ workbook.Worksheets.Clear();
73
+
74
+ // Add a new worksheet named "MySheet"
75
+ const sheet = workbook.Worksheets.Add("MySheet");
76
+
77
+ // Set text for the "A1" range
78
+ sheet.Range.get("A1").Text = "Hello World";
79
+
80
+ // Set the column width to auto fit
81
+ sheet.Range.get("A1").AutoFitColumns();
82
+
83
+ // Define the output file name
84
+ const outputFileName = 'HelloWorld.xlsx';
85
+
86
+ // Save the workbook to the specified path
87
+ workbook.SaveToFile({fileName: outputFileName, version: wasmModule.ExcelVersion.Version2010});
88
+
89
+ // Read the saved file and convert to a Blob object
90
+ const modifiedFileArray = wasmModule.FS.readFile(outputFileName);
91
+ const modifiedFile = new Blob([modifiedFileArray], {type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'});
92
+
93
+ // Download the file
94
+ downloadName.value = outputFileName;
95
+ downloadUrl.value = URL.createObjectURL(modifiedFile);
96
+
97
+ // Clean up resources
98
+ workbook.Dispose();
99
+ }
100
+ };
101
+
102
+ return {
103
+ startProcessing,
104
+ downloadName,
105
+ downloadUrl
106
+ };
107
+ }
108
+ };
109
+ </script>
110
+ ```
111
+
112
+ ### Convert Excel to PDF in JavaScript
113
+ ```JavaScript
114
+ <template>
115
+ <span>Click the following button to convert Excel to PDF</span>
116
+ <el-button @click="startProcessing">Start</el-button>
117
+ <a v-if="downloadUrl" :href="downloadUrl" :download="downloadName">
118
+ Click here to download the generated file
119
+ </a>
120
+ </template>
121
+
122
+ <script>
123
+ import { ref } from 'vue';
124
+
125
+ export default {
126
+ setup() {
127
+ const downloadUrl = ref(null);
128
+ const downloadName = ref("");
129
+
130
+ const startProcessing = async () => {
131
+ if (wasmModule) {
132
+
133
+ await wasmModule.FetchFileToVFS('ARIALUNI.TTF', '/Library/Fonts/', `${import.meta.env.BASE_URL}static/font/`);
134
+
135
+ let inputFileName='ToPDF.xlsx';
136
+ await wasmModule.FetchFileToVFS(inputFileName, '', `${import.meta.env.BASE_URL}static/data/`);
137
+
138
+ // Create a new workbook
139
+ const workbook = wasmModule.Workbook.Create();
140
+ // Load an existing Excel document
141
+ workbook.LoadFromFile({fileName: inputFileName});
142
+
143
+ const outputFileName = 'ToPDF-out.pdf';
144
+ //Save to PDF
145
+ workbook.SaveToFile({fileName: outputFileName , fileFormat: wasmModule.FileFormat.PDF});
146
+ // Dispose of the object to release resources
147
+ workbook.Dispose();
148
+
149
+ const modifiedFileArray = FS.readFile(outputFileName);
150
+ const modifiedFile = new Blob([modifiedFileArray], {type: 'application/pdf'});
151
+
152
+ downloadName.value = outputFileName;
153
+ downloadUrl.value = URL.createObjectURL(modifiedFile);
154
+ }
155
+ };
156
+
157
+ return {
158
+ startProcessing,
159
+ downloadName,
160
+ downloadUrl
161
+ };
162
+ }
163
+ };
164
+ </script>
165
+ ```
166
+
167
+ ### Convert Excel to Image in JavaScript
168
+ ```JavaScript
169
+ <template>
170
+ <span>Click the following button to convert worksheet to image </span>
171
+ <el-button @click="startProcessing">Start</el-button>
172
+ <a v-if="downloadUrl" :href="downloadUrl" :download="downloadName">
173
+ Click here to download the generated file
174
+ </a>
175
+ </template>
176
+
177
+ <script>
178
+ import { ref } from 'vue';
179
+
180
+ export default {
181
+ setup() {
182
+ const downloadUrl = ref(null);
183
+ const downloadName = ref("");
184
+
185
+ const startProcessing = async () => {
186
+ wasmModule = window.wasmModule;
187
+ if (wasmModule) {
188
+ await wasmModule.FetchFileToVFS('ARIALUNI.TTF', '/Library/Fonts/', `${import.meta.env.BASE_URL}static/font/`);
189
+
190
+ let inputFileName='SheetToImage.xlsx';
191
+ await wasmModule.FetchFileToVFS(inputFileName, '', `${import.meta.env.BASE_URL}static/data/`);
192
+
193
+ // Create a new workbook
194
+ const workbook = wasmModule.Workbook.Create();
195
+ // Load an existing Excel document
196
+ workbook.LoadFromFile({fileName: inputFileName});
197
+
198
+ // Get the first worksheet
199
+ let sheet = workbook.Worksheets.get(0);
200
+
201
+ // Convert the sheet to image and save it
202
+ let image = sheet.ToImage(sheet.FirstRow, sheet.FirstColumn, sheet.LastRow, sheet.LastColumn);
203
+
204
+ const outputFileName ='SheetToImage-out.png';
205
+ // Save image to file
206
+ image.Save(outputFileName);
207
+ // Dispose of the workbook object to release resources
208
+ workbook.Dispose();
209
+
210
+ const modifiedFileArray = FS.readFile(outputFileName);
211
+ const modifiedFile = new Blob([modifiedFileArray], {type: 'image/png'});
212
+
213
+ downloadName.value = outputFileName;
214
+ downloadUrl.value = URL.createObjectURL(modifiedFile);
215
+ }
216
+ };
217
+
218
+ return {
219
+ startProcessing,
220
+ downloadName,
221
+ downloadUrl
222
+ };
223
+ }
224
+ };
225
+ </script>
226
+ ```
227
+
228
+ [Product Page](https://www.e-iceblue.com/Introduce/xls-for-javascript.html) | Documentation | Examples | [Forum](https://www.e-iceblue.com/forum/spire-xls-f4.html) | [Temporary License](https://www.e-iceblue.com/TemLicense.html) | [Customized Demo](https://www.e-iceblue.com/Misc/customized-demo.html)
Binary file
Binary file
@@ -0,0 +1,314 @@
1
+ //! Licensed to the .NET Foundation under one or more agreements.
2
+ //! The .NET Foundation licenses this file to you under the MIT license.
3
+
4
+ var e=!1;const t=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,8,1,6,0,6,64,25,11,11])),o=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,15,1,13,0,65,1,253,15,65,2,253,15,253,128,2,11])),n=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,10,1,8,0,65,0,253,15,253,98,11])),r=Symbol.for("wasm promise_control");function i(e,t){let o=null;const n=new Promise((function(n,r){o={isDone:!1,promise:null,resolve:t=>{o.isDone||(o.isDone=!0,n(t),e&&e())},reject:e=>{o.isDone||(o.isDone=!0,r(e),t&&t())}}}));o.promise=n;const i=n;return i[r]=o,{promise:i,promise_control:o}}function s(e){return e[r]}function a(e){e&&function(e){return void 0!==e[r]}(e)||Be(!1,"Promise is not controllable")}const l="__mono_message__",c=["debug","log","trace","warn","info","error"],d="MONO_WASM: ";let u,f,m,g,p,h;function w(e){g=e}function b(e){if(Pe.diagnosticTracing){const t="function"==typeof e?e():e;console.debug(d+t)}}function y(e,...t){console.info(d+e,...t)}function v(e,...t){console.info(e,...t)}function E(e,...t){console.warn(d+e,...t)}function _(e,...t){if(t&&t.length>0&&t[0]&&"object"==typeof t[0]){if(t[0].silent)return;if(t[0].toString)return void console.error(d+e,t[0].toString())}console.error(d+e,...t)}function x(e,t,o){return function(...n){try{let r=n[0];if(void 0===r)r="undefined";else if(null===r)r="null";else if("function"==typeof r)r=r.toString();else if("string"!=typeof r)try{r=JSON.stringify(r)}catch(e){r=r.toString()}t(o?JSON.stringify({method:e,payload:r,arguments:n.slice(1)}):[e+r,...n.slice(1)])}catch(e){m.error(`proxyConsole failed: ${e}`)}}}function j(e,t,o){f=t,g=e,m={...t};const n=`${o}/console`.replace("https://","wss://").replace("http://","ws://");u=new WebSocket(n),u.addEventListener("error",A),u.addEventListener("close",S),function(){for(const e of c)f[e]=x(`console.${e}`,T,!0)}()}function R(e){let t=30;const o=()=>{u?0==u.bufferedAmount||0==t?(e&&v(e),function(){for(const e of c)f[e]=x(`console.${e}`,m.log,!1)}(),u.removeEventListener("error",A),u.removeEventListener("close",S),u.close(1e3,e),u=void 0):(t--,globalThis.setTimeout(o,100)):e&&m&&m.log(e)};o()}function T(e){u&&u.readyState===WebSocket.OPEN?u.send(e):m.log(e)}function A(e){m.error(`[${g}] proxy console websocket error: ${e}`,e)}function S(e){m.debug(`[${g}] proxy console websocket closed: ${e}`,e)}function D(){Pe.preferredIcuAsset=O(Pe.config);let e="invariant"==Pe.config.globalizationMode;if(!e)if(Pe.preferredIcuAsset)Pe.diagnosticTracing&&b("ICU data archive(s) available, disabling invariant mode");else{if("custom"===Pe.config.globalizationMode||"all"===Pe.config.globalizationMode||"sharded"===Pe.config.globalizationMode){const e="invariant globalization mode is inactive and no ICU data archives are available";throw _(`ERROR: ${e}`),new Error(e)}Pe.diagnosticTracing&&b("ICU data archive(s) not available, using invariant globalization mode"),e=!0,Pe.preferredIcuAsset=null}const t="DOTNET_SYSTEM_GLOBALIZATION_INVARIANT",o=Pe.config.environmentVariables;if(void 0===o[t]&&e&&(o[t]="1"),void 0===o.TZ)try{const e=Intl.DateTimeFormat().resolvedOptions().timeZone||null;e&&(o.TZ=e)}catch(e){y("failed to detect timezone, will fallback to UTC")}}function O(e){var t;if((null===(t=e.resources)||void 0===t?void 0:t.icu)&&"invariant"!=e.globalizationMode){const t=e.applicationCulture||(ke?globalThis.navigator&&globalThis.navigator.languages&&globalThis.navigator.languages[0]:Intl.DateTimeFormat().resolvedOptions().locale),o=e.resources.icu;let n=null;if("custom"===e.globalizationMode){if(o.length>=1)return o[0].name}else t&&"all"!==e.globalizationMode?"sharded"===e.globalizationMode&&(n=function(e){const t=e.split("-")[0];return"en"===t||["fr","fr-FR","it","it-IT","de","de-DE","es","es-ES"].includes(e)?"icudt_EFIGS.dat":["zh","ko","ja"].includes(t)?"icudt_CJK.dat":"icudt_no_CJK.dat"}(t)):n="icudt.dat";if(n)for(let e=0;e<o.length;e++){const t=o[e];if(t.virtualPath===n)return t.name}}return e.globalizationMode="invariant",null}(new Date).valueOf();const C=class{constructor(e){this.url=e}toString(){return this.url}};async function k(e,t){try{const o="function"==typeof globalThis.fetch;if(Se){const n=e.startsWith("file://");if(!n&&o)return globalThis.fetch(e,t||{credentials:"same-origin"});p||(h=Ne.require("url"),p=Ne.require("fs")),n&&(e=h.fileURLToPath(e));const r=await p.promises.readFile(e);return{ok:!0,headers:{length:0,get:()=>null},url:e,arrayBuffer:()=>r,json:()=>JSON.parse(r),text:()=>{throw new Error("NotImplementedException")}}}if(o)return globalThis.fetch(e,t||{credentials:"same-origin"});if("function"==typeof read)return{ok:!0,url:e,headers:{length:0,get:()=>null},arrayBuffer:()=>new Uint8Array(read(e,"binary")),json:()=>JSON.parse(read(e,"utf8")),text:()=>read(e,"utf8")}}catch(t){return{ok:!1,url:e,status:500,headers:{length:0,get:()=>null},statusText:"ERR28: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t},text:()=>{throw t}}}throw new Error("No fetch implementation available")}function I(e){return"string"!=typeof e&&Be(!1,"url must be a string"),!M(e)&&0!==e.indexOf("./")&&0!==e.indexOf("../")&&globalThis.URL&&globalThis.document&&globalThis.document.baseURI&&(e=new URL(e,globalThis.document.baseURI).toString()),e}const U=/^[a-zA-Z][a-zA-Z\d+\-.]*?:\/\//,P=/[a-zA-Z]:[\\/]/;function M(e){return Se||Ie?e.startsWith("/")||e.startsWith("\\")||-1!==e.indexOf("///")||P.test(e):U.test(e)}let L,N=0;const $=[],z=[],W=new Map,F={"js-module-threads":!0,"js-module-runtime":!0,"js-module-dotnet":!0,"js-module-native":!0,"js-module-diagnostics":!0},B={...F,"js-module-library-initializer":!0},V={...F,dotnetwasm:!0,heap:!0,manifest:!0},q={...B,manifest:!0},H={...B,dotnetwasm:!0},J={dotnetwasm:!0,symbols:!0},Z={...B,dotnetwasm:!0,symbols:!0},Q={symbols:!0};function G(e){return!("icu"==e.behavior&&e.name!=Pe.preferredIcuAsset)}function K(e,t,o){null!=t||(t=[]),Be(1==t.length,`Expect to have one ${o} asset in resources`);const n=t[0];return n.behavior=o,X(n),e.push(n),n}function X(e){V[e.behavior]&&W.set(e.behavior,e)}function Y(e){Be(V[e],`Unknown single asset behavior ${e}`);const t=W.get(e);if(t&&!t.resolvedUrl)if(t.resolvedUrl=Pe.locateFile(t.name),F[t.behavior]){const e=ge(t);e?("string"!=typeof e&&Be(!1,"loadBootResource response for 'dotnetjs' type should be a URL string"),t.resolvedUrl=e):t.resolvedUrl=ce(t.resolvedUrl,t.behavior)}else if("dotnetwasm"!==t.behavior)throw new Error(`Unknown single asset behavior ${e}`);return t}function ee(e){const t=Y(e);return Be(t,`Single asset for ${e} not found`),t}let te=!1;async function oe(){if(!te){te=!0,Pe.diagnosticTracing&&b("mono_download_assets");try{const e=[],t=[],o=(e,t)=>{!Z[e.behavior]&&G(e)&&Pe.expected_instantiated_assets_count++,!H[e.behavior]&&G(e)&&(Pe.expected_downloaded_assets_count++,t.push(se(e)))};for(const t of $)o(t,e);for(const e of z)o(e,t);Pe.allDownloadsQueued.promise_control.resolve(),Promise.all([...e,...t]).then((()=>{Pe.allDownloadsFinished.promise_control.resolve()})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e})),await Pe.runtimeModuleLoaded.promise;const n=async e=>{const t=await e;if(t.buffer){if(!Z[t.behavior]){t.buffer&&"object"==typeof t.buffer||Be(!1,"asset buffer must be array-like or buffer-like or promise of these"),"string"!=typeof t.resolvedUrl&&Be(!1,"resolvedUrl must be string");const e=t.resolvedUrl,o=await t.buffer,n=new Uint8Array(o);pe(t),await Ue.beforeOnRuntimeInitialized.promise,Ue.instantiate_asset(t,e,n)}}else J[t.behavior]?("symbols"===t.behavior&&(await Ue.instantiate_symbols_asset(t),pe(t)),J[t.behavior]&&++Pe.actual_downloaded_assets_count):(t.isOptional||Be(!1,"Expected asset to have the downloaded buffer"),!H[t.behavior]&&G(t)&&Pe.expected_downloaded_assets_count--,!Z[t.behavior]&&G(t)&&Pe.expected_instantiated_assets_count--)},r=[],i=[];for(const t of e)r.push(n(t));for(const e of t)i.push(n(e));Promise.all(r).then((()=>{Ce||Ue.coreAssetsInMemory.promise_control.resolve()})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e})),Promise.all(i).then((async()=>{Ce||(await Ue.coreAssetsInMemory.promise,Ue.allAssetsInMemory.promise_control.resolve())})).catch((e=>{throw Pe.err("Error in mono_download_assets: "+e),Xe(1,e),e}))}catch(e){throw Pe.err("Error in mono_download_assets: "+e),e}}}let ne=!1;function re(){if(ne)return;ne=!0;const e=Pe.config,t=[];if(e.assets)for(const t of e.assets)"object"!=typeof t&&Be(!1,`asset must be object, it was ${typeof t} : ${t}`),"string"!=typeof t.behavior&&Be(!1,"asset behavior must be known string"),"string"!=typeof t.name&&Be(!1,"asset name must be string"),t.resolvedUrl&&"string"!=typeof t.resolvedUrl&&Be(!1,"asset resolvedUrl could be string"),t.hash&&"string"!=typeof t.hash&&Be(!1,"asset resolvedUrl could be string"),t.pendingDownload&&"object"!=typeof t.pendingDownload&&Be(!1,"asset pendingDownload could be object"),t.isCore?$.push(t):z.push(t),X(t);else if(e.resources){const o=e.resources;o.wasmNative||Be(!1,"resources.wasmNative must be defined"),o.jsModuleNative||Be(!1,"resources.jsModuleNative must be defined"),o.jsModuleRuntime||Be(!1,"resources.jsModuleRuntime must be defined"),K(z,o.wasmNative,"dotnetwasm"),K(t,o.jsModuleNative,"js-module-native"),K(t,o.jsModuleRuntime,"js-module-runtime"),o.jsModuleDiagnostics&&K(t,o.jsModuleDiagnostics,"js-module-diagnostics");const n=(e,t,o)=>{const n=e;n.behavior=t,o?(n.isCore=!0,$.push(n)):z.push(n)};if(o.coreAssembly)for(let e=0;e<o.coreAssembly.length;e++)n(o.coreAssembly[e],"assembly",!0);if(o.assembly)for(let e=0;e<o.assembly.length;e++)n(o.assembly[e],"assembly",!o.coreAssembly);if(0!=e.debugLevel&&Pe.isDebuggingSupported()){if(o.corePdb)for(let e=0;e<o.corePdb.length;e++)n(o.corePdb[e],"pdb",!0);if(o.pdb)for(let e=0;e<o.pdb.length;e++)n(o.pdb[e],"pdb",!o.corePdb)}if(e.loadAllSatelliteResources&&o.satelliteResources)for(const e in o.satelliteResources)for(let t=0;t<o.satelliteResources[e].length;t++){const r=o.satelliteResources[e][t];r.culture=e,n(r,"resource",!o.coreAssembly)}if(o.coreVfs)for(let e=0;e<o.coreVfs.length;e++)n(o.coreVfs[e],"vfs",!0);if(o.vfs)for(let e=0;e<o.vfs.length;e++)n(o.vfs[e],"vfs",!o.coreVfs);const r=O(e);if(r&&o.icu)for(let e=0;e<o.icu.length;e++){const t=o.icu[e];t.name===r&&n(t,"icu",!1)}if(o.wasmSymbols)for(let e=0;e<o.wasmSymbols.length;e++)n(o.wasmSymbols[e],"symbols",!1)}if(e.appsettings)for(let t=0;t<e.appsettings.length;t++){const o=e.appsettings[t],n=he(o);"appsettings.json"!==n&&n!==`appsettings.${e.applicationEnvironment}.json`||z.push({name:o,behavior:"vfs",noCache:!0,useCredentials:!0})}e.assets=[...$,...z,...t]}async function ie(e){const t=await se(e);return await t.pendingDownloadInternal.response,t.buffer}async function se(e){try{return await ae(e)}catch(t){if(!Pe.enableDownloadRetry)throw t;if(Ie||Se)throw t;if(e.pendingDownload&&e.pendingDownloadInternal==e.pendingDownload)throw t;if(e.resolvedUrl&&-1!=e.resolvedUrl.indexOf("file://"))throw t;if(t&&404==t.status)throw t;e.pendingDownloadInternal=void 0,await Pe.allDownloadsQueued.promise;try{return Pe.diagnosticTracing&&b(`Retrying download '${e.name}'`),await ae(e)}catch(t){return e.pendingDownloadInternal=void 0,await new Promise((e=>globalThis.setTimeout(e,100))),Pe.diagnosticTracing&&b(`Retrying download (2) '${e.name}' after delay`),await ae(e)}}}async function ae(e){for(;L;)await L.promise;try{++N,N==Pe.maxParallelDownloads&&(Pe.diagnosticTracing&&b("Throttling further parallel downloads"),L=i());const t=await async function(e){if(e.pendingDownload&&(e.pendingDownloadInternal=e.pendingDownload),e.pendingDownloadInternal&&e.pendingDownloadInternal.response)return e.pendingDownloadInternal.response;if(e.buffer){const t=await e.buffer;return e.resolvedUrl||(e.resolvedUrl="undefined://"+e.name),e.pendingDownloadInternal={url:e.resolvedUrl,name:e.name,response:Promise.resolve({ok:!0,arrayBuffer:()=>t,json:()=>JSON.parse(new TextDecoder("utf-8").decode(t)),text:()=>{throw new Error("NotImplementedException")},headers:{get:()=>{}}})},e.pendingDownloadInternal.response}const t=e.loadRemote&&Pe.config.remoteSources?Pe.config.remoteSources:[""];let o;for(let n of t){n=n.trim(),"./"===n&&(n="");const t=le(e,n);e.name===t?Pe.diagnosticTracing&&b(`Attempting to download '${t}'`):Pe.diagnosticTracing&&b(`Attempting to download '${t}' for ${e.name}`);try{e.resolvedUrl=t;const n=fe(e);if(e.pendingDownloadInternal=n,o=await n.response,!o||!o.ok)continue;return o}catch(e){o||(o={ok:!1,url:t,status:0,statusText:""+e});continue}}const n=e.isOptional||e.name.match(/\.pdb$/)&&Pe.config.ignorePdbLoadErrors;if(o||Be(!1,`Response undefined ${e.name}`),!n){const t=new Error(`download '${o.url}' for ${e.name} failed ${o.status} ${o.statusText}`);throw t.status=o.status,t}y(`optional download '${o.url}' for ${e.name} failed ${o.status} ${o.statusText}`)}(e);return t?(J[e.behavior]||(e.buffer=await t.arrayBuffer(),++Pe.actual_downloaded_assets_count),e):e}finally{if(--N,L&&N==Pe.maxParallelDownloads-1){Pe.diagnosticTracing&&b("Resuming more parallel downloads");const e=L;L=void 0,e.promise_control.resolve()}}}function le(e,t){let o;return null==t&&Be(!1,`sourcePrefix must be provided for ${e.name}`),e.resolvedUrl?o=e.resolvedUrl:(o=""===t?"assembly"===e.behavior||"pdb"===e.behavior?e.name:"resource"===e.behavior&&e.culture&&""!==e.culture?`${e.culture}/${e.name}`:e.name:t+e.name,o=ce(Pe.locateFile(o),e.behavior)),o&&"string"==typeof o||Be(!1,"attemptUrl need to be path or url string"),o}function ce(e,t){return Pe.modulesUniqueQuery&&q[t]&&(e+=Pe.modulesUniqueQuery),e}let de=0;const ue=new Set;function fe(e){try{e.resolvedUrl||Be(!1,"Request's resolvedUrl must be set");const t=function(e){let t=e.resolvedUrl;if(Pe.loadBootResource){const o=ge(e);if(o instanceof Promise)return o;"string"==typeof o&&(t=o)}const o={};return Pe.config.disableNoCacheFetch||(o.cache="no-cache"),e.useCredentials?o.credentials="include":!Pe.config.disableIntegrityCheck&&e.hash&&(o.integrity=e.hash),Pe.fetch_like(t,o)}(e),o={name:e.name,url:e.resolvedUrl,response:t};return ue.add(e.name),o.response.then((()=>{"assembly"==e.behavior&&Pe.loadedAssemblies.push(e.name),de++,Pe.onDownloadResourceProgress&&Pe.onDownloadResourceProgress(de,ue.size)})),o}catch(t){const o={ok:!1,url:e.resolvedUrl,status:500,statusText:"ERR29: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}};return{name:e.name,url:e.resolvedUrl,response:Promise.resolve(o)}}}const me={resource:"assembly",assembly:"assembly",pdb:"pdb",icu:"globalization",vfs:"configuration",manifest:"manifest",dotnetwasm:"dotnetwasm","js-module-dotnet":"dotnetjs","js-module-native":"dotnetjs","js-module-runtime":"dotnetjs","js-module-threads":"dotnetjs"};function ge(e){var t;if(Pe.loadBootResource){const o=null!==(t=e.hash)&&void 0!==t?t:"",n=e.resolvedUrl,r=me[e.behavior];if(r){const t=Pe.loadBootResource(r,e.name,n,o,e.behavior);return"string"==typeof t?I(t):t}}}function pe(e){e.pendingDownloadInternal=null,e.pendingDownload=null,e.buffer=null,e.moduleExports=null}function he(e){let t=e.lastIndexOf("/");return t>=0&&t++,e.substring(t)}async function we(e){e&&await Promise.all((null!=e?e:[]).map((e=>async function(e){try{const t=e.name;if(!e.moduleExports){const o=ce(Pe.locateFile(t),"js-module-library-initializer");Pe.diagnosticTracing&&b(`Attempting to import '${o}' for ${e}`),e.moduleExports=await import(/*! webpackIgnore: true */o)}Pe.libraryInitializers.push({scriptName:t,exports:e.moduleExports})}catch(t){E(`Failed to import library initializer '${e}': ${t}`)}}(e))))}async function be(e,t){if(!Pe.libraryInitializers)return;const o=[];for(let n=0;n<Pe.libraryInitializers.length;n++){const r=Pe.libraryInitializers[n];r.exports[e]&&o.push(ye(r.scriptName,e,(()=>r.exports[e](...t))))}await Promise.all(o)}async function ye(e,t,o){try{await o()}catch(o){throw E(`Failed to invoke '${t}' on library initializer '${e}': ${o}`),Xe(1,o),o}}function ve(e,t){if(e===t)return e;const o={...t};return void 0!==o.assets&&o.assets!==e.assets&&(o.assets=[...e.assets||[],...o.assets||[]]),void 0!==o.resources&&(o.resources=_e(e.resources||{assembly:[],jsModuleNative:[],jsModuleRuntime:[],wasmNative:[]},o.resources)),void 0!==o.environmentVariables&&(o.environmentVariables={...e.environmentVariables||{},...o.environmentVariables||{}}),void 0!==o.runtimeOptions&&o.runtimeOptions!==e.runtimeOptions&&(o.runtimeOptions=[...e.runtimeOptions||[],...o.runtimeOptions||[]]),Object.assign(e,o)}function Ee(e,t){if(e===t)return e;const o={...t};return o.config&&(e.config||(e.config={}),o.config=ve(e.config,o.config)),Object.assign(e,o)}function _e(e,t){if(e===t)return e;const o={...t};return void 0!==o.coreAssembly&&(o.coreAssembly=[...e.coreAssembly||[],...o.coreAssembly||[]]),void 0!==o.assembly&&(o.assembly=[...e.assembly||[],...o.assembly||[]]),void 0!==o.lazyAssembly&&(o.lazyAssembly=[...e.lazyAssembly||[],...o.lazyAssembly||[]]),void 0!==o.corePdb&&(o.corePdb=[...e.corePdb||[],...o.corePdb||[]]),void 0!==o.pdb&&(o.pdb=[...e.pdb||[],...o.pdb||[]]),void 0!==o.jsModuleWorker&&(o.jsModuleWorker=[...e.jsModuleWorker||[],...o.jsModuleWorker||[]]),void 0!==o.jsModuleNative&&(o.jsModuleNative=[...e.jsModuleNative||[],...o.jsModuleNative||[]]),void 0!==o.jsModuleDiagnostics&&(o.jsModuleDiagnostics=[...e.jsModuleDiagnostics||[],...o.jsModuleDiagnostics||[]]),void 0!==o.jsModuleRuntime&&(o.jsModuleRuntime=[...e.jsModuleRuntime||[],...o.jsModuleRuntime||[]]),void 0!==o.wasmSymbols&&(o.wasmSymbols=[...e.wasmSymbols||[],...o.wasmSymbols||[]]),void 0!==o.wasmNative&&(o.wasmNative=[...e.wasmNative||[],...o.wasmNative||[]]),void 0!==o.icu&&(o.icu=[...e.icu||[],...o.icu||[]]),void 0!==o.satelliteResources&&(o.satelliteResources=function(e,t){if(e===t)return e;for(const o in t)e[o]=[...e[o]||[],...t[o]||[]];return e}(e.satelliteResources||{},o.satelliteResources||{})),void 0!==o.modulesAfterConfigLoaded&&(o.modulesAfterConfigLoaded=[...e.modulesAfterConfigLoaded||[],...o.modulesAfterConfigLoaded||[]]),void 0!==o.modulesAfterRuntimeReady&&(o.modulesAfterRuntimeReady=[...e.modulesAfterRuntimeReady||[],...o.modulesAfterRuntimeReady||[]]),void 0!==o.extensions&&(o.extensions={...e.extensions||{},...o.extensions||{}}),void 0!==o.vfs&&(o.vfs=[...e.vfs||[],...o.vfs||[]]),Object.assign(e,o)}function xe(){const e=Pe.config;if(e.environmentVariables=e.environmentVariables||{},e.runtimeOptions=e.runtimeOptions||[],e.resources=e.resources||{assembly:[],jsModuleNative:[],jsModuleWorker:[],jsModuleRuntime:[],wasmNative:[],vfs:[],satelliteResources:{}},e.assets){Pe.diagnosticTracing&&b("config.assets is deprecated, use config.resources instead");for(const t of e.assets){const o={};switch(t.behavior){case"assembly":o.assembly=[t];break;case"pdb":o.pdb=[t];break;case"resource":o.satelliteResources={},o.satelliteResources[t.culture]=[t];break;case"icu":o.icu=[t];break;case"symbols":o.wasmSymbols=[t];break;case"vfs":o.vfs=[t];break;case"dotnetwasm":o.wasmNative=[t];break;case"js-module-threads":o.jsModuleWorker=[t];break;case"js-module-runtime":o.jsModuleRuntime=[t];break;case"js-module-native":o.jsModuleNative=[t];break;case"js-module-diagnostics":o.jsModuleDiagnostics=[t];break;case"js-module-dotnet":break;default:throw new Error(`Unexpected behavior ${t.behavior} of asset ${t.name}`)}_e(e.resources,o)}}e.debugLevel,e.applicationEnvironment||(e.applicationEnvironment="Production"),e.applicationCulture&&(e.environmentVariables.LANG=`${e.applicationCulture}.UTF-8`),Ue.diagnosticTracing=Pe.diagnosticTracing=!!e.diagnosticTracing,Ue.waitForDebugger=e.waitForDebugger,Pe.maxParallelDownloads=e.maxParallelDownloads||Pe.maxParallelDownloads,Pe.enableDownloadRetry=void 0!==e.enableDownloadRetry?e.enableDownloadRetry:Pe.enableDownloadRetry}let je=!1;async function Re(e){var t;if(je)return void await Pe.afterConfigLoaded.promise;let o;try{if(e.configSrc||Pe.config&&0!==Object.keys(Pe.config).length&&(Pe.config.assets||Pe.config.resources)||(e.configSrc="dotnet.boot.js"),o=e.configSrc,je=!0,o&&(Pe.diagnosticTracing&&b("mono_wasm_load_config"),await async function(e){const t=e.configSrc,o=Pe.locateFile(t);let n=null;void 0!==Pe.loadBootResource&&(n=Pe.loadBootResource("manifest",t,o,"","manifest"));let r,i=null;if(n)if("string"==typeof n)n.includes(".json")?(i=await s(I(n)),r=await Ae(i)):r=(await import(I(n))).config;else{const e=await n;"function"==typeof e.json?(i=e,r=await Ae(i)):r=e.config}else o.includes(".json")?(i=await s(ce(o,"manifest")),r=await Ae(i)):r=(await import(ce(o,"manifest"))).config;function s(e){return Pe.fetch_like(e,{method:"GET",credentials:"include",cache:"no-cache"})}Pe.config.applicationEnvironment&&(r.applicationEnvironment=Pe.config.applicationEnvironment),ve(Pe.config,r)}(e)),xe(),await we(null===(t=Pe.config.resources)||void 0===t?void 0:t.modulesAfterConfigLoaded),await be("onRuntimeConfigLoaded",[Pe.config]),e.onConfigLoaded)try{await e.onConfigLoaded(Pe.config,Le),xe()}catch(e){throw _("onConfigLoaded() failed",e),e}xe(),Pe.afterConfigLoaded.promise_control.resolve(Pe.config)}catch(t){const n=`Failed to load config file ${o} ${t} ${null==t?void 0:t.stack}`;throw Pe.config=e.config=Object.assign(Pe.config,{message:n,error:t,isError:!0}),Xe(1,new Error(n)),t}}function Te(){return!!globalThis.navigator&&(Pe.isChromium||Pe.isFirefox)}async function Ae(e){const t=Pe.config,o=await e.json();t.applicationEnvironment||o.applicationEnvironment||(o.applicationEnvironment=e.headers.get("Blazor-Environment")||e.headers.get("DotNet-Environment")||void 0),o.environmentVariables||(o.environmentVariables={});const n=e.headers.get("DOTNET-MODIFIABLE-ASSEMBLIES");n&&(o.environmentVariables.DOTNET_MODIFIABLE_ASSEMBLIES=n);const r=e.headers.get("ASPNETCORE-BROWSER-TOOLS");return r&&(o.environmentVariables.__ASPNETCORE_BROWSER_TOOLS=r),o}"function"!=typeof importScripts||globalThis.onmessage||(globalThis.dotnetSidecar=!0);const Se="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,De="function"==typeof importScripts,Oe=De&&"undefined"!=typeof dotnetSidecar,Ce=De&&!Oe,ke="object"==typeof window||De&&!Se,Ie=!ke&&!Se;let Ue={},Pe={},Me={},Le={},Ne={},$e=!1;const ze={},We={config:ze},Fe={mono:{},binding:{},internal:Ne,module:We,loaderHelpers:Pe,runtimeHelpers:Ue,diagnosticHelpers:Me,api:Le};function Be(e,t){if(e)return;const o="Assert failed: "+("function"==typeof t?t():t),n=new Error(o);_(o,n),Ue.nativeAbort(n)}function Ve(){return void 0!==Pe.exitCode}function qe(){return Ue.runtimeReady&&!Ve()}function He(){Ve()&&Be(!1,`.NET runtime already exited with ${Pe.exitCode} ${Pe.exitReason}. You can use runtime.runMain() which doesn't exit the runtime.`),Ue.runtimeReady||Be(!1,".NET runtime didn't start yet. Please call dotnet.create() first.")}function Je(){ke&&(globalThis.addEventListener("unhandledrejection",et),globalThis.addEventListener("error",tt))}let Ze,Qe;function Ge(e){Qe&&Qe(e),Xe(e,Pe.exitReason)}function Ke(e){Ze&&Ze(e||Pe.exitReason),Xe(1,e||Pe.exitReason)}function Xe(t,o){var n,r;const i=o&&"object"==typeof o;t=i&&"number"==typeof o.status?o.status:void 0===t?-1:t;const s=i&&"string"==typeof o.message?o.message:""+o;(o=i?o:Ue.ExitStatus?function(e,t){const o=new Ue.ExitStatus(e);return o.message=t,o.toString=()=>t,o}(t,s):new Error("Exit with code "+t+" "+s)).status=t,o.message||(o.message=s);const a=""+(o.stack||(new Error).stack);try{Object.defineProperty(o,"stack",{get:()=>a})}catch(e){}const l=!!o.silent;if(o.silent=!0,Ve())Pe.diagnosticTracing&&b("mono_exit called after exit");else{try{We.onAbort==Ke&&(We.onAbort=Ze),We.onExit==Ge&&(We.onExit=Qe),ke&&(globalThis.removeEventListener("unhandledrejection",et),globalThis.removeEventListener("error",tt)),Ue.runtimeReady?(Ue.jiterpreter_dump_stats&&Ue.jiterpreter_dump_stats(!1),0===t&&(null===(n=Pe.config)||void 0===n?void 0:n.interopCleanupOnExit)&&Ue.forceDisposeProxies(!0,!0),e&&0!==t&&(null===(r=Pe.config)||void 0===r||r.dumpThreadsOnNonZeroExit)):(Pe.diagnosticTracing&&b(`abort_startup, reason: ${o}`),function(e){Pe.allDownloadsQueued.promise_control.reject(e),Pe.allDownloadsFinished.promise_control.reject(e),Pe.afterConfigLoaded.promise_control.reject(e),Pe.wasmCompilePromise.promise_control.reject(e),Pe.runtimeModuleLoaded.promise_control.reject(e),Ue.dotnetReady&&(Ue.dotnetReady.promise_control.reject(e),Ue.afterInstantiateWasm.promise_control.reject(e),Ue.beforePreInit.promise_control.reject(e),Ue.afterPreInit.promise_control.reject(e),Ue.afterPreRun.promise_control.reject(e),Ue.beforeOnRuntimeInitialized.promise_control.reject(e),Ue.afterOnRuntimeInitialized.promise_control.reject(e),Ue.afterPostRun.promise_control.reject(e))}(o))}catch(e){E("mono_exit A failed",e)}try{l||(function(e,t){if(0!==e&&t){const e=Ue.ExitStatus&&t instanceof Ue.ExitStatus?b:_;"string"==typeof t?e(t):(void 0===t.stack&&(t.stack=(new Error).stack+""),t.message?e(Ue.stringify_as_error_with_stack?Ue.stringify_as_error_with_stack(t.message+"\n"+t.stack):t.message+"\n"+t.stack):e(JSON.stringify(t)))}!Ce&&Pe.config&&(Pe.config.logExitCode?Pe.config.forwardConsoleLogsToWS?R("WASM EXIT "+e):v("WASM EXIT "+e):Pe.config.forwardConsoleLogsToWS&&R())}(t,o),function(e){if(ke&&!Ce&&Pe.config&&Pe.config.appendElementOnExit&&document){const t=document.createElement("label");t.id="tests_done",0!==e&&(t.style.background="red"),t.innerHTML=""+e,document.body.appendChild(t)}}(t))}catch(e){E("mono_exit B failed",e)}Pe.exitCode=t,Pe.exitReason||(Pe.exitReason=o),!Ce&&Ue.runtimeReady&&We.runtimeKeepalivePop()}if(Pe.config&&Pe.config.asyncFlushOnExit&&0===t)throw(async()=>{try{await async function(){try{const e=await import(/*! webpackIgnore: true */"process"),t=e=>new Promise(((t,o)=>{e.on("error",o),e.end("","utf8",t)})),o=t(e.stderr),n=t(e.stdout);let r;const i=new Promise((e=>{r=setTimeout((()=>e("timeout")),1e3)}));await Promise.race([Promise.all([n,o]),i]),clearTimeout(r)}catch(e){_(`flushing std* streams failed: ${e}`)}}()}finally{Ye(t,o)}})(),o;Ye(t,o)}function Ye(e,t){if(Ue.runtimeReady&&Ue.nativeExit)try{Ue.nativeExit(e)}catch(e){!Ue.ExitStatus||e instanceof Ue.ExitStatus||E("set_exit_code_and_quit_now failed: "+e.toString())}if(0!==e||!ke)throw Se&&Ne.process?Ne.process.exit(e):Ue.quit&&Ue.quit(e,t),t}function et(e){ot(e,e.reason,"rejection")}function tt(e){ot(e,e.error,"error")}function ot(e,t,o){e.preventDefault();try{t||(t=new Error("Unhandled "+o)),void 0===t.stack&&(t.stack=(new Error).stack),t.stack=t.stack+"",t.silent||(_("Unhandled error:",t),Xe(1,t))}catch(e){}}!function(e){if($e)throw new Error("Loader module already loaded");$e=!0,Ue=e.runtimeHelpers,Pe=e.loaderHelpers,Me=e.diagnosticHelpers,Le=e.api,Ne=e.internal,Object.assign(Le,{INTERNAL:Ne,invokeLibraryInitializers:be}),Object.assign(e.module,{config:ve(ze,{environmentVariables:{}})});const r={mono_wasm_bindings_is_ready:!1,config:e.module.config,diagnosticTracing:!1,nativeAbort:e=>{throw e||new Error("abort")},nativeExit:e=>{throw new Error("exit:"+e)}},l={gitHash:"fad253f51b461736dfd3cd9c15977bb7493becef",config:e.module.config,diagnosticTracing:!1,maxParallelDownloads:16,enableDownloadRetry:!0,_loaded_files:[],loadedFiles:[],loadedAssemblies:[],libraryInitializers:[],workerNextNumber:1,actual_downloaded_assets_count:0,actual_instantiated_assets_count:0,expected_downloaded_assets_count:0,expected_instantiated_assets_count:0,afterConfigLoaded:i(),allDownloadsQueued:i(),allDownloadsFinished:i(),wasmCompilePromise:i(),runtimeModuleLoaded:i(),loadingWorkers:i(),is_exited:Ve,is_runtime_running:qe,assert_runtime_running:He,mono_exit:Xe,createPromiseController:i,getPromiseController:s,assertIsControllablePromise:a,mono_download_assets:oe,resolve_single_asset_path:ee,setup_proxy_console:j,set_thread_prefix:w,installUnhandledErrorHandler:Je,retrieve_asset_download:ie,invokeLibraryInitializers:be,isDebuggingSupported:Te,exceptions:t,simd:n,relaxedSimd:o};Object.assign(Ue,r),Object.assign(Pe,l)}(Fe);let nt,rt,it,st=!1,at=!1;async function lt(e){if(!at){if(at=!0,ke&&Pe.config.forwardConsoleLogsToWS&&void 0!==globalThis.WebSocket&&j("main",globalThis.console,globalThis.location.origin),We||Be(!1,"Null moduleConfig"),Pe.config||Be(!1,"Null moduleConfig.config"),"function"==typeof e){const t=e(Fe.api);if(t.ready)throw new Error("Module.ready couldn't be redefined.");Object.assign(We,t),Ee(We,t)}else{if("object"!=typeof e)throw new Error("Can't use moduleFactory callback of createDotnetRuntime function.");Ee(We,e)}await async function(e){if(Se){const e=await import(/*! webpackIgnore: true */"process"),t=14;if(e.versions.node.split(".")[0]<t)throw new Error(`NodeJS at '${e.execPath}' has too low version '${e.versions.node}', please use at least ${t}. See also https://aka.ms/dotnet-wasm-features`)}const t=/*! webpackIgnore: true */import.meta.url,o=t.indexOf("?");var n;if(o>0&&(Pe.modulesUniqueQuery=t.substring(o)),Pe.scriptUrl=t.replace(/\\/g,"/").replace(/[?#].*/,""),Pe.scriptDirectory=(n=Pe.scriptUrl).slice(0,n.lastIndexOf("/"))+"/",Pe.locateFile=e=>"URL"in globalThis&&globalThis.URL!==C?new URL(e,Pe.scriptDirectory).toString():M(e)?e:Pe.scriptDirectory+e,Pe.fetch_like=k,Pe.out=console.log,Pe.err=console.error,Pe.onDownloadResourceProgress=e.onDownloadResourceProgress,ke&&globalThis.navigator){const e=globalThis.navigator,t=e.userAgentData&&e.userAgentData.brands;t&&t.length>0?Pe.isChromium=t.some((e=>"Google Chrome"===e.brand||"Microsoft Edge"===e.brand||"Chromium"===e.brand)):e.userAgent&&(Pe.isChromium=e.userAgent.includes("Chrome"),Pe.isFirefox=e.userAgent.includes("Firefox"))}Ne.require=Se?await import(/*! webpackIgnore: true */"module").then((e=>e.createRequire(/*! webpackIgnore: true */import.meta.url))):Promise.resolve((()=>{throw new Error("require not supported")})),void 0===globalThis.URL&&(globalThis.URL=C)}(We)}}async function ct(e){return await lt(e),Ze=We.onAbort,Qe=We.onExit,We.onAbort=Ke,We.onExit=Ge,We.ENVIRONMENT_IS_PTHREAD?async function(){(function(){const e=new MessageChannel,t=e.port1,o=e.port2;t.addEventListener("message",(e=>{var n,r;n=JSON.parse(e.data.config),r=JSON.parse(e.data.monoThreadInfo),st?Pe.diagnosticTracing&&b("mono config already received"):(ve(Pe.config,n),Ue.monoThreadInfo=r,xe(),Pe.diagnosticTracing&&b("mono config received"),st=!0,Pe.afterConfigLoaded.promise_control.resolve(Pe.config),ke&&n.forwardConsoleLogsToWS&&void 0!==globalThis.WebSocket&&Pe.setup_proxy_console("worker-idle",console,globalThis.location.origin)),t.close(),o.close()}),{once:!0}),t.start(),self.postMessage({[l]:{monoCmd:"preload",port:o}},[o])})(),await Pe.afterConfigLoaded.promise,function(){const e=Pe.config;e.assets||Be(!1,"config.assets must be defined");for(const t of e.assets)X(t),Q[t.behavior]&&z.push(t)}(),setTimeout((async()=>{try{await oe()}catch(e){Xe(1,e)}}),0);const e=dt(),t=await Promise.all(e);return await ut(t),We}():async function(){var e;await Re(We),re();const t=dt();(async function(){try{const e=ee("dotnetwasm");await se(e),e&&e.pendingDownloadInternal&&e.pendingDownloadInternal.response||Be(!1,"Can't load dotnet.native.wasm");const t=await e.pendingDownloadInternal.response,o=t.headers&&t.headers.get?t.headers.get("Content-Type"):void 0;let n;if("function"==typeof WebAssembly.compileStreaming&&"application/wasm"===o)n=await WebAssembly.compileStreaming(t);else{ke&&"application/wasm"!==o&&E('WebAssembly resource does not have the expected content type "application/wasm", so falling back to slower ArrayBuffer instantiation.');const e=await t.arrayBuffer();Pe.diagnosticTracing&&b("instantiate_wasm_module buffered"),n=Ie?await Promise.resolve(new WebAssembly.Module(e)):await WebAssembly.compile(e)}e.pendingDownloadInternal=null,e.pendingDownload=null,e.buffer=null,e.moduleExports=null,Pe.wasmCompilePromise.promise_control.resolve(n)}catch(e){Pe.wasmCompilePromise.promise_control.reject(e)}})(),setTimeout((async()=>{try{D(),await oe()}catch(e){Xe(1,e)}}),0);const o=await Promise.all(t);return await ut(o),await Ue.dotnetReady.promise,await we(null===(e=Pe.config.resources)||void 0===e?void 0:e.modulesAfterRuntimeReady),await be("onRuntimeReady",[Fe.api]),Le}()}function dt(){const e=ee("js-module-runtime"),t=ee("js-module-native");if(nt&&rt)return[nt,rt,it];"object"==typeof e.moduleExports?nt=e.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${e.resolvedUrl}' for ${e.name}`),nt=import(/*! webpackIgnore: true */e.resolvedUrl)),"object"==typeof t.moduleExports?rt=t.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${t.resolvedUrl}' for ${t.name}`),rt=import(/*! webpackIgnore: true */t.resolvedUrl));const o=Y("js-module-diagnostics");return o&&("object"==typeof o.moduleExports?it=o.moduleExports:(Pe.diagnosticTracing&&b(`Attempting to import '${o.resolvedUrl}' for ${o.name}`),it=import(/*! webpackIgnore: true */o.resolvedUrl))),[nt,rt,it]}async function ut(e){const{initializeExports:t,initializeReplacements:o,configureRuntimeStartup:n,configureEmscriptenStartup:r,configureWorkerStartup:i,setRuntimeGlobals:s,passEmscriptenInternals:a}=e[0],{default:l}=e[1],c=e[2];s(Fe),t(Fe),c&&c.setRuntimeGlobals(Fe),await n(We),Pe.runtimeModuleLoaded.promise_control.resolve(),l((e=>(Object.assign(We,{ready:e.ready,__dotnet_runtime:{initializeReplacements:o,configureEmscriptenStartup:r,configureWorkerStartup:i,passEmscriptenInternals:a}}),We))).catch((e=>{if(e.message&&e.message.toLowerCase().includes("out of memory"))throw new Error(".NET runtime has failed to start, because too much memory was requested. Please decrease the memory by adjusting EmccMaximumHeapSize. See also https://aka.ms/dotnet-wasm-features");throw e}))}const ft=new class{withModuleConfig(e){try{return Ee(We,e),this}catch(e){throw Xe(1,e),e}}withOnConfigLoaded(e){try{return Ee(We,{onConfigLoaded:e}),this}catch(e){throw Xe(1,e),e}}withConsoleForwarding(){try{return ve(ze,{forwardConsoleLogsToWS:!0}),this}catch(e){throw Xe(1,e),e}}withExitOnUnhandledError(){try{return ve(ze,{exitOnUnhandledError:!0}),Je(),this}catch(e){throw Xe(1,e),e}}withAsyncFlushOnExit(){try{return ve(ze,{asyncFlushOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withExitCodeLogging(){try{return ve(ze,{logExitCode:!0}),this}catch(e){throw Xe(1,e),e}}withElementOnExit(){try{return ve(ze,{appendElementOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withInteropCleanupOnExit(){try{return ve(ze,{interopCleanupOnExit:!0}),this}catch(e){throw Xe(1,e),e}}withDumpThreadsOnNonZeroExit(){try{return ve(ze,{dumpThreadsOnNonZeroExit:!0}),this}catch(e){throw Xe(1,e),e}}withWaitingForDebugger(e){try{return ve(ze,{waitForDebugger:e}),this}catch(e){throw Xe(1,e),e}}withInterpreterPgo(e,t){try{return ve(ze,{interpreterPgo:e,interpreterPgoSaveDelay:t}),ze.runtimeOptions?ze.runtimeOptions.push("--interp-pgo-recording"):ze.runtimeOptions=["--interp-pgo-recording"],this}catch(e){throw Xe(1,e),e}}withConfig(e){try{return ve(ze,e),this}catch(e){throw Xe(1,e),e}}withConfigSrc(e){try{return e&&"string"==typeof e||Be(!1,"must be file path or URL"),Ee(We,{configSrc:e}),this}catch(e){throw Xe(1,e),e}}withVirtualWorkingDirectory(e){try{return e&&"string"==typeof e||Be(!1,"must be directory path"),ve(ze,{virtualWorkingDirectory:e}),this}catch(e){throw Xe(1,e),e}}withEnvironmentVariable(e,t){try{const o={};return o[e]=t,ve(ze,{environmentVariables:o}),this}catch(e){throw Xe(1,e),e}}withEnvironmentVariables(e){try{return e&&"object"==typeof e||Be(!1,"must be dictionary object"),ve(ze,{environmentVariables:e}),this}catch(e){throw Xe(1,e),e}}withDiagnosticTracing(e){try{return"boolean"!=typeof e&&Be(!1,"must be boolean"),ve(ze,{diagnosticTracing:e}),this}catch(e){throw Xe(1,e),e}}withDebugging(e){try{return null!=e&&"number"==typeof e||Be(!1,"must be number"),ve(ze,{debugLevel:e}),this}catch(e){throw Xe(1,e),e}}withApplicationArguments(...e){try{return e&&Array.isArray(e)||Be(!1,"must be array of strings"),ve(ze,{applicationArguments:e}),this}catch(e){throw Xe(1,e),e}}withRuntimeOptions(e){try{return e&&Array.isArray(e)||Be(!1,"must be array of strings"),ze.runtimeOptions?ze.runtimeOptions.push(...e):ze.runtimeOptions=e,this}catch(e){throw Xe(1,e),e}}withMainAssembly(e){try{return ve(ze,{mainAssemblyName:e}),this}catch(e){throw Xe(1,e),e}}withApplicationArgumentsFromQuery(){try{if(!globalThis.window)throw new Error("Missing window to the query parameters from");if(void 0===globalThis.URLSearchParams)throw new Error("URLSearchParams is supported");const e=new URLSearchParams(globalThis.window.location.search).getAll("arg");return this.withApplicationArguments(...e)}catch(e){throw Xe(1,e),e}}withApplicationEnvironment(e){try{return ve(ze,{applicationEnvironment:e}),this}catch(e){throw Xe(1,e),e}}withApplicationCulture(e){try{return ve(ze,{applicationCulture:e}),this}catch(e){throw Xe(1,e),e}}withResourceLoader(e){try{return Pe.loadBootResource=e,this}catch(e){throw Xe(1,e),e}}async download(){try{await async function(){lt(We),await Re(We),re(),D(),oe(),await Pe.allDownloadsFinished.promise}()}catch(e){throw Xe(1,e),e}}async create(){try{return this.instance||(this.instance=await async function(){return await ct(We),Fe.api}()),this.instance}catch(e){throw Xe(1,e),e}}async run(){try{return We.config||Be(!1,"Null moduleConfig.config"),this.instance||await this.create(),this.instance.runMainAndExit()}catch(e){throw Xe(1,e),e}}},mt=Xe,gt=ct;Ie||"function"==typeof globalThis.URL||Be(!1,"This browser/engine doesn't support URL API. Please use a modern version. See also https://aka.ms/dotnet-wasm-features"),"function"!=typeof globalThis.BigInt64Array&&Be(!1,"This browser/engine doesn't support BigInt64Array API. Please use a modern version. See also https://aka.ms/dotnet-wasm-features"),ft.withConfig(/*json-start*/
5
+ {
6
+ "mainAssemblyName": "Spire.Office.Wasm",
7
+ "resources": {
8
+ "hash": "sha256-zMAwpbe0GyQfB5AjL02ZI7UID5P2gMTbZmFf4BjWp5U=",
9
+ "jsModuleNative": [
10
+ {
11
+ "name": "dotnet.native.flt8jmhptj.js"
12
+ }
13
+ ],
14
+ "jsModuleRuntime": [
15
+ {
16
+ "name": "dotnet.runtime.0j6ezsi0n0.js"
17
+ }
18
+ ],
19
+ "wasmNative": [
20
+ {
21
+ "name": "dotnet.native.guohqnt3ul.wasm",
22
+ "integrity": "sha256-+MGSdl5rJgCvFGnByOmN6OjP03Opgm0bCnLVuMRKVoc="
23
+ }
24
+ ],
25
+ "icu": [
26
+ {
27
+ "virtualPath": "icudt_CJK.dat",
28
+ "name": "icudt_CJK.tjcz0u77k5.dat",
29
+ "integrity": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk="
30
+ },
31
+ {
32
+ "virtualPath": "icudt_EFIGS.dat",
33
+ "name": "icudt_EFIGS.tptq2av103.dat",
34
+ "integrity": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc="
35
+ },
36
+ {
37
+ "virtualPath": "icudt_no_CJK.dat",
38
+ "name": "icudt_no_CJK.lfu7j35m59.dat",
39
+ "integrity": "sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="
40
+ }
41
+ ],
42
+ "coreAssembly": [
43
+ {
44
+ "virtualPath": "System.Private.CoreLib.wasm",
45
+ "name": "System.Private.CoreLib.c5ae3kzjij.wasm",
46
+ "integrity": "sha256-IDIIfzYLirKobMIX69vKRN6Rm6gL4hstWBr6/rdQUgQ="
47
+ },
48
+ {
49
+ "virtualPath": "System.Runtime.InteropServices.JavaScript.wasm",
50
+ "name": "System.Runtime.InteropServices.JavaScript.4q9irir7kk.wasm",
51
+ "integrity": "sha256-RAtBmVOQZXPNnsUyxCtx2mpmJCrSGEPE4SZOa1Dbrq0="
52
+ }
53
+ ],
54
+ "assembly": [
55
+ {
56
+ "virtualPath": "Microsoft.CSharp.wasm",
57
+ "name": "Microsoft.CSharp.4hq768zed6.wasm",
58
+ "integrity": "sha256-yBdwa8axcJNTuhzV3iVkhTaVevjqDrH/AA+Dcpqo/zA="
59
+ },
60
+ {
61
+ "virtualPath": "Microsoft.Win32.Registry.wasm",
62
+ "name": "Microsoft.Win32.Registry.srbw85616r.wasm",
63
+ "integrity": "sha256-aCCceZNYe5yxjfgMxXUZ48bjQyyFsJ25uEqSSu++ffA="
64
+ },
65
+ {
66
+ "virtualPath": "SkiaSharp.wasm",
67
+ "name": "SkiaSharp.s18nvymim5.wasm",
68
+ "integrity": "sha256-gFAFQWyNwyS+o0oL0L2sVnKpMPZ7ihuk2IH7P/cykPs="
69
+ },
70
+ {
71
+ "virtualPath": "Spire.Common.Wasm.wasm",
72
+ "name": "Spire.Common.Wasm.j87m8zgsho.wasm",
73
+ "integrity": "sha256-I0KiBB56UH9EK18neA3NZ8dMKbl97XBMGoB72uPOXYo="
74
+ },
75
+ {
76
+ "virtualPath": "Spire.Office.Wasm.wasm",
77
+ "name": "Spire.Office.Wasm.bhxeqc1zfw.wasm",
78
+ "integrity": "sha256-/3o1buDtMNIGBXRee0J1AlP11hwcayFzcN3Egx1sluw="
79
+ },
80
+ {
81
+ "virtualPath": "System.Collections.wasm",
82
+ "name": "System.Collections.6zmlmiyg2o.wasm",
83
+ "integrity": "sha256-bhoXtmqQliv5iGLQYJZUZEYOL9RYKcOhiZj0E7dXGHU="
84
+ },
85
+ {
86
+ "virtualPath": "System.Collections.Concurrent.wasm",
87
+ "name": "System.Collections.Concurrent.zc66stnt39.wasm",
88
+ "integrity": "sha256-s0XF9+2cFs4/VtnDtY6gP++dui9kjRi7jXOocTqa+tY="
89
+ },
90
+ {
91
+ "virtualPath": "System.Collections.NonGeneric.wasm",
92
+ "name": "System.Collections.NonGeneric.v3hxr2yyb0.wasm",
93
+ "integrity": "sha256-JUivZl2oHwujKEFA+JE66TogijXnc59nzccnnE5IYzU="
94
+ },
95
+ {
96
+ "virtualPath": "System.Collections.Specialized.wasm",
97
+ "name": "System.Collections.Specialized.59c7vyw31g.wasm",
98
+ "integrity": "sha256-N7+oNG0e/GSDB18E8PHVtidebmJT2PYZuN6OZEaXLN8="
99
+ },
100
+ {
101
+ "virtualPath": "System.ComponentModel.wasm",
102
+ "name": "System.ComponentModel.bub1nonypu.wasm",
103
+ "integrity": "sha256-zUayQ06AqqykRFhxzCNTTaodJCZXdWPqphVAA+gR73Y="
104
+ },
105
+ {
106
+ "virtualPath": "System.ComponentModel.Primitives.wasm",
107
+ "name": "System.ComponentModel.Primitives.d2kkbxnypz.wasm",
108
+ "integrity": "sha256-laH7D7jhKYlr+6szqeHn1kb40hJLrJWB2THycYz23+c="
109
+ },
110
+ {
111
+ "virtualPath": "System.ComponentModel.TypeConverter.wasm",
112
+ "name": "System.ComponentModel.TypeConverter.nkwb5apbf5.wasm",
113
+ "integrity": "sha256-p1arHr74hvYOHTaRxEBVqqF5HLWkC+fL3OCaqEZRMpI="
114
+ },
115
+ {
116
+ "virtualPath": "System.Console.wasm",
117
+ "name": "System.Console.wpkyjuxyqc.wasm",
118
+ "integrity": "sha256-nKdRYxxi1ADQorvvikglFOLDX552BRkW0TC+62+K4dI="
119
+ },
120
+ {
121
+ "virtualPath": "System.Data.Common.wasm",
122
+ "name": "System.Data.Common.bjt8inlvqh.wasm",
123
+ "integrity": "sha256-h2Vc+fP9dfVz470eLUv/xOrX3hwtFaGJToJlgjwnzGY="
124
+ },
125
+ {
126
+ "virtualPath": "System.Diagnostics.Process.wasm",
127
+ "name": "System.Diagnostics.Process.ody5a52gzo.wasm",
128
+ "integrity": "sha256-TNtOYR29T2U7fJZUApYxYw9NtP0Mrlpq3CAkw/HrSv8="
129
+ },
130
+ {
131
+ "virtualPath": "System.Diagnostics.TraceSource.wasm",
132
+ "name": "System.Diagnostics.TraceSource.v276eyij83.wasm",
133
+ "integrity": "sha256-qSDZHQhV8zfsP8MhDCPPjNVIJ183rGN19OW6m6Su6Zo="
134
+ },
135
+ {
136
+ "virtualPath": "System.Drawing.Primitives.wasm",
137
+ "name": "System.Drawing.Primitives.q68h0bsrut.wasm",
138
+ "integrity": "sha256-ss+ZMPaqWoMkvTkrJjlR+RY9YwTfTTyPReWhM/bsap0="
139
+ },
140
+ {
141
+ "virtualPath": "System.Drawing.wasm",
142
+ "name": "System.Drawing.8v1a6ukkfm.wasm",
143
+ "integrity": "sha256-DJoelqUhVeHGNEhPHthja1BgXjgCleJwptglGHOM9OA="
144
+ },
145
+ {
146
+ "virtualPath": "System.Formats.Asn1.wasm",
147
+ "name": "System.Formats.Asn1.l558c4hicu.wasm",
148
+ "integrity": "sha256-54dndhMjqdeM/fme78VTou6Odaz/+yJKCKgUxFLWKCU="
149
+ },
150
+ {
151
+ "virtualPath": "System.Linq.Expressions.wasm",
152
+ "name": "System.Linq.Expressions.aogmoletna.wasm",
153
+ "integrity": "sha256-FlYKFL3lBSCOR5Fqwgg6mRl1H48e4aIfOdoM/aWz0HE="
154
+ },
155
+ {
156
+ "virtualPath": "System.Linq.wasm",
157
+ "name": "System.Linq.ip70imfm5l.wasm",
158
+ "integrity": "sha256-BgEcPOG4yG1XdFaibOU1XgpixALCWAyT5S5lNipIzE0="
159
+ },
160
+ {
161
+ "virtualPath": "System.Net.Http.wasm",
162
+ "name": "System.Net.Http.33zbxm9mrv.wasm",
163
+ "integrity": "sha256-oZBHKdQm3zKBFIDgxz6SzKZ2U6/ohwXlICFVVw6eYvU="
164
+ },
165
+ {
166
+ "virtualPath": "System.Net.NetworkInformation.wasm",
167
+ "name": "System.Net.NetworkInformation.bxbd0zphnd.wasm",
168
+ "integrity": "sha256-n7lz4exgBR8AcRKT+9fWbmonuPkBcQBMcZEqnitYO+g="
169
+ },
170
+ {
171
+ "virtualPath": "System.Net.Primitives.wasm",
172
+ "name": "System.Net.Primitives.07x8v5wr4z.wasm",
173
+ "integrity": "sha256-DM0o0BmLgtpbcrz5ftwHYTbqkSOyg28Qs/QJXDSayHo="
174
+ },
175
+ {
176
+ "virtualPath": "System.Net.Requests.wasm",
177
+ "name": "System.Net.Requests.q1da0yrxrs.wasm",
178
+ "integrity": "sha256-cucG9N3wc9LlxbtRg3YuPWUagbI2GphuWOBP7ZcJhWI="
179
+ },
180
+ {
181
+ "virtualPath": "System.Net.Security.wasm",
182
+ "name": "System.Net.Security.hjfji97owh.wasm",
183
+ "integrity": "sha256-k6Sx9ZQf/rGT3E4Fxs4ZsqDDz2iEnwnWjazxux9P7+0="
184
+ },
185
+ {
186
+ "virtualPath": "System.Net.WebClient.wasm",
187
+ "name": "System.Net.WebClient.xryc8qljha.wasm",
188
+ "integrity": "sha256-DfsOiaozqAVhVi2prm/HW8YFrUoDtvM8CAyldGXovHk="
189
+ },
190
+ {
191
+ "virtualPath": "System.Net.WebHeaderCollection.wasm",
192
+ "name": "System.Net.WebHeaderCollection.tziwbn6m1m.wasm",
193
+ "integrity": "sha256-11BtIMdfVhf8AzvrhWdOdYvEBQ5UsJd7emoDXye05gc="
194
+ },
195
+ {
196
+ "virtualPath": "System.Net.WebProxy.wasm",
197
+ "name": "System.Net.WebProxy.ctcjh5zt7k.wasm",
198
+ "integrity": "sha256-oBw6F2f9RY4Eoxu7dAMF+1JgP9joC7UreqO5zwrIcUM="
199
+ },
200
+ {
201
+ "virtualPath": "System.ObjectModel.wasm",
202
+ "name": "System.ObjectModel.1w5yds75ld.wasm",
203
+ "integrity": "sha256-r+DGjnTy3e6CgRyfo4b0uoOuxB9Qs1YdlJheqnpFU4o="
204
+ },
205
+ {
206
+ "virtualPath": "System.Private.Uri.wasm",
207
+ "name": "System.Private.Uri.x9j619mp1a.wasm",
208
+ "integrity": "sha256-61M5CM4HAxm1FuoHKPJMlmV25uHryTR3kvUYUg+XNbM="
209
+ },
210
+ {
211
+ "virtualPath": "System.Private.Xml.wasm",
212
+ "name": "System.Private.Xml.kjmv03k9qv.wasm",
213
+ "integrity": "sha256-IBCWM1nsH2jc5cQhDfD/7Ib+7M8lJvblU2JJnKHkC2s="
214
+ },
215
+ {
216
+ "virtualPath": "System.Private.Xml.Linq.wasm",
217
+ "name": "System.Private.Xml.Linq.g23hsxxnq0.wasm",
218
+ "integrity": "sha256-OEbUgZv/Ba7DRhrJ3cjVeih8bH8z2i0uII++8J1DALk="
219
+ },
220
+ {
221
+ "virtualPath": "System.Runtime.wasm",
222
+ "name": "System.Runtime.t843ax0b3s.wasm",
223
+ "integrity": "sha256-PWZBrqFvkwcg769HcTj6uEX5kVH3esFwsZ241+kAr6E="
224
+ },
225
+ {
226
+ "virtualPath": "System.Runtime.Numerics.wasm",
227
+ "name": "System.Runtime.Numerics.3kk1wsfecy.wasm",
228
+ "integrity": "sha256-rWFDfO6YEnX1N0a+Oplcyr0F6rR+7cbuKlgRCFl26zE="
229
+ },
230
+ {
231
+ "virtualPath": "System.Runtime.Serialization.Formatters.wasm",
232
+ "name": "System.Runtime.Serialization.Formatters.51qg2v7mov.wasm",
233
+ "integrity": "sha256-yfU/3FjzAVdsNokNrrwY1T5hS1qtDyyZ/DX39ZXU9xM="
234
+ },
235
+ {
236
+ "virtualPath": "System.Runtime.Serialization.Primitives.wasm",
237
+ "name": "System.Runtime.Serialization.Primitives.sk6f2d01b8.wasm",
238
+ "integrity": "sha256-DKUxcjhWebFtuAop0zbH2cghK1aH6Z12joL2R1rp2qY="
239
+ },
240
+ {
241
+ "virtualPath": "System.Security.Cryptography.wasm",
242
+ "name": "System.Security.Cryptography.575dcjsb4j.wasm",
243
+ "integrity": "sha256-kZPJSZcMYA0uf2rtDWrWyk+mehA220kavzC1dlqmXFw="
244
+ },
245
+ {
246
+ "virtualPath": "System.Text.Encoding.CodePages.wasm",
247
+ "name": "System.Text.Encoding.CodePages.yg4bo4x0c9.wasm",
248
+ "integrity": "sha256-nlxV/ZwjfIm7MmdJXtkDxhL2Rbb4W449Md8e21Deazk="
249
+ },
250
+ {
251
+ "virtualPath": "System.Text.RegularExpressions.wasm",
252
+ "name": "System.Text.RegularExpressions.vw1gwqisrr.wasm",
253
+ "integrity": "sha256-UaoW7R/TWQGyy+bHq65SOx2MqZkrPw0dZ3dVjbVVc0k="
254
+ },
255
+ {
256
+ "virtualPath": "System.Web.HttpUtility.wasm",
257
+ "name": "System.Web.HttpUtility.ecs7zx8i73.wasm",
258
+ "integrity": "sha256-wk0OowAsRYPwmTx6G91L7JLekIVV8KUh/OrTXyzpYAk="
259
+ },
260
+ {
261
+ "virtualPath": "System.Xml.Linq.wasm",
262
+ "name": "System.Xml.Linq.ezielfqkzx.wasm",
263
+ "integrity": "sha256-msiP+hhmOL4pxMsH0pIsueaLh78LNDe1D7Gz60N0jvk="
264
+ },
265
+ {
266
+ "virtualPath": "System.Xml.ReaderWriter.wasm",
267
+ "name": "System.Xml.ReaderWriter.o1p7qlbdi3.wasm",
268
+ "integrity": "sha256-jDhcks7ML51Qk0B0F4n9kQvhGkpJbSX8RG7tonTWGek="
269
+ },
270
+ {
271
+ "virtualPath": "System.wasm",
272
+ "name": "System.73436igil7.wasm",
273
+ "integrity": "sha256-cwWOZaOlWiAEvO+KvJwrGbZmVGU/y9yYgansWdR1DsQ="
274
+ }
275
+ ]
276
+ },
277
+ "debugLevel": 0,
278
+ "linkerEnabled": true,
279
+ "globalizationMode": "sharded",
280
+ "runtimeConfig": {
281
+ "RuntimeOptions": {
282
+ "ConfigProperties": {
283
+ "Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
284
+ "System.ComponentModel.DefaultValueAttribute.IsSupported": false,
285
+ "System.ComponentModel.Design.IDesignerHost.IsSupported": false,
286
+ "System.ComponentModel.TypeConverter.EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization": false,
287
+ "System.ComponentModel.TypeDescriptor.IsComObjectDescriptorSupported": false,
288
+ "System.Data.DataSet.XmlSerializationIsSupported": false,
289
+ "System.Diagnostics.Debugger.IsSupported": false,
290
+ "System.Diagnostics.Metrics.Meter.IsSupported": false,
291
+ "System.Diagnostics.Tracing.EventSource.IsSupported": false,
292
+ "System.Globalization.Invariant": false,
293
+ "System.TimeZoneInfo.Invariant": false,
294
+ "System.Linq.Enumerable.IsSizeOptimized": true,
295
+ "System.Net.Http.EnableActivityPropagation": false,
296
+ "System.Net.Http.WasmEnableStreamingResponse": true,
297
+ "System.Net.SocketsHttpHandler.Http3Support": false,
298
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
299
+ "System.Resources.ResourceManager.AllowCustomResourceTypes": false,
300
+ "System.Resources.UseSystemResourceKeys": true,
301
+ "System.Runtime.CompilerServices.RuntimeFeature.IsDynamicCodeSupported": true,
302
+ "System.Runtime.InteropServices.BuiltInComInterop.IsSupported": false,
303
+ "System.Runtime.InteropServices.EnableConsumingManagedCodeFromNativeHosting": false,
304
+ "System.Runtime.InteropServices.EnableCppCLIHostActivation": false,
305
+ "System.Runtime.InteropServices.Marshalling.EnableGeneratedComInterfaceComImportInterop": false,
306
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false,
307
+ "System.StartupHookProvider.IsSupported": false,
308
+ "System.Text.Encoding.EnableUnsafeUTF7Encoding": false,
309
+ "System.Text.Json.JsonSerializer.IsReflectionEnabledByDefault": false,
310
+ "System.Threading.Thread.EnableAutoreleasePool": false
311
+ }
312
+ }
313
+ }
314
+ }/*json-end*/);export{gt as default,ft as dotnet,mt as exit};