@mindexec/cli 0.2.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 +275 -0
- package/codex-runtime.js +960 -0
- package/launch-bridge.cjs +162 -0
- package/package.json +61 -0
- package/port-guard.cjs +232 -0
- package/scripts/setup-tree-sitter-grammars.mjs +59 -0
- package/server.js +8422 -0
- package/start-bridge.bat +32 -0
- package/start-bridge.sh +81 -0
- package/tree-sitter-grammars/README.md +18 -0
- package/tree-sitter-grammars/tree-sitter-c_sharp.wasm +0 -0
- package/tree-sitter-grammars/tree-sitter-go.wasm +0 -0
- package/tree-sitter-grammars/tree-sitter-java.wasm +0 -0
- package/tree-sitter-grammars/tree-sitter-javascript.wasm +0 -0
- package/tree-sitter-grammars/tree-sitter-python.wasm +0 -0
- package/tree-sitter-grammars/tree-sitter-rust.wasm +0 -0
- package/tree-sitter-grammars/tree-sitter-tsx.wasm +0 -0
- package/tree-sitter-grammars/tree-sitter-typescript.wasm +0 -0
- package/wwwroot/MindExecution.Web.styles.css +3 -0
- package/wwwroot/_content/MindExecution.Plugins.Admin/css/admin-dashboard.css +546 -0
- package/wwwroot/_content/MindExecution.Plugins.Directory/MindExecution.Plugins.Directory.u7utcng611.bundle.scp.css +7 -0
- package/wwwroot/_content/MindExecution.Plugins.Directory/background.png +0 -0
- package/wwwroot/_content/MindExecution.Plugins.Directory/directory-manager.js +202 -0
- package/wwwroot/_content/MindExecution.Plugins.Directory/exampleJsInterop.js +6 -0
- package/wwwroot/_content/MindExecution.Plugins.YouTube/css/youtube-search.css +251 -0
- package/wwwroot/_content/MindExecution.Shared/MindExecution.Shared.wsano1j4wp.bundle.scp.css +4 -0
- package/wwwroot/_content/MindExecution.Shared/css/admin-dashboard.css +559 -0
- package/wwwroot/_content/MindExecution.Shared/css/app.css +1 -0
- package/wwwroot/_content/MindExecution.Shared/css/mind-map-overrides.css +2936 -0
- package/wwwroot/_content/MindExecution.Shared/fonts/NotoSansKR-Bold.ttf +0 -0
- package/wwwroot/_content/MindExecution.Shared/fonts/NotoSansKR-Regular.ttf +0 -0
- package/wwwroot/_content/MindExecution.Shared/js/agent-visualization.js +359 -0
- package/wwwroot/_content/MindExecution.Shared/js/background-themes.js +1721 -0
- package/wwwroot/_content/MindExecution.Shared/js/code-master.js +8316 -0
- package/wwwroot/_content/MindExecution.Shared/js/file-system-helper.js +639 -0
- package/wwwroot/_content/MindExecution.Shared/js/helpers/InfiniteGridHelper.js +109 -0
- package/wwwroot/_content/MindExecution.Shared/js/marked.min.js +69 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +7982 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js.backup +1059 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +15803 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-dev-guards.js +325 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-dnd.js +1430 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-dnd.js.bak +434 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-glow-shader.js +260 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-interactions.js +7640 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js +160 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +9923 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-logic-workers.js +977 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-menu-manager.js +1431 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-multi-select.js +1716 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-node-search-worker.js +553 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +4541 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-object-manager.js +489 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-object-manager.js.backup +372 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-pipeline.js +2075 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-text-lod-system.js +646 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js +4323 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-texture-factory.js +2260 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-texture-factory.js.backup +1258 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-visibility-worker.js +890 -0
- package/wwwroot/_content/MindExecution.Shared/js/mindmap-toolbar.js +594 -0
- package/wwwroot/_content/MindExecution.Shared/js/native-drop-handler.js +170 -0
- package/wwwroot/_content/MindExecution.Shared/js/plan-master.js +788 -0
- package/wwwroot/_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js +50 -0
- package/wwwroot/_content/MindExecution.Shared/js/texture-worker-manager.js +188 -0
- package/wwwroot/_content/MindExecution.Shared/js/texture-worker.js +208 -0
- package/wwwroot/_content/MindExecution.Shared/js/three.min.js +6 -0
- package/wwwroot/_content/MindExecution.Shared/js/titlebar-handler.js +191 -0
- package/wwwroot/_content/MindExecution.Shared/js/token-manager.js +37 -0
- package/wwwroot/_content/MindExecution.Shared/js/token-worker.js +28 -0
- package/wwwroot/_content/MindExecution.Shared/js/troika-bundle.js +5626 -0
- package/wwwroot/_content/MindExecution.Shared/js/troika-bundle.js.map +7 -0
- package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/css/all.min.css +9 -0
- package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-brands-400.ttf +0 -0
- package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-brands-400.woff2 +0 -0
- package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-regular-400.ttf +0 -0
- package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-regular-400.woff2 +0 -0
- package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-solid-900.ttf +0 -0
- package/wwwroot/_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-solid-900.woff2 +0 -0
- package/wwwroot/_content/MindExecution.Shared/models/all-MiniLM-L6-v2-quantized.onnx +0 -0
- package/wwwroot/_content/MindExecution.Shared/models/vocab.txt +30522 -0
- package/wwwroot/_framework/Google.Protobuf.9h59ukbel7.dll +0 -0
- package/wwwroot/_framework/Markdig.d1j7v41cl1.dll +0 -0
- package/wwwroot/_framework/MessagePack.Annotations.l6qv48kgpt.dll +0 -0
- package/wwwroot/_framework/MessagePack.eqoptzx9d5.dll +0 -0
- package/wwwroot/_framework/Microsoft.AspNetCore.Authorization.k7dsih5y5g.dll +0 -0
- package/wwwroot/_framework/Microsoft.AspNetCore.Components.6nyje9sa0g.dll +0 -0
- package/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.iycd6unprw.dll +0 -0
- package/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.487u3twia4.dll +0 -0
- package/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.d0gcnmlxxz.dll +0 -0
- package/wwwroot/_framework/Microsoft.AspNetCore.Metadata.h4yevl9adi.dll +0 -0
- package/wwwroot/_framework/Microsoft.CSharp.qrvp77qmhs.dll +0 -0
- package/wwwroot/_framework/Microsoft.Data.Sqlite.jdlxgv2jtg.dll +0 -0
- package/wwwroot/_framework/Microsoft.EntityFrameworkCore.4gjazp7kjf.dll +0 -0
- package/wwwroot/_framework/Microsoft.EntityFrameworkCore.Abstractions.gocudnvz7b.dll +0 -0
- package/wwwroot/_framework/Microsoft.EntityFrameworkCore.Relational.lt4rsvinuo.dll +0 -0
- package/wwwroot/_framework/Microsoft.EntityFrameworkCore.Sqlite.69luj0fa9r.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.Caching.Abstractions.364t4jh3zz.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.Caching.Memory.izlxhpzosu.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.Configuration.8zq7hh41o7.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.8if74zs6ea.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.duvlngw8i0.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.t2hh9kvx0o.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.n4tg99oy8l.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.DependencyModel.h0d06ixk3e.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.rl32bkx2sd.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.Logging.dlht1xei0t.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.Options.qeunebioml.dll +0 -0
- package/wwwroot/_framework/Microsoft.Extensions.Primitives.18cr6vnuuz.dll +0 -0
- package/wwwroot/_framework/Microsoft.IO.RecyclableMemoryStream.r915vovvw4.dll +0 -0
- package/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.1ejljk3erv.dll +0 -0
- package/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.1596zr8gne.dll +0 -0
- package/wwwroot/_framework/Microsoft.IdentityModel.Logging.229uyvpgio.dll +0 -0
- package/wwwroot/_framework/Microsoft.IdentityModel.Tokens.9sibtajc9f.dll +0 -0
- package/wwwroot/_framework/Microsoft.JSInterop.17lq4j1j7g.dll +0 -0
- package/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.ryia5gxiad.dll +0 -0
- package/wwwroot/_framework/Microsoft.ML.OnnxRuntime.w9deo1m5ss.dll +0 -0
- package/wwwroot/_framework/Microsoft.ML.Tokenizers.cm2vuv2z61.dll +0 -0
- package/wwwroot/_framework/Microsoft.NET.StringTools.3qbrf4v2ki.dll +0 -0
- package/wwwroot/_framework/MimeMapping.og9ys58ylm.dll +0 -0
- package/wwwroot/_framework/MindExecution.Core.1q1trifbuu.dll +0 -0
- package/wwwroot/_framework/MindExecution.Kernel.gwwc40sc45.dll +0 -0
- package/wwwroot/_framework/MindExecution.Plugins.Admin.0jgrn1sckv.dll +0 -0
- package/wwwroot/_framework/MindExecution.Plugins.Business.13mme2qcag.dll +0 -0
- package/wwwroot/_framework/MindExecution.Plugins.Concept.dfp2mdt45q.dll +0 -0
- package/wwwroot/_framework/MindExecution.Plugins.Directory.3w4t6n3se0.dll +0 -0
- package/wwwroot/_framework/MindExecution.Plugins.PlanMaster.s0qpntz420.dll +0 -0
- package/wwwroot/_framework/MindExecution.Plugins.YouTube.iu11fq8d16.dll +0 -0
- package/wwwroot/_framework/MindExecution.Shared.7j27dcqnrc.dll +0 -0
- package/wwwroot/_framework/MindExecution.Web.pq1ty8ov2v.dll +0 -0
- package/wwwroot/_framework/Newtonsoft.Json.a56zs13vug.dll +0 -0
- package/wwwroot/_framework/SQLitePCLRaw.batteries_v2.rrd1nzawpp.dll +0 -0
- package/wwwroot/_framework/SQLitePCLRaw.core.1dxloztpfz.dll +0 -0
- package/wwwroot/_framework/SQLitePCLRaw.provider.e_sqlite3.oekyzl53i1.dll +0 -0
- package/wwwroot/_framework/Supabase.Core.s1pkj4aj0l.dll +0 -0
- package/wwwroot/_framework/Supabase.Functions.qz4nu782sg.dll +0 -0
- package/wwwroot/_framework/Supabase.Gotrue.twah27pkik.dll +0 -0
- package/wwwroot/_framework/Supabase.Postgrest.gmuuv369ih.dll +0 -0
- package/wwwroot/_framework/Supabase.Realtime.ox3kchdy3w.dll +0 -0
- package/wwwroot/_framework/Supabase.Storage.fnjnepaowr.dll +0 -0
- package/wwwroot/_framework/Supabase.azmaw5pgcz.dll +0 -0
- package/wwwroot/_framework/System.Collections.Concurrent.y1zmvuyipi.dll +0 -0
- package/wwwroot/_framework/System.Collections.Immutable.ug3j698qms.dll +0 -0
- package/wwwroot/_framework/System.Collections.NonGeneric.h66hj3863h.dll +0 -0
- package/wwwroot/_framework/System.Collections.Specialized.umr3y27ntj.dll +0 -0
- package/wwwroot/_framework/System.Collections.x53e19vfsj.dll +0 -0
- package/wwwroot/_framework/System.ComponentModel.Annotations.tz6gnt4ebt.dll +0 -0
- package/wwwroot/_framework/System.ComponentModel.Primitives.j7tiphu4rg.dll +0 -0
- package/wwwroot/_framework/System.ComponentModel.TypeConverter.ujlztox1gx.dll +0 -0
- package/wwwroot/_framework/System.ComponentModel.x9xz0ojfb6.dll +0 -0
- package/wwwroot/_framework/System.Console.ijzpqmj7ne.dll +0 -0
- package/wwwroot/_framework/System.Data.Common.1r0sqffq1p.dll +0 -0
- package/wwwroot/_framework/System.Diagnostics.DiagnosticSource.9upoqwq09o.dll +0 -0
- package/wwwroot/_framework/System.Diagnostics.Process.m99azzntjm.dll +0 -0
- package/wwwroot/_framework/System.Diagnostics.TraceSource.pl7wv26myr.dll +0 -0
- package/wwwroot/_framework/System.Diagnostics.Tracing.crlhfx6tut.dll +0 -0
- package/wwwroot/_framework/System.Drawing.Primitives.22e4y9ikq9.dll +0 -0
- package/wwwroot/_framework/System.Drawing.mi7d8hwowb.dll +0 -0
- package/wwwroot/_framework/System.Formats.Asn1.jx23sjiqnn.dll +0 -0
- package/wwwroot/_framework/System.IO.Compression.6fyoii3uej.dll +0 -0
- package/wwwroot/_framework/System.IO.Pipelines.vg77t4cd4d.dll +0 -0
- package/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.t67es60z5b.dll +0 -0
- package/wwwroot/_framework/System.Linq.1bkoxlqgmq.dll +0 -0
- package/wwwroot/_framework/System.Linq.Expressions.24xqiypwdt.dll +0 -0
- package/wwwroot/_framework/System.Linq.Queryable.hvd01d6rsa.dll +0 -0
- package/wwwroot/_framework/System.Memory.8dx3lwgym4.dll +0 -0
- package/wwwroot/_framework/System.Net.Http.Json.3mhdm9l1rf.dll +0 -0
- package/wwwroot/_framework/System.Net.Http.eitrz660my.dll +0 -0
- package/wwwroot/_framework/System.Net.NetworkInformation.3pkuofcv9r.dll +0 -0
- package/wwwroot/_framework/System.Net.Ping.8clj5pklrp.dll +0 -0
- package/wwwroot/_framework/System.Net.Primitives.qrp4wcjz1p.dll +0 -0
- package/wwwroot/_framework/System.Net.WebSockets.Client.2u6pv01g69.dll +0 -0
- package/wwwroot/_framework/System.Net.WebSockets.qp6u31zvm5.dll +0 -0
- package/wwwroot/_framework/System.Numerics.Tensors.0c7z4mt3on.dll +0 -0
- package/wwwroot/_framework/System.Numerics.Vectors.kc7ufp2j4l.dll +0 -0
- package/wwwroot/_framework/System.ObjectModel.qv82fot1ib.dll +0 -0
- package/wwwroot/_framework/System.Private.CoreLib.rkafq04oma.dll +0 -0
- package/wwwroot/_framework/System.Private.Uri.t9542hmr6j.dll +0 -0
- package/wwwroot/_framework/System.Private.Xml.Linq.n8n3ptrbwu.dll +0 -0
- package/wwwroot/_framework/System.Private.Xml.rxd3tytisn.dll +0 -0
- package/wwwroot/_framework/System.Reactive.t3fuon548l.dll +0 -0
- package/wwwroot/_framework/System.Reflection.Emit.9tjhp6y0j3.dll +0 -0
- package/wwwroot/_framework/System.Reflection.Emit.ILGeneration.stxyk8zoo1.dll +0 -0
- package/wwwroot/_framework/System.Reflection.Emit.Lightweight.6xrd5v8vg0.dll +0 -0
- package/wwwroot/_framework/System.Reflection.Primitives.wgn8fpwwvv.dll +0 -0
- package/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.sliym526xh.dll +0 -0
- package/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.oji7zut14z.dll +0 -0
- package/wwwroot/_framework/System.Runtime.InteropServices.te07xr2we9.dll +0 -0
- package/wwwroot/_framework/System.Runtime.Intrinsics.507y4h8nzq.dll +0 -0
- package/wwwroot/_framework/System.Runtime.Loader.v7gk4bse0k.dll +0 -0
- package/wwwroot/_framework/System.Runtime.Numerics.eqy5xjv3nd.dll +0 -0
- package/wwwroot/_framework/System.Runtime.Serialization.Formatters.zpkrub8lab.dll +0 -0
- package/wwwroot/_framework/System.Runtime.Serialization.Primitives.vhkpnbxjip.dll +0 -0
- package/wwwroot/_framework/System.Runtime.jn319d5nyg.dll +0 -0
- package/wwwroot/_framework/System.Security.Claims.0ztig1q9vo.dll +0 -0
- package/wwwroot/_framework/System.Security.Cryptography.vttizqc9ho.dll +0 -0
- package/wwwroot/_framework/System.Text.Encoding.Extensions.utdd47ny8f.dll +0 -0
- package/wwwroot/_framework/System.Text.Encodings.Web.wah8r1zoe0.dll +0 -0
- package/wwwroot/_framework/System.Text.Json.kxlfxj0wrs.dll +0 -0
- package/wwwroot/_framework/System.Text.RegularExpressions.dbqn58klox.dll +0 -0
- package/wwwroot/_framework/System.Threading.42ao9vi047.dll +0 -0
- package/wwwroot/_framework/System.Threading.Channels.hfa7j0uv2w.dll +0 -0
- package/wwwroot/_framework/System.Threading.Thread.caul0pdqul.dll +0 -0
- package/wwwroot/_framework/System.Transactions.Local.fimi2hamzo.dll +0 -0
- package/wwwroot/_framework/System.Web.HttpUtility.gq8yz50p2e.dll +0 -0
- package/wwwroot/_framework/System.Xml.Linq.kitin4zjoj.dll +0 -0
- package/wwwroot/_framework/System.Xml.ReaderWriter.kzvw3qgxb0.dll +0 -0
- package/wwwroot/_framework/System.Xml.XDocument.c539ki6cuq.dll +0 -0
- package/wwwroot/_framework/System.m05i39uvk9.dll +0 -0
- package/wwwroot/_framework/Websocket.Client.vapounvmnl.dll +0 -0
- package/wwwroot/_framework/blazor.boot.json +305 -0
- package/wwwroot/_framework/blazor.webassembly.js +1 -0
- package/wwwroot/_framework/dotnet.js +4 -0
- package/wwwroot/_framework/dotnet.native.vz0adxojrz.wasm +0 -0
- package/wwwroot/_framework/dotnet.native.xsn1d6x2kd.js +16 -0
- package/wwwroot/_framework/dotnet.runtime.dstopyvqzi.js +4 -0
- package/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat +0 -0
- package/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat +0 -0
- package/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat +0 -0
- package/wwwroot/_framework/netstandard.0xet7jg7ky.dll +0 -0
- package/wwwroot/_headers +40 -0
- package/wwwroot/_redirects +1 -0
- package/wwwroot/appsettings.json +71 -0
- package/wwwroot/icon-192.png +0 -0
- package/wwwroot/icon-512.png +0 -0
- package/wwwroot/index.html +710 -0
- package/wwwroot/js/marketing-tool.js +180 -0
- package/wwwroot/manifest.webmanifest +22 -0
- package/wwwroot/robots.txt +4 -0
- package/wwwroot/service-worker-assets.js +857 -0
- package/wwwroot/service-worker.js +33 -0
- package/wwwroot/sitemap.xml +27 -0
|
@@ -0,0 +1,857 @@
|
|
|
1
|
+
self.assetsManifest = {
|
|
2
|
+
"version": "DG6TAbxo",
|
|
3
|
+
"assets": [
|
|
4
|
+
{
|
|
5
|
+
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
6
|
+
"url": "MindExecution.Web.styles.css"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"hash": "sha256-UPqTKbj8nau1eT5VHNC1tC0UBI4VXv1zKa+0faWxshU=",
|
|
10
|
+
"url": "_content/MindExecution.Plugins.Admin/css/admin-dashboard.css"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"hash": "sha256-OgYpbaytrvghoA2wxfCuOqt+e5Q+eQMbHnQ87cIbphI=",
|
|
14
|
+
"url": "_content/MindExecution.Plugins.Directory/MindExecution.Plugins.Directory.u7utcng611.bundle.scp.css"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"hash": "sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=",
|
|
18
|
+
"url": "_content/MindExecution.Plugins.Directory/background.png"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"hash": "sha256-zbSwAFkDDzT6iEeGi/bVEaBFjzNfftVBVjpzbTh4OdI=",
|
|
22
|
+
"url": "_content/MindExecution.Plugins.Directory/directory-manager.js"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"hash": "sha256-FrrTtczTUEHjkhc/zWRPC7CmxeXI0JCZGc1+76qQ8B4=",
|
|
26
|
+
"url": "_content/MindExecution.Plugins.Directory/exampleJsInterop.js"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"hash": "sha256-qN2MAcT7NMZ8W+YK/2QZnuAH2zhmPH7r9IntDZudcp4=",
|
|
30
|
+
"url": "_content/MindExecution.Plugins.YouTube/css/youtube-search.css"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"hash": "sha256-kH3CxJLY8XCVxtVS5nUE4qAo6XJdXO27Ffcgo3eeMpQ=",
|
|
34
|
+
"url": "_content/MindExecution.Shared/MindExecution.Shared.wsano1j4wp.bundle.scp.css"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"hash": "sha256-dECFbJ78bNjNFge6o4mmKTysfOyiDcq3cQZ0StvvlPs=",
|
|
38
|
+
"url": "_content/MindExecution.Shared/css/admin-dashboard.css"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"hash": "sha256-dzjc3j3RtOqc6FJikAZowcpishOgwCLWoLJNNDyPUEA=",
|
|
42
|
+
"url": "_content/MindExecution.Shared/css/app.css"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"hash": "sha256-aFRuE02nuyx5pmI+f1OphRTDxfeIfFOF6ZSpgUnjOzU=",
|
|
46
|
+
"url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"hash": "sha256-xzOUCn3GhxQoSLMKSR6XE47VjcWMTK4zxE4+5S2kEcs=",
|
|
50
|
+
"url": "_content/MindExecution.Shared/fonts/NotoSansKR-Bold.ttf"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"hash": "sha256-xzOUCn3GhxQoSLMKSR6XE47VjcWMTK4zxE4+5S2kEcs=",
|
|
54
|
+
"url": "_content/MindExecution.Shared/fonts/NotoSansKR-Regular.ttf"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"hash": "sha256-MYNrz9H7GGKt0xqhRkroNlGU+3c9bI+Iy8p1nX0RZKg=",
|
|
58
|
+
"url": "_content/MindExecution.Shared/js/agent-visualization.js"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"hash": "sha256-Fu81AFnfHZZ7HTHC1vDJ+0068CH8BOmrYtYCjLrvjFM=",
|
|
62
|
+
"url": "_content/MindExecution.Shared/js/background-themes.js"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"hash": "sha256-o+cwRHSaWfV1KnCm21cuOmpU3+0jMhXKmyyIjj++WxI=",
|
|
66
|
+
"url": "_content/MindExecution.Shared/js/code-master.js"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"hash": "sha256-xWROAO24rxIpYwmG/pH9SJ3gXH69c6MLPsgsSlJuaIQ=",
|
|
70
|
+
"url": "_content/MindExecution.Shared/js/file-system-helper.js"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"hash": "sha256-pkFCSSfJY4+nBjJs7ZUgY6D/SdPVvGIFPqz4QY25dKI=",
|
|
74
|
+
"url": "_content/MindExecution.Shared/js/helpers/InfiniteGridHelper.js"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"hash": "sha256-Pn59f+s+XVjLbIBPaKtcJMx+XrYnD9bly7kSRzkhfQw=",
|
|
78
|
+
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"hash": "sha256-1bN3G+Kvz//ajslfZkDbiB0JlOEqYE9zDfzUyMUuHM4=",
|
|
82
|
+
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"hash": "sha256-3iZ+9CNO+IpZAPIoIa8KkFViVO7bqWpzVW72fnkUAew=",
|
|
86
|
+
"url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"hash": "sha256-Gb2UEcBSTZegpBX8BUGB/2oW5sSu3I0zILX/kC74sU4=",
|
|
90
|
+
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"hash": "sha256-ARI4hKXCfvwtwIU5T/tOyGwpdfyqA8kO+V7kmwC7TEA=",
|
|
94
|
+
"url": "_content/MindExecution.Shared/js/mind-map-dev-guards.js"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"hash": "sha256-dJFVGib0fUeandu5Tvb2Wtpq1w7XwxD8g2Dd+loVK+Q=",
|
|
98
|
+
"url": "_content/MindExecution.Shared/js/mind-map-dnd.js"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"hash": "sha256-pEMbimhqMmWLbimvgLk7R36whWOSvc5ygXT7DJS50MA=",
|
|
102
|
+
"url": "_content/MindExecution.Shared/js/mind-map-dnd.js.bak"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"hash": "sha256-7B7gdxe1oZBi+9GHUXcaf6njTH0c3tg8//wBYGfbBcg=",
|
|
106
|
+
"url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"hash": "sha256-zIo9kujUdpiJTLKRs9na8FB8c+WqTZr5eo2Bq5QkJhg=",
|
|
110
|
+
"url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"hash": "sha256-2l4PHH7mcabKibIZdh7LkR+E9OVbKDnAinGxMd44cmU=",
|
|
114
|
+
"url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"hash": "sha256-ZK4kJVsno8A3B4Sy+deHjTqFtstV2eSJDt+jPKgcfuM=",
|
|
118
|
+
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"hash": "sha256-cOAX+ZZ70JU+eU1RVGVgVFBCJq40NZ/qZ0zbQl9wTzM=",
|
|
122
|
+
"url": "_content/MindExecution.Shared/js/mind-map-logic-workers.js"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"hash": "sha256-/NnGltzBqWUm80M5qZxc1sVWN784H8vqYqTakabL4YI=",
|
|
126
|
+
"url": "_content/MindExecution.Shared/js/mind-map-menu-manager.js"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"hash": "sha256-vGcZ0vzKIRaHgJBk3MMivnsyJ5WMrzCrhILNFDaIfX4=",
|
|
130
|
+
"url": "_content/MindExecution.Shared/js/mind-map-multi-select.js"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"hash": "sha256-xJssU1XGBgy2NYVRe5JKRRFmQNq7BufzFXhZjHDq/lU=",
|
|
134
|
+
"url": "_content/MindExecution.Shared/js/mind-map-node-search-worker.js"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"hash": "sha256-yYoxPLbG2g8rBHwNyJBWZF/wi2hG0tQDXx3crliTTAA=",
|
|
138
|
+
"url": "_content/MindExecution.Shared/js/mind-map-nodes.js"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"hash": "sha256-3tRw4wn9UR7qbqh0+dpuQJYrPpQQZU4tRpjHEjpkjCc=",
|
|
142
|
+
"url": "_content/MindExecution.Shared/js/mind-map-object-manager.js"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"hash": "sha256-J6W4LtQ14coAV83CEn5izW4OQ6HgpUqi+6UsdlRGfWI=",
|
|
146
|
+
"url": "_content/MindExecution.Shared/js/mind-map-object-manager.js.backup"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"hash": "sha256-DYZK8gIcx+qM6Dex6QDlzkfUo/8KfHzpyl2Gmz7cBZw=",
|
|
150
|
+
"url": "_content/MindExecution.Shared/js/mind-map-pipeline.js"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"hash": "sha256-v+uBBIrgde8GhLr8xKvC2nK4UhfzBBP69RFZW1kDkhs=",
|
|
154
|
+
"url": "_content/MindExecution.Shared/js/mind-map-text-lod-system.js"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"hash": "sha256-0gAWq58h1V8S1FBvthDq1MC09ltzbd/ef99MMKhSFzw=",
|
|
158
|
+
"url": "_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"hash": "sha256-MMfGxAaxa3MZugIcUvHMrqpLmQdEHV3mZyJFIeQ7rUY=",
|
|
162
|
+
"url": "_content/MindExecution.Shared/js/mind-map-texture-factory.js"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"hash": "sha256-aPoxruQaOIkX+R/NXEtKYw5OBa0hRFmVaSw13NgF7mU=",
|
|
166
|
+
"url": "_content/MindExecution.Shared/js/mind-map-texture-factory.js.backup"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"hash": "sha256-5mgLA2obHdBQ5qgwG26pKX7q4ehmG4TOGE/0Iw7tD7s=",
|
|
170
|
+
"url": "_content/MindExecution.Shared/js/mind-map-visibility-worker.js"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"hash": "sha256-icukeXd/DhA/7V4F4NOJP9jiQfzjjjosaH7PK2ymqAg=",
|
|
174
|
+
"url": "_content/MindExecution.Shared/js/mindmap-toolbar.js"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"hash": "sha256-sYXZJ0TIMNKNKVMU8D8zuY21gYaQe5nfxf38jGG5Vso=",
|
|
178
|
+
"url": "_content/MindExecution.Shared/js/native-drop-handler.js"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"hash": "sha256-niFZ3izTz0U6mbyeTCqTilDNVD4jUIP5m0le64bbHz4=",
|
|
182
|
+
"url": "_content/MindExecution.Shared/js/plan-master.js"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"hash": "sha256-Ipr5535phtNLjLU+IofxWC0Xwge8JQbqtcJ5c+lZa8Q=",
|
|
186
|
+
"url": "_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"hash": "sha256-xaeJb+RAPW+ApkaW/dGXbgKPdiEzQmFOdwIKRElSOTo=",
|
|
190
|
+
"url": "_content/MindExecution.Shared/js/texture-worker-manager.js"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"hash": "sha256-QnTDTOFoGCohiGDtq0CjYKUBINt558ot2SyO1zdmH5g=",
|
|
194
|
+
"url": "_content/MindExecution.Shared/js/texture-worker.js"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"hash": "sha256-knS7zsjZYWhibHMrXTHHdaqM+36qBZm+wMF1kIosHOI=",
|
|
198
|
+
"url": "_content/MindExecution.Shared/js/three.min.js"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"hash": "sha256-utcm5br503HEiMW8/02Vf5jfTHRfc6YYMGQBhw0DYZw=",
|
|
202
|
+
"url": "_content/MindExecution.Shared/js/titlebar-handler.js"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"hash": "sha256-gsUYKDu5S/F5AGSg2enpKoz2nUlKGtNLa/4t4+cvHd0=",
|
|
206
|
+
"url": "_content/MindExecution.Shared/js/token-manager.js"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"hash": "sha256-sLMqj8SGZKfi40LWhCLgpHh96isGZej7KG/mkqQlDw4=",
|
|
210
|
+
"url": "_content/MindExecution.Shared/js/token-worker.js"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"hash": "sha256-SI8HlP2YC8hWgaVQHkgy4scTyCbAs4au83AJuQyLbzM=",
|
|
214
|
+
"url": "_content/MindExecution.Shared/js/troika-bundle.js"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"hash": "sha256-k2DrPx1DXIQkdbPWv0i32DkgzFJzDmCvEj1+mFqJ3jk=",
|
|
218
|
+
"url": "_content/MindExecution.Shared/js/troika-bundle.js.map"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"hash": "sha256-wiz7ZSCn/btzhjKDQBms9Hx4sSeUYsDrTLg7roPstac=",
|
|
222
|
+
"url": "_content/MindExecution.Shared/lib/font-awesome/css/all.min.css"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"hash": "sha256-VlbVlrxZcWWkIYL2eyufF9KuR6nj7xsEK5pylzlzBwU=",
|
|
226
|
+
"url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-brands-400.ttf"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"hash": "sha256-OokkzVIDooYocWrttc7wlD2kw7ROP/zukKsGOHtBxJA=",
|
|
230
|
+
"url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-brands-400.woff2"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"hash": "sha256-XQLcm4WOPIWnlPh+N5hX9P7cTibPFQAXFKmg4LHSKU0=",
|
|
234
|
+
"url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-regular-400.ttf"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"hash": "sha256-K8zs8Lx+ls1c5AA6vrOunuSj0ZFYxObt/S3zLS8NVyE=",
|
|
238
|
+
"url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-regular-400.woff2"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"hash": "sha256-+78G10N6ow881EyWg4AZNUWo/D6t+3rYl7uxAe7+xaI=",
|
|
242
|
+
"url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-solid-900.ttf"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"hash": "sha256-n8hfOkVEqw1XDH+Pm7uI242Sw1mycHWA6osHx1Zz6uI=",
|
|
246
|
+
"url": "_content/MindExecution.Shared/lib/font-awesome/webfonts/fa-solid-900.woff2"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"hash": "sha256-H99lZn1A63xxeJIhEzNl2X4OrxRXR8QDBzIuxBBRU0w=",
|
|
250
|
+
"url": "_content/MindExecution.Shared/models/all-MiniLM-L6-v2-quantized.onnx"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"hash": "sha256-B+ztN1zsFE0nyQAkHz4zlHjeyVj5L928VR8pXJkgOKM=",
|
|
254
|
+
"url": "_content/MindExecution.Shared/models/vocab.txt"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"hash": "sha256-A541k1abRTWr6MqmCXfGDYcKHirypJS19mzPQu3lJt0=",
|
|
258
|
+
"url": "_framework/Google.Protobuf.9h59ukbel7.dll"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"hash": "sha256-34Ry04hh+o21Q3VDOJoD0lmCasZYDBsC9CvOeWz3BjI=",
|
|
262
|
+
"url": "_framework/Markdig.d1j7v41cl1.dll"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"hash": "sha256-TXqgfSiMajkQnu32Q147qMQTNCh27Qi7WmTVXdOd0E0=",
|
|
266
|
+
"url": "_framework/MessagePack.Annotations.l6qv48kgpt.dll"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"hash": "sha256-ir2PqNZvQdW90kO3QMndOSkVqLTfE3PfWh8/3+CTqcg=",
|
|
270
|
+
"url": "_framework/MessagePack.eqoptzx9d5.dll"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"hash": "sha256-4Ddrkm2Srb5b/RhPJbwEApTIuAli1aMHNaHOTlhIZK4=",
|
|
274
|
+
"url": "_framework/Microsoft.AspNetCore.Authorization.k7dsih5y5g.dll"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"hash": "sha256-IgjZdsj/7tVVJZ4DbGjwodTyc4ZzALDbmpTufW1QA40=",
|
|
278
|
+
"url": "_framework/Microsoft.AspNetCore.Components.6nyje9sa0g.dll"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"hash": "sha256-2jBM4/a43VkCEGNTo9ix2wJ7wcQrjzzsnz6TcL5oNp0=",
|
|
282
|
+
"url": "_framework/Microsoft.AspNetCore.Components.Authorization.iycd6unprw.dll"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"hash": "sha256-FHejd/DI18Re+MHwhClST1OW2oKAozglmuZ8Sws/Zy0=",
|
|
286
|
+
"url": "_framework/Microsoft.AspNetCore.Components.Web.487u3twia4.dll"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"hash": "sha256-8wSQ4PXWJOP0vmb846GK+kqBjD+oWX30JnXa8+Ya5b8=",
|
|
290
|
+
"url": "_framework/Microsoft.AspNetCore.Components.WebAssembly.d0gcnmlxxz.dll"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"hash": "sha256-QafPuABsfHsCt2w6CWm2UO+m8KUItL7IVV5Fq+9l76A=",
|
|
294
|
+
"url": "_framework/Microsoft.AspNetCore.Metadata.h4yevl9adi.dll"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"hash": "sha256-6o/tuOkHBMay72/cNI1wQFAVkhtysujZhM1mPF40zOc=",
|
|
298
|
+
"url": "_framework/Microsoft.CSharp.qrvp77qmhs.dll"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"hash": "sha256-iUmaqm7wj5Wrslrvdd+du75iN1l/rziMxvT6/fcRjHk=",
|
|
302
|
+
"url": "_framework/Microsoft.Data.Sqlite.jdlxgv2jtg.dll"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"hash": "sha256-9Pd3GwRNfEY0aM61akc0WEfTViDuRQwEfcaW9J3D7Mw=",
|
|
306
|
+
"url": "_framework/Microsoft.EntityFrameworkCore.4gjazp7kjf.dll"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"hash": "sha256-UMvPdl8udfHPAa5vWkcEyTnoZ3ORsQb4Smz9ghsCDM4=",
|
|
310
|
+
"url": "_framework/Microsoft.EntityFrameworkCore.Abstractions.gocudnvz7b.dll"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"hash": "sha256-11ZATtUJ2JX2zeMSf/Z/7PMZdq/Hfo5kPKTVNsmuF7w=",
|
|
314
|
+
"url": "_framework/Microsoft.EntityFrameworkCore.Relational.lt4rsvinuo.dll"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"hash": "sha256-5tV9KYV0awK34dJPezryHV5iJ9VQA7Q0iYCVjChhJgI=",
|
|
318
|
+
"url": "_framework/Microsoft.EntityFrameworkCore.Sqlite.69luj0fa9r.dll"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"hash": "sha256-Wzpv5bcq7Wsu9PPFXS+u5fWnqw0ipWKIJkQX3KSWzow=",
|
|
322
|
+
"url": "_framework/Microsoft.Extensions.Caching.Abstractions.364t4jh3zz.dll"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"hash": "sha256-ci0xox4XN0ftdUITfOlZQdRJ2u/cb+90x6TychVD5N4=",
|
|
326
|
+
"url": "_framework/Microsoft.Extensions.Caching.Memory.izlxhpzosu.dll"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"hash": "sha256-VJnsEhYOSnZX9WQqjhhxGS3bRxztaFJwM28xEI5be6Y=",
|
|
330
|
+
"url": "_framework/Microsoft.Extensions.Configuration.8zq7hh41o7.dll"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"hash": "sha256-QHpxA81KskQ85419fjDS/XsdhJudVj+LubsRH42oXyw=",
|
|
334
|
+
"url": "_framework/Microsoft.Extensions.Configuration.Abstractions.8if74zs6ea.dll"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"hash": "sha256-i7RSPAQomw/YFG9kx1rcjT9WRBktFN5Ie+6LNogtOQc=",
|
|
338
|
+
"url": "_framework/Microsoft.Extensions.Configuration.Json.duvlngw8i0.dll"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"hash": "sha256-tRlR+0cA7DECBophJ7uK6e03IhvpRNlwpoGD1nbe6ec=",
|
|
342
|
+
"url": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.t2hh9kvx0o.dll"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"hash": "sha256-iZuDtfloTZeG3wB3nVtUD20jBKOLnIAq7rQwsT+rRLE=",
|
|
346
|
+
"url": "_framework/Microsoft.Extensions.DependencyInjection.n4tg99oy8l.dll"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"hash": "sha256-4Z/yKmNyitkpahNFPmC1CNUgGS+Si/FZGcLJms9xNoU=",
|
|
350
|
+
"url": "_framework/Microsoft.Extensions.DependencyModel.h0d06ixk3e.dll"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"hash": "sha256-QTZiRttwy/rr9Rda7js8EVENyoKvF6I1WSkf86WLIMA=",
|
|
354
|
+
"url": "_framework/Microsoft.Extensions.Logging.Abstractions.rl32bkx2sd.dll"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"hash": "sha256-USNlS/7EV0pMFwDGvNhyOwRcMpCUI9sZh+0QAamgm08=",
|
|
358
|
+
"url": "_framework/Microsoft.Extensions.Logging.dlht1xei0t.dll"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"hash": "sha256-svOrxX38OLxNvo6SWPZE369IgIy0Co6cYTl69sl+/MQ=",
|
|
362
|
+
"url": "_framework/Microsoft.Extensions.Options.qeunebioml.dll"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"hash": "sha256-X/fY6oU7ffvOneQSI7u8fCVBVvPqiQJ011G9XMQou8g=",
|
|
366
|
+
"url": "_framework/Microsoft.Extensions.Primitives.18cr6vnuuz.dll"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"hash": "sha256-ryT6NCt/nwhifrGy+UEPL2SXCx4TXF/kg3h4+Ks+y2g=",
|
|
370
|
+
"url": "_framework/Microsoft.IO.RecyclableMemoryStream.r915vovvw4.dll"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"hash": "sha256-aci25MrsL0APtch2tfoLu9eOBJJvT0W1nijd/41WBUg=",
|
|
374
|
+
"url": "_framework/Microsoft.IdentityModel.Abstractions.1ejljk3erv.dll"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"hash": "sha256-xULAzXU914wjK7md+5a6mFjnUBZTZOJDxVUk3+NNUqQ=",
|
|
378
|
+
"url": "_framework/Microsoft.IdentityModel.JsonWebTokens.1596zr8gne.dll"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"hash": "sha256-Wldlk+9Z8TE89cz81jc7jTKHs+gvol0hiZgVJN4kDM8=",
|
|
382
|
+
"url": "_framework/Microsoft.IdentityModel.Logging.229uyvpgio.dll"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"hash": "sha256-2QhIFrrPiaIkH/Usc7SbpR4CaEidCAyFPEZl8/ipisM=",
|
|
386
|
+
"url": "_framework/Microsoft.IdentityModel.Tokens.9sibtajc9f.dll"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"hash": "sha256-M5KHmtf1wOWvLDbq+ytj3O6lEbQd7SloHoiqDiB/Ofw=",
|
|
390
|
+
"url": "_framework/Microsoft.JSInterop.17lq4j1j7g.dll"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"hash": "sha256-fYzOx06Qj4ix7+OdEL8EpMavcH6pcSWs97DingoywdY=",
|
|
394
|
+
"url": "_framework/Microsoft.JSInterop.WebAssembly.ryia5gxiad.dll"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"hash": "sha256-TGmF30qi+BC6iis3w8eR5hnY/hJpVKa9KM/9P0reupU=",
|
|
398
|
+
"url": "_framework/Microsoft.ML.OnnxRuntime.w9deo1m5ss.dll"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"hash": "sha256-BLnLmmvOMzBx4HHGc1qJFLtV4eofGXcH7XG/TKv2ync=",
|
|
402
|
+
"url": "_framework/Microsoft.ML.Tokenizers.cm2vuv2z61.dll"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"hash": "sha256-5RyGeP1gKiHCSbNp6DOWYBmTUTJHb5Q02olr74CLo7E=",
|
|
406
|
+
"url": "_framework/Microsoft.NET.StringTools.3qbrf4v2ki.dll"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"hash": "sha256-aDT1phBFbtQuu2dKG0fMtPeNJLuPRJ+CH2/3h8BGAzs=",
|
|
410
|
+
"url": "_framework/MimeMapping.og9ys58ylm.dll"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"hash": "sha256-Bx+DnvKBnQ6pU+WkVnBtHJWmbT8+AfwdrzIsZOYRuwk=",
|
|
414
|
+
"url": "_framework/MindExecution.Core.1q1trifbuu.dll"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"hash": "sha256-kHUYRsoWMKBagWUNqjc2tZDNhinix4z4JbCHhmQqr+w=",
|
|
418
|
+
"url": "_framework/MindExecution.Kernel.gwwc40sc45.dll"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"hash": "sha256-bGesH24e01NzlKAZSfHwmyCRSCqXh7Dh8IzpYUD/+vQ=",
|
|
422
|
+
"url": "_framework/MindExecution.Plugins.Admin.0jgrn1sckv.dll"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"hash": "sha256-Tc/4bEirMCQn6JXVksPprJln7V0VOUCHXOqdMYYoHOc=",
|
|
426
|
+
"url": "_framework/MindExecution.Plugins.Business.13mme2qcag.dll"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"hash": "sha256-OecaUsIn1VlvDL5wBdzpYm2qwLSvYFEubsTNZD5cqWc=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.dfp2mdt45q.dll"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"hash": "sha256-A3Cd8T7bI7w2uz0HT8L6inpQp40EVGFAks1Hl7bPxo0=",
|
|
434
|
+
"url": "_framework/MindExecution.Plugins.Directory.3w4t6n3se0.dll"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"hash": "sha256-/IqukDrp/IN9xLgL2Tk49cFCKvhUil8tz9EED052KwM=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.s0qpntz420.dll"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"hash": "sha256-Zmlfr3wCyo/K6+6+wKziZnEvv9qaffdxaegJmSDs2vM=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.iu11fq8d16.dll"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"hash": "sha256-k0X8TvkgyDcpJk03YwVNKPYEN/oQ1BhAXH22CtP7lmM=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.7j27dcqnrc.dll"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"hash": "sha256-74+tLbyshIXRRBzB0l2KvysS0+DKpaZ4/JQ9KYf3lMo=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.pq1ty8ov2v.dll"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
454
|
+
"url": "_framework/Newtonsoft.Json.a56zs13vug.dll"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"hash": "sha256-CYGx4eJN3xjkLQ9s6noxjnNbh1+Yez4wb1VRGHJrJKc=",
|
|
458
|
+
"url": "_framework/SQLitePCLRaw.batteries_v2.rrd1nzawpp.dll"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"hash": "sha256-28/QTpWu+p7w3K1M0gAJsBjdPSlDyMzz9AWXue2RYbg=",
|
|
462
|
+
"url": "_framework/SQLitePCLRaw.core.1dxloztpfz.dll"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"hash": "sha256-MN1q54mSgfm3FaufjOsdZ7bUyNdqIdqq/CFZVfzzfww=",
|
|
466
|
+
"url": "_framework/SQLitePCLRaw.provider.e_sqlite3.oekyzl53i1.dll"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"hash": "sha256-0J7JrvsCWPIGGOHvg6eQdlbowQJX88M1w8PLuGp/yvs=",
|
|
470
|
+
"url": "_framework/Supabase.Core.s1pkj4aj0l.dll"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"hash": "sha256-BtNMx8dlAOsu+eIsvIQnzsvJGN6CC8OyJyOEdjYRNqo=",
|
|
474
|
+
"url": "_framework/Supabase.Functions.qz4nu782sg.dll"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"hash": "sha256-fZ/Rhvte1/pcm4zsKm9J7f0QUo4nFSSNX7E9aUj9d8w=",
|
|
478
|
+
"url": "_framework/Supabase.Gotrue.twah27pkik.dll"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"hash": "sha256-iAFhZnpd/Np1iUK1EMWgcALjZl7dpOB/JTlLX1Mswl0=",
|
|
482
|
+
"url": "_framework/Supabase.Postgrest.gmuuv369ih.dll"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"hash": "sha256-FO99ZdaMVo2lG136nVvZBAPEzr4IyyQaVJH9zyZs/Jk=",
|
|
486
|
+
"url": "_framework/Supabase.Realtime.ox3kchdy3w.dll"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"hash": "sha256-xcpFFVCKg9rWvQrN57I/g2PbZXtlHVR4/vglbmIodnQ=",
|
|
490
|
+
"url": "_framework/Supabase.Storage.fnjnepaowr.dll"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"hash": "sha256-Kon62RCQ4pqGTawYsp9LgAVwT/66ptahk8JIgsdBQvk=",
|
|
494
|
+
"url": "_framework/Supabase.azmaw5pgcz.dll"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"hash": "sha256-Ck7kxU/k8JSFhGAeqV6KEg5kH98KiUOlNonljuwQ4o0=",
|
|
498
|
+
"url": "_framework/System.Collections.Concurrent.y1zmvuyipi.dll"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"hash": "sha256-st03pxs/3cTQdha7QOOZN286TQMBYBEuH4wAXjnJ4JU=",
|
|
502
|
+
"url": "_framework/System.Collections.Immutable.ug3j698qms.dll"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"hash": "sha256-d+cn67T5IMnJdcPnJQRbuxySIzdbTitQ3rAFfubJ4ls=",
|
|
506
|
+
"url": "_framework/System.Collections.NonGeneric.h66hj3863h.dll"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"hash": "sha256-poi5TYD+s54Z1P5l7MocYVnpSm++8TGX9DloFrM6SRE=",
|
|
510
|
+
"url": "_framework/System.Collections.Specialized.umr3y27ntj.dll"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"hash": "sha256-hRwEXTvgGEFjFZDGfXuYQPavyiH0er00EDtztHEOImo=",
|
|
514
|
+
"url": "_framework/System.Collections.x53e19vfsj.dll"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"hash": "sha256-l61/c2uYi56qpyWIX/12gEHY2jUZ9rIw6aYJkIlw9YI=",
|
|
518
|
+
"url": "_framework/System.ComponentModel.Annotations.tz6gnt4ebt.dll"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"hash": "sha256-oR6FEo01aq/d5XZhpX+K0H7DZzGtinZOzGqOER9bZgI=",
|
|
522
|
+
"url": "_framework/System.ComponentModel.Primitives.j7tiphu4rg.dll"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"hash": "sha256-2kQT43XfRWl5CoYFhQcNuTVMwj3OzJDuEIH85B1ETAQ=",
|
|
526
|
+
"url": "_framework/System.ComponentModel.TypeConverter.ujlztox1gx.dll"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"hash": "sha256-yxxQq1bXUV7hAt+o+tG5x/KlCQv5by/6wKjqaxUDCS8=",
|
|
530
|
+
"url": "_framework/System.ComponentModel.x9xz0ojfb6.dll"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"hash": "sha256-LuInQDvbaA1VeGTMUYU3nh4uf8ugGSnib6ATezKRwEU=",
|
|
534
|
+
"url": "_framework/System.Console.ijzpqmj7ne.dll"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"hash": "sha256-zVh3N+lzJkUPbWm+ZQ50KDqHtAI/EEWsW+7HG0GSleA=",
|
|
538
|
+
"url": "_framework/System.Data.Common.1r0sqffq1p.dll"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"hash": "sha256-L+3uU7qZoaiH47sWbcTpQxCql5gTWNdbGZRm8NTp9JI=",
|
|
542
|
+
"url": "_framework/System.Diagnostics.DiagnosticSource.9upoqwq09o.dll"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"hash": "sha256-amwvZclIK1MygoLdEQmteFofqhqKjcp2msY/h7eLM/g=",
|
|
546
|
+
"url": "_framework/System.Diagnostics.Process.m99azzntjm.dll"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"hash": "sha256-fZXoeTpnemd3pxK5qItlDpPRqAji6d+uKejzhepPkYY=",
|
|
550
|
+
"url": "_framework/System.Diagnostics.TraceSource.pl7wv26myr.dll"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"hash": "sha256-mEQaPOtnpmvyjds1+FK80g9QiS282bqsc8TMaDMFxhM=",
|
|
554
|
+
"url": "_framework/System.Diagnostics.Tracing.crlhfx6tut.dll"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"hash": "sha256-KmZUDvj/FqNNaJ37c1wKvWhuk4VQNP+eGMTRvuOi8NA=",
|
|
558
|
+
"url": "_framework/System.Drawing.Primitives.22e4y9ikq9.dll"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"hash": "sha256-sqwwxcAqEVWASOEE8BNB4Qq4CNluUDfCUz9xnqgsUhQ=",
|
|
562
|
+
"url": "_framework/System.Drawing.mi7d8hwowb.dll"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"hash": "sha256-aWYxJmeExa6HZSootds9IACVVlWLL+JkR39ex6SH1ZM=",
|
|
566
|
+
"url": "_framework/System.Formats.Asn1.jx23sjiqnn.dll"
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"hash": "sha256-vrGOkN3kCU3fdZ2Tzb82Yb0mz7EU2OWdlHVLhXYyZaA=",
|
|
570
|
+
"url": "_framework/System.IO.Compression.6fyoii3uej.dll"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"hash": "sha256-j+5c3PPoHJVRg3zjIu7gNqXhmasp4vrNDeMnm6Z7XdI=",
|
|
574
|
+
"url": "_framework/System.IO.Pipelines.vg77t4cd4d.dll"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"hash": "sha256-5U8bXTHnkyF6fEtHFQ/OJiMWn1pUZuQ1WGtyeN997MQ=",
|
|
578
|
+
"url": "_framework/System.IdentityModel.Tokens.Jwt.t67es60z5b.dll"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"hash": "sha256-zVEYBIQllR9YgC/p1SgWk5T1aLJcp33sxjHJF24Dr8c=",
|
|
582
|
+
"url": "_framework/System.Linq.1bkoxlqgmq.dll"
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"hash": "sha256-3iskGlqrMiLa3tnWk83MgrCh53GCW7lxsWmPpttfkTM=",
|
|
586
|
+
"url": "_framework/System.Linq.Expressions.24xqiypwdt.dll"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"hash": "sha256-PVvjxIzdOApK8Ap/dVsbGcFV/jHvuIrHOwaJp/RPXa4=",
|
|
590
|
+
"url": "_framework/System.Linq.Queryable.hvd01d6rsa.dll"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"hash": "sha256-rADddIz/I7IQQp4aoKzeRI5o8UnxK9yd0Vx8eV5oiaQ=",
|
|
594
|
+
"url": "_framework/System.Memory.8dx3lwgym4.dll"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"hash": "sha256-a8Qe1DKLdn0Zj+QcCpRfPg4xG5hQPnl6kXUSZ1JZCEw=",
|
|
598
|
+
"url": "_framework/System.Net.Http.Json.3mhdm9l1rf.dll"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"hash": "sha256-JgntevOdWhFASPmhLZxqLigEQGkUyyhtmgC7Gme7qtM=",
|
|
602
|
+
"url": "_framework/System.Net.Http.eitrz660my.dll"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"hash": "sha256-R/gv/cP+2OhH552RxHWNmrOzh7B4W5PkyG0WxtkjTiA=",
|
|
606
|
+
"url": "_framework/System.Net.NetworkInformation.3pkuofcv9r.dll"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"hash": "sha256-OGQgzE6CjciEH+LESctjKDhh8LoDEQUYhbaVxegDf2w=",
|
|
610
|
+
"url": "_framework/System.Net.Ping.8clj5pklrp.dll"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"hash": "sha256-iuSCzEl/GwHlkT3cZOAaEzc+Ty6pOG7OTsc/7vHtQ2Q=",
|
|
614
|
+
"url": "_framework/System.Net.Primitives.qrp4wcjz1p.dll"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"hash": "sha256-2n0JWIygGIpj0patn/JUycaTp1o7mGzmX9a2fXfq3S8=",
|
|
618
|
+
"url": "_framework/System.Net.WebSockets.Client.2u6pv01g69.dll"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"hash": "sha256-ggtQ44Wz1n2RQozeqIl2Z3Q3F7L6f9sfPXkf5YNinPc=",
|
|
622
|
+
"url": "_framework/System.Net.WebSockets.qp6u31zvm5.dll"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"hash": "sha256-4DtN4IFw3nBQ0gTPV2egyX3DU/++K4wqx/jzGuNe8ik=",
|
|
626
|
+
"url": "_framework/System.Numerics.Tensors.0c7z4mt3on.dll"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"hash": "sha256-tNP0Q1W0eRg5vWlyeF4bt130z62O0A2DycKGSIc4mJw=",
|
|
630
|
+
"url": "_framework/System.Numerics.Vectors.kc7ufp2j4l.dll"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"hash": "sha256-iofdGB5RL8z3BPV/e1dwDpj9rQ29luUQSfbVFdCdb14=",
|
|
634
|
+
"url": "_framework/System.ObjectModel.qv82fot1ib.dll"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"hash": "sha256-tYL6KXHQzqnp9OgmxwVswLv2vdqZKYZQSo6oV4DjwbI=",
|
|
638
|
+
"url": "_framework/System.Private.CoreLib.rkafq04oma.dll"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"hash": "sha256-T8a2aPwBgfG1imJJ0IdJKxyvbhgU+qF404kCTNX25Cs=",
|
|
642
|
+
"url": "_framework/System.Private.Uri.t9542hmr6j.dll"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"hash": "sha256-maqsmOurAYCnToTsthG0JlLumpIhSR+4RG5RGr+Wrx0=",
|
|
646
|
+
"url": "_framework/System.Private.Xml.Linq.n8n3ptrbwu.dll"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"hash": "sha256-sUF/yaALi/76m/TIMklVrI8jqAtztIjiLLyuUrkUFMo=",
|
|
650
|
+
"url": "_framework/System.Private.Xml.rxd3tytisn.dll"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"hash": "sha256-+cthzuXYRAdB0NaxLgdso+MtDK1q2hKgCZsXJuILveM=",
|
|
654
|
+
"url": "_framework/System.Reactive.t3fuon548l.dll"
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"hash": "sha256-c9CDuSLgrfKuMtit1UGrgRGmkMvDfOyKksk4izOtdq8=",
|
|
658
|
+
"url": "_framework/System.Reflection.Emit.9tjhp6y0j3.dll"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"hash": "sha256-QDxg8NZr0jjSNN2F58sdw+CfXunstoIB+CHSX5hz3jo=",
|
|
662
|
+
"url": "_framework/System.Reflection.Emit.ILGeneration.stxyk8zoo1.dll"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"hash": "sha256-mg8Wv/qLQw06vudycSN+habZNMAo/dAWxANCZICUOO4=",
|
|
666
|
+
"url": "_framework/System.Reflection.Emit.Lightweight.6xrd5v8vg0.dll"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"hash": "sha256-0Jvlx6w7lYcZp4vu+a/e4pAg79eXDWW9xb9sw3rXU1M=",
|
|
670
|
+
"url": "_framework/System.Reflection.Primitives.wgn8fpwwvv.dll"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"hash": "sha256-UMMVpSd4kSma9fwnwZxxxNmzbGMif75h3UEVUiNhZf4=",
|
|
674
|
+
"url": "_framework/System.Runtime.InteropServices.JavaScript.sliym526xh.dll"
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"hash": "sha256-XFsHrNiehB2s7HnZ/CWN+eiGP5yb9b4ujBIP7oU5B7I=",
|
|
678
|
+
"url": "_framework/System.Runtime.InteropServices.RuntimeInformation.oji7zut14z.dll"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"hash": "sha256-K9UV5c43lpnwsVDkdEXSFuozqASjfZSPfPZCOwJFj50=",
|
|
682
|
+
"url": "_framework/System.Runtime.InteropServices.te07xr2we9.dll"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"hash": "sha256-CwDhj7Ry7n30SKcKP+VuTmeMOA0U4OeYn4LCMgZ1WNg=",
|
|
686
|
+
"url": "_framework/System.Runtime.Intrinsics.507y4h8nzq.dll"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"hash": "sha256-G1+3pQ1fiSBq/4Q5O5+fVxX4SYSmr7qQPyssm4qUcgU=",
|
|
690
|
+
"url": "_framework/System.Runtime.Loader.v7gk4bse0k.dll"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"hash": "sha256-FtwkfgavEdNWU8dxqhZUKy4e60ylfO0xwKhXKMdLj1M=",
|
|
694
|
+
"url": "_framework/System.Runtime.Numerics.eqy5xjv3nd.dll"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"hash": "sha256-p0vjSKgpRXgXh2nXTUU8q5/EL24BATQjWIWV1CJmEyk=",
|
|
698
|
+
"url": "_framework/System.Runtime.Serialization.Formatters.zpkrub8lab.dll"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"hash": "sha256-/Xilee5u/Qi7OR9vao+0VPJ+JkfYfT0eTGGJK4DM8oI=",
|
|
702
|
+
"url": "_framework/System.Runtime.Serialization.Primitives.vhkpnbxjip.dll"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"hash": "sha256-v9XWoUQusagUjaoclUqlEjeCCT5fgcrL2OD11+PdY/Y=",
|
|
706
|
+
"url": "_framework/System.Runtime.jn319d5nyg.dll"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"hash": "sha256-PPyoeE8K9dBJZW4Nhu7P3GKxSiBHCIAxcea/2JaBbKE=",
|
|
710
|
+
"url": "_framework/System.Security.Claims.0ztig1q9vo.dll"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"hash": "sha256-fe1WM2SzeavHgf+odpIvCDsNxJ4Cj5cfhRXHAlp12N8=",
|
|
714
|
+
"url": "_framework/System.Security.Cryptography.vttizqc9ho.dll"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"hash": "sha256-vojioGvludT753dHLlK8ztLH1bFrBV+Lf25XRVR6fyE=",
|
|
718
|
+
"url": "_framework/System.Text.Encoding.Extensions.utdd47ny8f.dll"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"hash": "sha256-mNjXEE6LErJbFO0GKM5k/umOWHbl/D5QSQRRhhFNh3U=",
|
|
722
|
+
"url": "_framework/System.Text.Encodings.Web.wah8r1zoe0.dll"
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"hash": "sha256-yAkGKe683yVlf4XflaH03NcFt6MB0QWozIIjsEr47EA=",
|
|
726
|
+
"url": "_framework/System.Text.Json.kxlfxj0wrs.dll"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"hash": "sha256-B1bFVW/bV9nyAaj7oOxqROBjBPsVBmywdQduN1O9Cjc=",
|
|
730
|
+
"url": "_framework/System.Text.RegularExpressions.dbqn58klox.dll"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"hash": "sha256-FBIPB/ryCu70ul5LtUEPyKM1q2j5KsAsc2Pu2FWo7no=",
|
|
734
|
+
"url": "_framework/System.Threading.42ao9vi047.dll"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"hash": "sha256-jcPLp49eYrpofVPHxiAyvmBl/iuubqcEs19GuzWGvCU=",
|
|
738
|
+
"url": "_framework/System.Threading.Channels.hfa7j0uv2w.dll"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"hash": "sha256-lODBhhPjCUBEuT5uQ3s4DatcmDQaJChnlOuVI5ctQwE=",
|
|
742
|
+
"url": "_framework/System.Threading.Thread.caul0pdqul.dll"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"hash": "sha256-d4hYrqleZnNB9HklAEAn9TbAD8L3EGQR1R3fN2cKweY=",
|
|
746
|
+
"url": "_framework/System.Transactions.Local.fimi2hamzo.dll"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"hash": "sha256-uNesDOACW/Yf/czsZ9MP39M9jpIMaEpRRDliE/HUWW4=",
|
|
750
|
+
"url": "_framework/System.Web.HttpUtility.gq8yz50p2e.dll"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"hash": "sha256-FKP4GkfD4R2TMJhrJTYyYcpSOuosP0az9IyVLmA85a8=",
|
|
754
|
+
"url": "_framework/System.Xml.Linq.kitin4zjoj.dll"
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"hash": "sha256-8DQrFGoyYuBUZlgGQeRd9JM6l9CxhCn9pIhzRVDC2ZU=",
|
|
758
|
+
"url": "_framework/System.Xml.ReaderWriter.kzvw3qgxb0.dll"
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"hash": "sha256-MPTRJkptrL9nGa2tl4kF46+wErNUYRPCGblX3ANoKoY=",
|
|
762
|
+
"url": "_framework/System.Xml.XDocument.c539ki6cuq.dll"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"hash": "sha256-5jDfIdbYAigw7/Q/lMzt5W/+cayGbW9ko9FvuaN1GsQ=",
|
|
766
|
+
"url": "_framework/System.m05i39uvk9.dll"
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"hash": "sha256-F6AeDTtj6Dwn4o/AIjw1ci16h2Tt+LKeZ3imStheUb4=",
|
|
770
|
+
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"hash": "sha256-GH60B592wM29SlKKi+ms1pJ+uIqnA43EzAvXuxBROk4=",
|
|
774
|
+
"url": "_framework/blazor.boot.json"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"hash": "sha256-lh8bY3DINgTiqGL/cwOeVaJGdfE2ex1o8MzwCbmlZZE=",
|
|
778
|
+
"url": "_framework/blazor.webassembly.js"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"hash": "sha256-FNnlNxsI/YRu1XzSvpFf5ooMdu3Lm78Tybc7kaUXt8I=",
|
|
782
|
+
"url": "_framework/dotnet.js"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"hash": "sha256-i7Ti7oQs36plu2O2qirzK1+9ilcJLmWqAtlDbuZGeZw=",
|
|
786
|
+
"url": "_framework/dotnet.native.vz0adxojrz.wasm"
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"hash": "sha256-wcPTC3mDpEcT24XjJe50tp5nZPwae2BBvtQVsRs4FN4=",
|
|
790
|
+
"url": "_framework/dotnet.native.xsn1d6x2kd.js"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"hash": "sha256-zZ0MGlWZF0pG99PvNYvOdUvox/BZe6pddrswXlZoKyc=",
|
|
794
|
+
"url": "_framework/dotnet.runtime.dstopyvqzi.js"
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"hash": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=",
|
|
798
|
+
"url": "_framework/icudt_CJK.tjcz0u77k5.dat"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"hash": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=",
|
|
802
|
+
"url": "_framework/icudt_EFIGS.tptq2av103.dat"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"hash": "sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=",
|
|
806
|
+
"url": "_framework/icudt_no_CJK.lfu7j35m59.dat"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"hash": "sha256-xENDv620uJ8fHwLJ2bdhrTHz4QPjvqXOztnk2a4wr0c=",
|
|
810
|
+
"url": "_framework/netstandard.0xet7jg7ky.dll"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"hash": "sha256-bBWjhkRhAzXS2e6y84+TVWnJXH0uuenB5uCj/9vcoDY=",
|
|
814
|
+
"url": "_headers"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"hash": "sha256-YDaYPl/ADwFpyek5sYFu13Hu4A4n8vzFF7gZBBRgue8=",
|
|
818
|
+
"url": "_redirects"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"hash": "sha256-CG2EUaO3bhyshdlqCBfzRQMI5uKXqPJDUsZZKxpmryE=",
|
|
822
|
+
"url": "appsettings.json"
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"hash": "sha256-DbpQaq68ZSb5IoPosBErM1QWBfsbTxpJqhU0REi6wP4=",
|
|
826
|
+
"url": "icon-192.png"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"hash": "sha256-oEo6d+KqX5fjxTiZk/w9NB3Mi0+ycS5yLwCKwr4IkbA=",
|
|
830
|
+
"url": "icon-512.png"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"hash": "sha256-jV8qui4slryTjCoqUKuN5Kn0E9jwHJZ+WQEBupvhTi4=",
|
|
834
|
+
"url": "image-manifest.json"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"hash": "sha256-i5ricR/8J4W5bSLBVwDNqBQtUAoohO+DuD/UaR0agk4=",
|
|
838
|
+
"url": "index.html"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"hash": "sha256-G8+w6tkPTngFXEIXytZJduwZJlRwz8/Cui1HXACSILE=",
|
|
842
|
+
"url": "js/marketing-tool.js"
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"hash": "sha256-H7x96C72Gvm33RDJk6q+gqHSGB0LUUZJs4pwGgcS60E=",
|
|
846
|
+
"url": "manifest.webmanifest"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"hash": "sha256-/Tbml98Ny8g8sKuMZK/54Yxhuo8jZhe3WZJHxxVdM5g=",
|
|
850
|
+
"url": "robots.txt"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"hash": "sha256-LXx4cNN0FfIeJDcom29Cq9bINQspjGKv6IT7vZja/WQ=",
|
|
854
|
+
"url": "sitemap.xml"
|
|
855
|
+
}
|
|
856
|
+
]
|
|
857
|
+
};
|