diff --git a/CLAUDE.md b/CLAUDE.md index 14defa0..00cac7a 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -12,13 +12,42 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co - **Data Source**: KIS Open API (quotations/ranking read-only), with fallbacks - **Key Runtimes**: .NET 9, Python 3.9+, Node.js 16+ -### Current Status (2026-06-29) +### Migration Phases Status (2026-06-29) -- ✅ Python codebase operational (1,140 files) -- ✅ .NET 9 migration in progress (Phase 1: Web UI) -- ✅ Blazor WASM with Fluent UI v5 RC baseline -- ✅ ASP.NET Core API endpoints operational -- ✅ PostgreSQL migration complete +**Phase 1: Web UI Migration** ✅ COMPLETE +- Blazor WebAssembly with Fluent UI v5 (RC: 5.0.0-rc.4-26177.1) +- MudBlazor completely deprecated (0% remaining) +- Pages: Home, Workspace, Collection, Tables, MainLayout +- Build: 0 errors, 6 Razor RC warnings (acceptable) + +**Phase 2: KIS Data Collection Pipeline** 🔄 IN PROGRESS +- ✅ KIS API Client: Full implementation complete + - IKisApiClient interface (5 quotation methods) + - KisApiClient (with security enforcement, token caching) + - All governance rules enforced (no trading APIs) + - Windows env var + registry fallback for credentials +- ✅ PostgreSQL Infrastructure: Complete + - ITokenCache → PostgresTokenCache (token management) + - ICollectionRepository → CollectionRepository (data storage) + - IDataCollectionStore (abstraction layer) +- ✅ Web API Endpoints: Complete + - CollectionEndpoints (6 endpoints: state, runs, snapshots, errors, latest, start) + - ApiClient for Blazor consumption +- ✅ Blazor UI: Complete + - Collection.razor dashboard with real-time monitoring + - Summary cards, recent errors table, runs history + - Start/refresh functionality +- 🔄 Integration Testing: Pending (Python subprocess fallback active) + +**Phase 3: Node.js→.NET CLI Tools** 📋 PLANNED +- Makefile created (npm → make mappings) +- np operations documented + +**Status Summary**: +- Python codebase: Operational (1,140 files) +- .NET 9 coverage: Core (✅), Infrastructure (✅), API (✅), Web UI (✅) +- Database: PostgreSQL fully migrated +- Release gates: Python gates remain authority until Phase 2 integration testing complete ## Deployment & Operations @@ -88,22 +117,47 @@ sudo systemctl restart quantengine-api | Loading | `` | CSS skeleton animation | | Icons | `` | SVG inline | -## Development Commands +## Development Commands (Phase 1 + 2) +### Python / Node.js (Legacy & Release Gates) ```powershell -# NPM / Python validation npm install -npm run ops:validate - -# .NET Development (if dotnet/ folder exists) -cd dotnet -dotnet restore -dotnet build -dotnet watch run --project src/DataFeed.Api +npm run ops:validate # Warn-only validation +npm run full-gate # Strict validation (all gates PASS) +npm run ops:data-collect # KIS collection (Python subprocess) +npm run ops:release # Full release DAG ``` -## API Endpoints +### .NET (Primary - Phase 1 + 2) +```powershell +cd dotnet +dotnet restore +dotnet build # Debug build +dotnet build -c Release # Release build (recommended) +dotnet watch run --project src/QuantEngine.Web # Hot-reload (http://localhost:5000) +dotnet run --project src/QuantEngine.Web # Run API server +``` +### Collection Pipeline Testing (Phase 2) +```powershell +# Set credentials (Windows environment variables) +$env:KIS_APP_Key_TEST = "mock_key" +$env:KIS_APP_Secret_TEST = "mock_secret" + +# Verify Blazor Collection page +# Navigate to http://localhost:5000/collection +# - Click "Start Collection" to trigger async run +# - API initiates Python subprocess (temporary Phase 2 design) +# - Dashboard updates with run status, snapshots, errors + +# Verify API directly +curl http://localhost:5000/api/collection/state +curl http://localhost:5000/api/collection/runs +``` + +## API Endpoints (Phase 1 + 2) + +### Workspace & History (Phase 1) All endpoints prefixed with `/api/`: | Route | Purpose | @@ -117,6 +171,38 @@ All endpoints prefixed with `/api/`: | `POST /account-snapshot/import-tsv` | Import TSV | | `POST /autofix` | Auto-correct data | +### Collection Pipeline (Phase 2) +| Route | Purpose | +|-------|---------| +| `GET /collection/state` | Dashboard summary (runs, snapshots, errors) | +| `GET /collection/runs` | Recent collection runs (paginated) | +| `GET /collection/runs/{runId}/snapshots` | Snapshots from a run | +| `GET /collection/runs/{runId}/errors` | Errors from a run | +| `GET /collection/latest/{ticker}` | Latest snapshots for ticker | +| `POST /collection/run` | Start new collection run (async) | + +## KIS API Client Security (Phase 2) + +### Governance Enforcement +- **Read-Only Mandate**: `AssertReadOnly(path, trId)` blocks all trading-related endpoints +- **Forbidden Paths**: `/trading/` substring triggers 🚫 immediate exception +- **Forbidden TR_IDs**: TTTC* / VTTC* prefixes (buy/sell order codes) blocked +- **Source**: `governance/rules/06_no_direct_api_trading.yaml` + +### Token Management +- **ITokenCache** abstraction: PostgreSQL-backed in production +- **Credential Loading**: + - Windows environment variables: `KIS_APP_Key`, `KIS_APP_Secret`, `KIS_APP_Key_TEST`, `KIS_APP_Secret_TEST` + - Fallback: `HKCU\Environment` registry (Windows only) + - Account modes: `"real"` (prod) vs `"mock"` (sandbox) + +### Quotation Methods (All Read-Only) +1. **GetCurrentPriceAsync** (FHKST01010100) — Current price inquiry +2. **GetAskingPrice10LevelAsync** (FHKST01010200) — Order book (10-level) +3. **GetDailyShortSaleAsync** (FHPST04830000) — Short-sale trends +4. **GetDailyItemChartPriceAsync** (FHKST03010100) — Daily OHLCV data +5. **GetInvestorTrendAsync** (FHKST01010900) — Investor sentiment (개인/외국인/기관) + ## Notes for Contributors - **SQL Safety**: Whitelist-only table access (enum switch) diff --git a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.dll index 33c665c..13ee954 100644 Binary files a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.dll and b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.pdb index 262d29d..9949e56 100644 Binary files a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.pdb and b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.dll index e74b128..3de6be5 100644 Binary files a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.dll and b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.pdb index b3ea1e2..90b0c7f 100644 Binary files a/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.pdb and b/src/dotnet/QuantEngine.Application/bin/Debug/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Application.deps.json b/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Application.deps.json new file mode 100644 index 0000000..edfc02a --- /dev/null +++ b/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Application.deps.json @@ -0,0 +1,39 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "QuantEngine.Application/1.0.0": { + "dependencies": { + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Application.dll": {} + } + }, + "QuantEngine.Core/1.0.0": { + "runtime": { + "QuantEngine.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "QuantEngine.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Application.dll new file mode 100644 index 0000000..4a224a2 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Application.pdb new file mode 100644 index 0000000..e7181f4 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..eb3f4eb Binary files /dev/null and b/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..230eb85 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/bin/Release/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfo.cs b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfo.cs index 33f8fa0..2e2f344 100644 --- a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfo.cs +++ b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("QuantEngine.Application")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d083eb7bf9b7e96f19b3ac73f4d514e69e495e47")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c5e6a013f40060315f33535da0c1f8af21134d52")] [assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Application")] [assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Application")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfoInputs.cache index 3c23184..fbad5aa 100644 --- a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfoInputs.cache +++ b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.AssemblyInfoInputs.cache @@ -1 +1 @@ -9f50f44709e82a4118b82725c00939dad5bf8b2b5f5b5eca65f730487bcd98a1 +bf1c86d292c5a2ca1e8f5452dc03c75a2caebd7a699552c60b9a992210afe2c9 diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.AssemblyReference.cache b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.AssemblyReference.cache index 54f232f..69b5291 100644 Binary files a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.AssemblyReference.cache and b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.csproj.AssemblyReference.cache differ diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.dll index 33c665c..13ee954 100644 Binary files a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.dll and b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.pdb index 262d29d..9949e56 100644 Binary files a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.pdb and b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/ref/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/ref/QuantEngine.Application.dll index 895cc50..4eca2a5 100644 Binary files a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/ref/QuantEngine.Application.dll and b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/ref/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/refint/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/refint/QuantEngine.Application.dll index 895cc50..4eca2a5 100644 Binary files a/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/refint/QuantEngine.Application.dll and b/src/dotnet/QuantEngine.Application/obj/Debug/net10.0/refint/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEng.294596D8.Up2Date b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEng.294596D8.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.AssemblyInfo.cs b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.AssemblyInfo.cs new file mode 100644 index 0000000..53a0da9 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("QuantEngine.Application")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c5e6a013f40060315f33535da0c1f8af21134d52")] +[assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Application")] +[assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Application")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.AssemblyInfoInputs.cache new file mode 100644 index 0000000..23de196 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +863c4404b5e9e179e713800ed031459e6bd1b4563d27bf581d8f4180b174dbfe diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.GeneratedMSBuildEditorConfig.editorconfig b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c89d4df --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,18 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EntryPointFilePath = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = QuantEngine.Application +build_property.ProjectDir = C:\Temp\data_feed\src\dotnet\QuantEngine.Application\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.GlobalUsings.g.cs b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.assets.cache b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.assets.cache new file mode 100644 index 0000000..f0b169c Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.assets.cache differ diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.csproj.AssemblyReference.cache b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.csproj.AssemblyReference.cache new file mode 100644 index 0000000..66110b7 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.csproj.AssemblyReference.cache differ diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.csproj.CoreCompileInputs.cache b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d368859 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +50a1a17d0b66d4e2aad7ae33d2c42deb772d97115767c08cf92bc6f6c8ee49ee diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.csproj.FileListAbsolute.txt b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..33e96a1 --- /dev/null +++ b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\bin\Release\net10.0\QuantEngine.Application.deps.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\bin\Release\net10.0\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\bin\Release\net10.0\QuantEngine.Application.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\bin\Release\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\bin\Release\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Release\net10.0\QuantEngine.Application.csproj.AssemblyReference.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Release\net10.0\QuantEngine.Application.GeneratedMSBuildEditorConfig.editorconfig +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Release\net10.0\QuantEngine.Application.AssemblyInfoInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Release\net10.0\QuantEngine.Application.AssemblyInfo.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Release\net10.0\QuantEngine.Application.csproj.CoreCompileInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Release\net10.0\QuantEng.294596D8.Up2Date +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Release\net10.0\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Release\net10.0\refint\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Release\net10.0\QuantEngine.Application.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Application\obj\Release\net10.0\ref\QuantEngine.Application.dll diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.dll new file mode 100644 index 0000000..4a224a2 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.pdb new file mode 100644 index 0000000..e7181f4 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/ref/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/ref/QuantEngine.Application.dll new file mode 100644 index 0000000..1f2d6f0 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/ref/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Application/obj/Release/net10.0/refint/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/refint/QuantEngine.Application.dll new file mode 100644 index 0000000..1f2d6f0 Binary files /dev/null and b/src/dotnet/QuantEngine.Application/obj/Release/net10.0/refint/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/.msCoverageSourceRootsMapping_QuantEngine.Core.Tests b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/.msCoverageSourceRootsMapping_QuantEngine.Core.Tests new file mode 100644 index 0000000..52c6b5c Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/.msCoverageSourceRootsMapping_QuantEngine.Core.Tests differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/CoverletSourceRootsMapping_QuantEngine.Core.Tests b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/CoverletSourceRootsMapping_QuantEngine.Core.Tests new file mode 100644 index 0000000..52c6b5c Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/CoverletSourceRootsMapping_QuantEngine.Core.Tests differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Dapper.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Dapper.dll new file mode 100644 index 0000000..84d2de0 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Dapper.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..eccc0cf Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.Extensions.Logging.Abstractions.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..6d617b5 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100644 index 0000000..55ce79c Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CoreUtilities.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100644 index 0000000..e06f7bf Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100644 index 0000000..9b6de68 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100644 index 0000000..39fb3bd Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.Utilities.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.Utilities.dll new file mode 100644 index 0000000..abf4a0b Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.TestPlatform.Utilities.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100644 index 0000000..e2fbdcb Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100644 index 0000000..32a461c Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100644 index 0000000..c9ab03e Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Newtonsoft.Json.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..d035c38 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Newtonsoft.Json.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Npgsql.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Npgsql.dll new file mode 100644 index 0000000..184db8d Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/Npgsql.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Application.dll new file mode 100644 index 0000000..4a224a2 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Application.pdb new file mode 100644 index 0000000..e7181f4 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.deps.json b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.deps.json new file mode 100644 index 0000000..7ec94db --- /dev/null +++ b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.deps.json @@ -0,0 +1,536 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "QuantEngine.Core.Tests/1.0.0": { + "dependencies": { + "Microsoft.NET.Test.Sdk": "17.14.1", + "QuantEngine.Application": "1.0.0", + "QuantEngine.Core": "1.0.0", + "QuantEngine.Infrastructure": "1.0.0", + "xunit": "2.9.3" + }, + "runtime": { + "QuantEngine.Core.Tests.dll": {} + } + }, + "Dapper/2.1.79": { + "runtime": { + "lib/net10.0/Dapper.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.1.79.29349" + } + } + }, + "Microsoft.CodeCoverage/17.14.1": { + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.225.12603" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.NET.Test.Sdk/17.14.1": { + "dependencies": { + "Microsoft.CodeCoverage": "17.14.1", + "Microsoft.TestPlatform.TestHost": "17.14.1" + } + }, + "Microsoft.TestPlatform.ObjectModel/17.14.1": { + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + } + }, + "resources": { + "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.14.1": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.14.1", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + } + }, + "resources": { + "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Npgsql/10.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.3.0", + "fileVersion": "10.0.3.0" + } + } + }, + "xunit/2.9.3": { + "dependencies": { + "xunit.assert": "2.9.3", + "xunit.core": "2.9.3" + } + }, + "xunit.abstractions/2.0.3": { + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "xunit.assert/2.9.3": { + "runtime": { + "lib/net6.0/xunit.assert.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + } + }, + "xunit.core/2.9.3": { + "dependencies": { + "xunit.extensibility.core": "2.9.3", + "xunit.extensibility.execution": "2.9.3" + } + }, + "xunit.extensibility.core/2.9.3": { + "dependencies": { + "xunit.abstractions": "2.0.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + } + }, + "xunit.extensibility.execution/2.9.3": { + "dependencies": { + "xunit.extensibility.core": "2.9.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + } + }, + "QuantEngine.Application/1.0.0": { + "dependencies": { + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Application.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "QuantEngine.Core/1.0.0": { + "runtime": { + "QuantEngine.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "QuantEngine.Infrastructure/1.0.0": { + "dependencies": { + "Dapper": "2.1.79", + "Npgsql": "10.0.3", + "QuantEngine.Application": "1.0.0", + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Infrastructure.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "QuantEngine.Core.Tests/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Dapper/2.1.79": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8YijbzgTfmqmQOnVNorYM6K++pxqnW3nJ4aC1sRHzxUA2CcuoJ9gsTem3kgBnPRMc38zZHl4Esb6hAezXIEEuw==", + "path": "dapper/2.1.79", + "hashPath": "dapper.2.1.79.nupkg.sha512" + }, + "Microsoft.CodeCoverage/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pmTrhfFIoplzFVbhVwUquT+77CbGH+h4/3mBpdmIlYtBi9nAB+kKI6dN3A/nV4DFi3wLLx/BlHIPK+MkbQ6Tpg==", + "path": "microsoft.codecoverage/17.14.1", + "hashPath": "microsoft.codecoverage.17.14.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HJKqKOE+vshXra2aEHpi2TlxYX7Z9VFYkr+E5rwEvHC8eIXiyO+K9kNm8vmNom3e2rA56WqxU+/N9NJlLGXsJQ==", + "path": "microsoft.net.test.sdk/17.14.1", + "hashPath": "microsoft.net.test.sdk.17.14.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xTP1W6Mi6SWmuxd3a+jj9G9UoC850WGwZUps1Wah9r1ZxgXhdJfj1QqDLJkFjHDCvN42qDL2Ps5KjQYWUU0zcQ==", + "path": "microsoft.testplatform.objectmodel/17.14.1", + "hashPath": "microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d78LPzGKkJwsJXAQwsbJJ7LE7D1wB+rAyhHHAaODF+RDSQ0NgMjDFkSA1Djw18VrxO76GlKAjRUhl+H8NL8Z+Q==", + "path": "microsoft.testplatform.testhost/17.14.1", + "hashPath": "microsoft.testplatform.testhost.17.14.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Npgsql/10.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nb5YzXuvWWJxB0J8DiyL3we+X4FOctZrt0fIBnucOIaIevFEEwGQVZKtiu9olXdlNAK1eNgqSral6r/jlhI4w==", + "path": "npgsql/10.0.3", + "hashPath": "npgsql.10.0.3.nupkg.sha512" + }, + "xunit/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", + "path": "xunit/2.9.3", + "hashPath": "xunit.2.9.3.nupkg.sha512" + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "path": "xunit.abstractions/2.0.3", + "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" + }, + "xunit.assert/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", + "path": "xunit.assert/2.9.3", + "hashPath": "xunit.assert.2.9.3.nupkg.sha512" + }, + "xunit.core/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", + "path": "xunit.core/2.9.3", + "hashPath": "xunit.core.2.9.3.nupkg.sha512" + }, + "xunit.extensibility.core/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", + "path": "xunit.extensibility.core/2.9.3", + "hashPath": "xunit.extensibility.core.2.9.3.nupkg.sha512" + }, + "xunit.extensibility.execution/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", + "path": "xunit.extensibility.execution/2.9.3", + "hashPath": "xunit.extensibility.execution.2.9.3.nupkg.sha512" + }, + "QuantEngine.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.dll new file mode 100644 index 0000000..627cdfa Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.pdb b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.pdb new file mode 100644 index 0000000..f6e3f2a Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.pdb differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.runtimeconfig.json b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.runtimeconfig.json new file mode 100644 index 0000000..8599a91 --- /dev/null +++ b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.Tests.runtimeconfig.json @@ -0,0 +1,14 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + "configProperties": { + "MSTest.EnableParentProcessQuery": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..eb3f4eb Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..230eb85 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Infrastructure.dll new file mode 100644 index 0000000..98376fb Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Infrastructure.pdb b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Infrastructure.pdb new file mode 100644 index 0000000..16b2b84 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/QuantEngine.Infrastructure.pdb differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..6b4cb52 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..4bd6351 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..7b44217 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..711b34d Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..8e5665d Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..7430499 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..310ab84 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..451e2d2 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..e606f2d Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..c4a0f6d Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..861e885 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..a3867c8 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..08ad46b Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..44c4b7f Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..668630a Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..e7ac83f Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..305ae61 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a2eeac8 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..7394ada Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..36ad487 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..21fd3a2 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..3138d0b Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..e0afbb4 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..591475d Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..f6d7529 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..008facc Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..7a2bc17 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..f5e04ec Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..4c707a0 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..84e7a2d Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..4198d29 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..6583956 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..354b0bf Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..f46d948 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..42c1de2 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..9e65b3a Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..26b5522 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..bdc41ed Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..302a135 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..b435708 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..c9f988e Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..0849e28 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..8657f14 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..a2a3f0e Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..834e160 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..2b48978 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..59fa16a Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a4b7361 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..968210b Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..5f94d05 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/testhost.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/testhost.dll new file mode 100644 index 0000000..538cc6d Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/testhost.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/testhost.exe b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/testhost.exe new file mode 100644 index 0000000..c741b7a Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/testhost.exe differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..d397c2d Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..1f753be Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..fb6e8f0 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..e032b07 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..c5b5b63 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.abstractions.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.abstractions.dll new file mode 100644 index 0000000..d1e90bf Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.abstractions.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.assert.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.assert.dll new file mode 100644 index 0000000..99bc34c Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.assert.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.core.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.core.dll new file mode 100644 index 0000000..d56aa16 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.core.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.execution.dotnet.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.execution.dotnet.dll new file mode 100644 index 0000000..7a1cc87 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.execution.dotnet.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.runner.visualstudio.testadapter.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.runner.visualstudio.testadapter.dll new file mode 100644 index 0000000..8126550 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/xunit.runner.visualstudio.testadapter.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..34e54ed Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..dc5e3d1 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..bf6c73d Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..cfbf0bc Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..f671e52 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..f30f879 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..c2b89ef Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a0764e6 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..a6014d3 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..3e7e989 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEng.FE6BCC9E.Up2Date b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEng.FE6BCC9E.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.AssemblyInfo.cs b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.AssemblyInfo.cs new file mode 100644 index 0000000..c128c36 --- /dev/null +++ b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("QuantEngine.Core.Tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c5e6a013f40060315f33535da0c1f8af21134d52")] +[assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Core.Tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Core.Tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f5eb0c1 --- /dev/null +++ b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a481607a18e82aad4855d100c2a80a0b2d8cf90730461da3b8a1372613f5f004 diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.GeneratedMSBuildEditorConfig.editorconfig b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..657c7bd --- /dev/null +++ b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,18 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EntryPointFilePath = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = QuantEngine.Core.Tests +build_property.ProjectDir = C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.GlobalUsings.g.cs b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.GlobalUsings.g.cs new file mode 100644 index 0000000..fe43752 --- /dev/null +++ b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; +global using Xunit; diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.assets.cache b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.assets.cache new file mode 100644 index 0000000..77f96ca Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.assets.cache differ diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.csproj.AssemblyReference.cache b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.csproj.AssemblyReference.cache new file mode 100644 index 0000000..80e70a5 Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.csproj.AssemblyReference.cache differ diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.csproj.CoreCompileInputs.cache b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e3af030 --- /dev/null +++ b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f207e64a01edd496c4ea56c3a6c2c6830cefae497a8b01f1f6dca4301c4e3c87 diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.csproj.FileListAbsolute.txt b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..552a30a --- /dev/null +++ b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.csproj.FileListAbsolute.txt @@ -0,0 +1,108 @@ +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\.msCoverageSourceRootsMapping_QuantEngine.Core.Tests +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\CoverletSourceRootsMapping_QuantEngine.Core.Tests +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\testhost.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\xunit.abstractions.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\testhost.exe +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\xunit.runner.visualstudio.testadapter.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\QuantEngine.Core.Tests.deps.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\QuantEngine.Core.Tests.runtimeconfig.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\QuantEngine.Core.Tests.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\QuantEngine.Core.Tests.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Dapper.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Microsoft.TestPlatform.CoreUtilities.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Microsoft.TestPlatform.PlatformAbstractions.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Microsoft.TestPlatform.CommunicationUtilities.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Microsoft.TestPlatform.CrossPlatEngine.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Microsoft.TestPlatform.Utilities.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Microsoft.VisualStudio.TestPlatform.Common.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Newtonsoft.Json.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\Npgsql.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\xunit.assert.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\xunit.core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\xunit.execution.dotnet.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\QuantEngine.Infrastructure.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\QuantEngine.Application.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\bin\Release\net10.0\QuantEngine.Infrastructure.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\obj\Release\net10.0\QuantEngine.Core.Tests.csproj.AssemblyReference.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\obj\Release\net10.0\QuantEngine.Core.Tests.GeneratedMSBuildEditorConfig.editorconfig +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\obj\Release\net10.0\QuantEngine.Core.Tests.AssemblyInfoInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\obj\Release\net10.0\QuantEngine.Core.Tests.AssemblyInfo.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\obj\Release\net10.0\QuantEngine.Core.Tests.csproj.CoreCompileInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\obj\Release\net10.0\QuantEng.FE6BCC9E.Up2Date +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\obj\Release\net10.0\QuantEngine.Core.Tests.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\obj\Release\net10.0\refint\QuantEngine.Core.Tests.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\obj\Release\net10.0\QuantEngine.Core.Tests.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\obj\Release\net10.0\QuantEngine.Core.Tests.genruntimeconfig.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Core.Tests\obj\Release\net10.0\ref\QuantEngine.Core.Tests.dll diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.dll b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.dll new file mode 100644 index 0000000..627cdfa Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.genruntimeconfig.cache b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.genruntimeconfig.cache new file mode 100644 index 0000000..01f2481 --- /dev/null +++ b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.genruntimeconfig.cache @@ -0,0 +1 @@ +a6320a8958f6d7645eeeafecb720d1c7cea359207b0cdeeb8d211ac3ddd54b8c diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.pdb b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.pdb new file mode 100644 index 0000000..f6e3f2a Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/QuantEngine.Core.Tests.pdb differ diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/ref/QuantEngine.Core.Tests.dll b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/ref/QuantEngine.Core.Tests.dll new file mode 100644 index 0000000..d776d8a Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/ref/QuantEngine.Core.Tests.dll differ diff --git a/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/refint/QuantEngine.Core.Tests.dll b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/refint/QuantEngine.Core.Tests.dll new file mode 100644 index 0000000..d776d8a Binary files /dev/null and b/src/dotnet/QuantEngine.Core.Tests/obj/Release/net10.0/refint/QuantEngine.Core.Tests.dll differ diff --git a/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.dll index e74b128..3de6be5 100644 Binary files a/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.dll and b/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.pdb index b3ea1e2..90b0c7f 100644 Binary files a/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.pdb and b/src/dotnet/QuantEngine.Core/bin/Debug/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Core/bin/Release/net10.0/QuantEngine.Core.deps.json b/src/dotnet/QuantEngine.Core/bin/Release/net10.0/QuantEngine.Core.deps.json new file mode 100644 index 0000000..e274862 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/bin/Release/net10.0/QuantEngine.Core.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "QuantEngine.Core/1.0.0": { + "runtime": { + "QuantEngine.Core.dll": {} + } + } + } + }, + "libraries": { + "QuantEngine.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Core/bin/Release/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/bin/Release/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..eb3f4eb Binary files /dev/null and b/src/dotnet/QuantEngine.Core/bin/Release/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core/bin/Release/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Core/bin/Release/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..230eb85 Binary files /dev/null and b/src/dotnet/QuantEngine.Core/bin/Release/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfo.cs b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfo.cs index 95b4862..7a6bd44 100644 --- a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfo.cs +++ b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("QuantEngine.Core")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d083eb7bf9b7e96f19b3ac73f4d514e69e495e47")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c5e6a013f40060315f33535da0c1f8af21134d52")] [assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Core")] [assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Core")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfoInputs.cache index 1f14760..3b8e093 100644 --- a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfoInputs.cache +++ b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.AssemblyInfoInputs.cache @@ -1 +1 @@ -97cc6ba3846f7f4aef2fc477534616d2e0795dea81fd6f1015ada80f0fa667d3 +933046815bdcc6854a98171b5ec42c7aa06626cbf2b5c5efe878225d77382977 diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.dll index e74b128..3de6be5 100644 Binary files a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.dll and b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.pdb index b3ea1e2..90b0c7f 100644 Binary files a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.pdb and b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/ref/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/ref/QuantEngine.Core.dll index 7c6b9cb..4794b37 100644 Binary files a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/ref/QuantEngine.Core.dll and b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/ref/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/refint/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/refint/QuantEngine.Core.dll index 7c6b9cb..4794b37 100644 Binary files a/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/refint/QuantEngine.Core.dll and b/src/dotnet/QuantEngine.Core/obj/Debug/net10.0/refint/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.AssemblyInfo.cs b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.AssemblyInfo.cs new file mode 100644 index 0000000..4fa03d5 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("QuantEngine.Core")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c5e6a013f40060315f33535da0c1f8af21134d52")] +[assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Core")] +[assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Core")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.AssemblyInfoInputs.cache new file mode 100644 index 0000000..771f127 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +9fc6a5caaa14f4fc8a2328505e63874cd81a96af6ce9a30920778461d1a02504 diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.GeneratedMSBuildEditorConfig.editorconfig b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0221aed --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,18 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EntryPointFilePath = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = QuantEngine.Core +build_property.ProjectDir = C:\Temp\data_feed\src\dotnet\QuantEngine.Core\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.GlobalUsings.g.cs b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.assets.cache b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.assets.cache new file mode 100644 index 0000000..3a4c838 Binary files /dev/null and b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.assets.cache differ diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.csproj.CoreCompileInputs.cache b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..2c81494 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2b705a49a11e19e045bcc1a0632e4a4addbd8f826cb33dc8ebda402e7c66c897 diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.csproj.FileListAbsolute.txt b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f4cc7a8 --- /dev/null +++ b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.csproj.FileListAbsolute.txt @@ -0,0 +1,11 @@ +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\bin\Release\net10.0\QuantEngine.Core.deps.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\bin\Release\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\bin\Release\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Release\net10.0\QuantEngine.Core.GeneratedMSBuildEditorConfig.editorconfig +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Release\net10.0\QuantEngine.Core.AssemblyInfoInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Release\net10.0\QuantEngine.Core.AssemblyInfo.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Release\net10.0\QuantEngine.Core.csproj.CoreCompileInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Release\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Release\net10.0\refint\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Release\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Core\obj\Release\net10.0\ref\QuantEngine.Core.dll diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..eb3f4eb Binary files /dev/null and b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..230eb85 Binary files /dev/null and b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/ref/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/ref/QuantEngine.Core.dll new file mode 100644 index 0000000..415b5af Binary files /dev/null and b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/ref/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Core/obj/Release/net10.0/refint/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/refint/QuantEngine.Core.dll new file mode 100644 index 0000000..415b5af Binary files /dev/null and b/src/dotnet/QuantEngine.Core/obj/Release/net10.0/refint/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.dll index 33c665c..13ee954 100644 Binary files a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.dll and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.pdb index 262d29d..9949e56 100644 Binary files a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.pdb and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.dll index e74b128..3de6be5 100644 Binary files a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.dll and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.pdb index b3ea1e2..90b0c7f 100644 Binary files a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.pdb and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.dll index d7d59ec..bc8cbe8 100644 Binary files a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.dll and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb index 0686477..6e3d058 100644 Binary files a/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb and b/src/dotnet/QuantEngine.Infrastructure/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Application.dll new file mode 100644 index 0000000..4a224a2 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Application.pdb new file mode 100644 index 0000000..e7181f4 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..eb3f4eb Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..230eb85 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Infrastructure.deps.json b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Infrastructure.deps.json new file mode 100644 index 0000000..41a479c --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Infrastructure.deps.json @@ -0,0 +1,124 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "QuantEngine.Infrastructure/1.0.0": { + "dependencies": { + "Dapper": "2.1.79", + "Npgsql": "10.0.3", + "QuantEngine.Application": "1.0.0", + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Infrastructure.dll": {} + } + }, + "Dapper/2.1.79": { + "runtime": { + "lib/net10.0/Dapper.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.1.79.29349" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Npgsql/10.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.3.0", + "fileVersion": "10.0.3.0" + } + } + }, + "QuantEngine.Application/1.0.0": { + "dependencies": { + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Application.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "QuantEngine.Core/1.0.0": { + "runtime": { + "QuantEngine.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "QuantEngine.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Dapper/2.1.79": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8YijbzgTfmqmQOnVNorYM6K++pxqnW3nJ4aC1sRHzxUA2CcuoJ9gsTem3kgBnPRMc38zZHl4Esb6hAezXIEEuw==", + "path": "dapper/2.1.79", + "hashPath": "dapper.2.1.79.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" + }, + "Npgsql/10.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nb5YzXuvWWJxB0J8DiyL3we+X4FOctZrt0fIBnucOIaIevFEEwGQVZKtiu9olXdlNAK1eNgqSral6r/jlhI4w==", + "path": "npgsql/10.0.3", + "hashPath": "npgsql.10.0.3.nupkg.sha512" + }, + "QuantEngine.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Infrastructure.dll new file mode 100644 index 0000000..98376fb Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Infrastructure.pdb b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Infrastructure.pdb new file mode 100644 index 0000000..16b2b84 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/bin/Release/net10.0/QuantEngine.Infrastructure.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfo.cs b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfo.cs index ec13c82..ebb5040 100644 --- a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfo.cs +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("QuantEngine.Infrastructure")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d083eb7bf9b7e96f19b3ac73f4d514e69e495e47")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c5e6a013f40060315f33535da0c1f8af21134d52")] [assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Infrastructure")] [assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Infrastructure")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfoInputs.cache index 9482610..1a041e9 100644 --- a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfoInputs.cache +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.AssemblyInfoInputs.cache @@ -1 +1 @@ -29bf1c8ad6d0c2188af9e28f08d932a676dc5b5612881e7d053d65b7c40f3d83 +a2f87d9a5d1a5419f4268317e0714e380f77f9cf837e65749f3f498a5d1d21b2 diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.AssemblyReference.cache b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.AssemblyReference.cache index 93cfad0..bce7be1 100644 Binary files a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.AssemblyReference.cache and b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.csproj.AssemblyReference.cache differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.dll index d7d59ec..bc8cbe8 100644 Binary files a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.dll and b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.pdb b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.pdb index 0686477..6e3d058 100644 Binary files a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.pdb and b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/QuantEngine.Infrastructure.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/ref/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/ref/QuantEngine.Infrastructure.dll index fa65dc3..9acebf1 100644 Binary files a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/ref/QuantEngine.Infrastructure.dll and b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/ref/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/refint/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/refint/QuantEngine.Infrastructure.dll index fa65dc3..9acebf1 100644 Binary files a/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/refint/QuantEngine.Infrastructure.dll and b/src/dotnet/QuantEngine.Infrastructure/obj/Debug/net10.0/refint/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEng.BF5EDD9E.Up2Date b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEng.BF5EDD9E.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.AssemblyInfo.cs b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.AssemblyInfo.cs new file mode 100644 index 0000000..ad6ee14 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("QuantEngine.Infrastructure")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c5e6a013f40060315f33535da0c1f8af21134d52")] +[assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Infrastructure")] +[assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Infrastructure")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c497efc --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +12376b61f9fcd3400b75c5e1aadafd09a3f61161aca12193e22c1d16c90b7a62 diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e0f665f --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,18 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EntryPointFilePath = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = QuantEngine.Infrastructure +build_property.ProjectDir = C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.GlobalUsings.g.cs b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.assets.cache b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.assets.cache new file mode 100644 index 0000000..9db7f1a Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.assets.cache differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.csproj.AssemblyReference.cache b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4747fc1 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.csproj.AssemblyReference.cache differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.csproj.CoreCompileInputs.cache b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..35c5649 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +fdae14f76a5457c35eb7fbfd0d8d6b6bd1acc136494e724fe18698d37103f3f7 diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.csproj.FileListAbsolute.txt b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a9f5fc2 --- /dev/null +++ b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Release\net10.0\QuantEngine.Infrastructure.deps.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Release\net10.0\QuantEngine.Infrastructure.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Release\net10.0\QuantEngine.Infrastructure.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Release\net10.0\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Release\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Release\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\bin\Release\net10.0\QuantEngine.Application.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Release\net10.0\QuantEngine.Infrastructure.csproj.AssemblyReference.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Release\net10.0\QuantEngine.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Release\net10.0\QuantEngine.Infrastructure.AssemblyInfoInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Release\net10.0\QuantEngine.Infrastructure.AssemblyInfo.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Release\net10.0\QuantEngine.Infrastructure.csproj.CoreCompileInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Release\net10.0\QuantEng.BF5EDD9E.Up2Date +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Release\net10.0\QuantEngine.Infrastructure.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Release\net10.0\refint\QuantEngine.Infrastructure.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Release\net10.0\QuantEngine.Infrastructure.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Infrastructure\obj\Release\net10.0\ref\QuantEngine.Infrastructure.dll diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.dll new file mode 100644 index 0000000..98376fb Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.pdb b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.pdb new file mode 100644 index 0000000..16b2b84 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/QuantEngine.Infrastructure.pdb differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/ref/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/ref/QuantEngine.Infrastructure.dll new file mode 100644 index 0000000..6e040a7 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/ref/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/refint/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/refint/QuantEngine.Infrastructure.dll new file mode 100644 index 0000000..6e040a7 Binary files /dev/null and b/src/dotnet/QuantEngine.Infrastructure/obj/Release/net10.0/refint/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Application.dll new file mode 100644 index 0000000..4a224a2 Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Application.pdb new file mode 100644 index 0000000..e7181f4 Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..eb3f4eb Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..230eb85 Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.deps.json b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.deps.json new file mode 100644 index 0000000..d8f43e7 --- /dev/null +++ b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.deps.json @@ -0,0 +1,56 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "QuantEngine.Tools/1.0.0": { + "dependencies": { + "QuantEngine.Application": "1.0.0", + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Tools.dll": {} + } + }, + "QuantEngine.Application/1.0.0": { + "dependencies": { + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Application.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "QuantEngine.Core/1.0.0": { + "runtime": { + "QuantEngine.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "QuantEngine.Tools/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.dll b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.dll new file mode 100644 index 0000000..736aed1 Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.dll differ diff --git a/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.exe b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.exe new file mode 100644 index 0000000..93c695e Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.exe differ diff --git a/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.pdb b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.pdb new file mode 100644 index 0000000..b198969 Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.pdb differ diff --git a/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.runtimeconfig.json b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.runtimeconfig.json new file mode 100644 index 0000000..f730443 --- /dev/null +++ b/src/dotnet/QuantEngine.Tools/bin/Release/net10.0/QuantEngine.Tools.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEng.78F9363A.Up2Date b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEng.78F9363A.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.AssemblyInfo.cs b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.AssemblyInfo.cs new file mode 100644 index 0000000..c1b45fe --- /dev/null +++ b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("QuantEngine.Tools")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c5e6a013f40060315f33535da0c1f8af21134d52")] +[assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Tools")] +[assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Tools")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ae583d6 --- /dev/null +++ b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +4bad5b92be324d9dcf5d5e183111c39115ee05883363d663d31882586dcbfc6e diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.GeneratedMSBuildEditorConfig.editorconfig b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..639cd29 --- /dev/null +++ b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,18 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EntryPointFilePath = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = QuantEngine.Tools +build_property.ProjectDir = C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.GlobalUsings.g.cs b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.assets.cache b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.assets.cache new file mode 100644 index 0000000..8e75166 Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.assets.cache differ diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.csproj.AssemblyReference.cache b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.csproj.AssemblyReference.cache new file mode 100644 index 0000000..013107c Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.csproj.AssemblyReference.cache differ diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.csproj.CoreCompileInputs.cache b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..08e7708 --- /dev/null +++ b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2490a4d1b774178fcc0778ed2f1a8c56953e2c7e2c47937b42724ddde96181b7 diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.csproj.FileListAbsolute.txt b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..97d9a6e --- /dev/null +++ b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.csproj.FileListAbsolute.txt @@ -0,0 +1,20 @@ +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\bin\Release\net10.0\QuantEngine.Tools.exe +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\bin\Release\net10.0\QuantEngine.Tools.deps.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\bin\Release\net10.0\QuantEngine.Tools.runtimeconfig.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\bin\Release\net10.0\QuantEngine.Tools.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\bin\Release\net10.0\QuantEngine.Tools.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\bin\Release\net10.0\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\bin\Release\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\bin\Release\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\bin\Release\net10.0\QuantEngine.Application.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\obj\Release\net10.0\QuantEngine.Tools.csproj.AssemblyReference.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\obj\Release\net10.0\QuantEngine.Tools.GeneratedMSBuildEditorConfig.editorconfig +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\obj\Release\net10.0\QuantEngine.Tools.AssemblyInfoInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\obj\Release\net10.0\QuantEngine.Tools.AssemblyInfo.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\obj\Release\net10.0\QuantEngine.Tools.csproj.CoreCompileInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\obj\Release\net10.0\QuantEng.78F9363A.Up2Date +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\obj\Release\net10.0\QuantEngine.Tools.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\obj\Release\net10.0\refint\QuantEngine.Tools.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\obj\Release\net10.0\QuantEngine.Tools.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\obj\Release\net10.0\QuantEngine.Tools.genruntimeconfig.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Tools\obj\Release\net10.0\ref\QuantEngine.Tools.dll diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.dll b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.dll new file mode 100644 index 0000000..736aed1 Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.dll differ diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.genruntimeconfig.cache b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.genruntimeconfig.cache new file mode 100644 index 0000000..fa6bb74 --- /dev/null +++ b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.genruntimeconfig.cache @@ -0,0 +1 @@ +dae588d3b69f6c2f8da24f9a30391af4c6ab686a695e60e1813806779915f8f1 diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.pdb b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.pdb new file mode 100644 index 0000000..b198969 Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/QuantEngine.Tools.pdb differ diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/apphost.exe b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/apphost.exe new file mode 100644 index 0000000..93c695e Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/apphost.exe differ diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/ref/QuantEngine.Tools.dll b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/ref/QuantEngine.Tools.dll new file mode 100644 index 0000000..fa27a2c Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/ref/QuantEngine.Tools.dll differ diff --git a/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/refint/QuantEngine.Tools.dll b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/refint/QuantEngine.Tools.dll new file mode 100644 index 0000000..fa27a2c Binary files /dev/null and b/src/dotnet/QuantEngine.Tools/obj/Release/net10.0/refint/QuantEngine.Tools.dll differ diff --git a/src/dotnet/QuantEngine.Web/Program.cs b/src/dotnet/QuantEngine.Web/Program.cs index 6e6f7f8..63ceb94 100644 --- a/src/dotnet/QuantEngine.Web/Program.cs +++ b/src/dotnet/QuantEngine.Web/Program.cs @@ -63,10 +63,8 @@ app.UseHttpsRedirection(); app.UseAntiforgery(); app.MapStaticAssets(); -app.MapRazorComponents() - .AddInteractiveServerRenderMode(); -// Collection API Endpoints +// Collection API Endpoints (must be before MapRazorComponents) app.MapCollectionEndpoints(); app.MapGet("/api/history/{domain}", async (string domain, int? limit, IPostgresqlHistorySnapshotReader reader) => @@ -112,5 +110,8 @@ app.MapPost("/api/history/{domain}", async (string domain, JsonElement payload, }); }); +app.MapRazorComponents() + .AddInteractiveServerRenderMode(); + app.Run(); diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.dll index 33c665c..13ee954 100644 Binary files a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.dll and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.pdb index 262d29d..9949e56 100644 Binary files a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.pdb and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.dll index e74b128..3de6be5 100644 Binary files a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.dll and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.pdb index b3ea1e2..90b0c7f 100644 Binary files a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.pdb and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.dll index d7d59ec..bc8cbe8 100644 Binary files a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.dll and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb index 0686477..6e3d058 100644 Binary files a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Infrastructure.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.dll index d4ac7ff..e983a17 100644 Binary files a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.dll and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.exe b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.exe index 87ed3f5..f672017 100644 Binary files a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.exe and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.exe differ diff --git a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.pdb b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.pdb index 8c91978..72adeb7 100644 Binary files a/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.pdb and b/src/dotnet/QuantEngine.Web/bin/Debug/net10.0/QuantEngine.Web.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Dapper.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Dapper.dll new file mode 100644 index 0000000..84d2de0 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Dapper.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.Extensions.DependencyModel.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..dae1950 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll new file mode 100644 index 0000000..b45df5e Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll new file mode 100644 index 0000000..f11f4c2 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll new file mode 100644 index 0000000..7605952 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll new file mode 100644 index 0000000..4cbb8b4 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll new file mode 100644 index 0000000..3f2b7af Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll new file mode 100644 index 0000000..4ee6c1e Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Npgsql.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Npgsql.dll new file mode 100644 index 0000000..184db8d Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Npgsql.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Application.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Application.dll new file mode 100644 index 0000000..4a224a2 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Application.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Application.pdb b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Application.pdb new file mode 100644 index 0000000..e7181f4 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Application.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Core.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Core.dll new file mode 100644 index 0000000..eb3f4eb Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Core.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Core.pdb b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Core.pdb new file mode 100644 index 0000000..230eb85 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Core.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Infrastructure.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Infrastructure.dll new file mode 100644 index 0000000..98376fb Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Infrastructure.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Infrastructure.pdb b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Infrastructure.pdb new file mode 100644 index 0000000..16b2b84 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Infrastructure.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.deps.json b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.deps.json new file mode 100644 index 0000000..992c615 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.deps.json @@ -0,0 +1,340 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "QuantEngine.Web/1.0.0": { + "dependencies": { + "Microsoft.FluentUI.AspNetCore.Components": "5.0.0-rc.4-26177.1", + "Microsoft.FluentUI.AspNetCore.Components.Icons": "5.0.0-rc.4-26177.1", + "QuantEngine.Application": "1.0.0", + "QuantEngine.Core": "1.0.0", + "QuantEngine.Infrastructure": "1.0.0", + "Serilog.AspNetCore": "10.0.0" + }, + "runtime": { + "QuantEngine.Web.dll": {} + } + }, + "Dapper/2.1.79": { + "runtime": { + "lib/net10.0/Dapper.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.1.79.29349" + } + } + }, + "Microsoft.Extensions.DependencyModel/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.FluentUI.AspNetCore.Components/5.0.0-rc.4-26177.1": { + "runtime": { + "lib/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll": { + "assemblyVersion": "5.0.0.26177", + "fileVersion": "5.0.0.26177" + } + } + }, + "Microsoft.FluentUI.AspNetCore.Components.Icons/5.0.0-rc.4-26177.1": { + "dependencies": { + "Microsoft.FluentUI.AspNetCore.Components": "5.0.0-rc.4-26177.1" + }, + "runtime": { + "lib/net9.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll": { + "assemblyVersion": "5.0.0.26177", + "fileVersion": "5.0.0.26177" + }, + "lib/net9.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll": { + "assemblyVersion": "5.0.0.26177", + "fileVersion": "5.0.0.26177" + }, + "lib/net9.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll": { + "assemblyVersion": "5.0.0.26177", + "fileVersion": "5.0.0.26177" + }, + "lib/net9.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll": { + "assemblyVersion": "5.0.0.26177", + "fileVersion": "5.0.0.26177" + }, + "lib/net9.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll": { + "assemblyVersion": "5.0.0.26177", + "fileVersion": "5.0.0.26177" + } + } + }, + "Npgsql/10.0.3": { + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.3.0", + "fileVersion": "10.0.3.0" + } + } + }, + "Serilog/4.3.0": { + "runtime": { + "lib/net9.0/Serilog.dll": { + "assemblyVersion": "4.3.0.0", + "fileVersion": "4.3.0.0" + } + } + }, + "Serilog.AspNetCore/10.0.0": { + "dependencies": { + "Serilog": "4.3.0", + "Serilog.Extensions.Hosting": "10.0.0", + "Serilog.Formatting.Compact": "3.0.0", + "Serilog.Settings.Configuration": "10.0.0", + "Serilog.Sinks.Console": "6.1.1", + "Serilog.Sinks.Debug": "3.0.0", + "Serilog.Sinks.File": "7.0.0" + }, + "runtime": { + "lib/net10.0/Serilog.AspNetCore.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "Serilog.Extensions.Hosting/10.0.0": { + "dependencies": { + "Serilog": "4.3.0", + "Serilog.Extensions.Logging": "10.0.0" + }, + "runtime": { + "lib/net10.0/Serilog.Extensions.Hosting.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "Serilog.Extensions.Logging/10.0.0": { + "dependencies": { + "Serilog": "4.3.0" + }, + "runtime": { + "lib/net10.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "Serilog.Formatting.Compact/3.0.0": { + "dependencies": { + "Serilog": "4.3.0" + }, + "runtime": { + "lib/net8.0/Serilog.Formatting.Compact.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "Serilog.Settings.Configuration/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyModel": "10.0.0", + "Serilog": "4.3.0" + }, + "runtime": { + "lib/net10.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "Serilog.Sinks.Console/6.1.1": { + "dependencies": { + "Serilog": "4.3.0" + }, + "runtime": { + "lib/net8.0/Serilog.Sinks.Console.dll": { + "assemblyVersion": "6.1.1.0", + "fileVersion": "6.1.1.0" + } + } + }, + "Serilog.Sinks.Debug/3.0.0": { + "dependencies": { + "Serilog": "4.3.0" + }, + "runtime": { + "lib/net8.0/Serilog.Sinks.Debug.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "Serilog.Sinks.File/7.0.0": { + "dependencies": { + "Serilog": "4.3.0" + }, + "runtime": { + "lib/net9.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.0.0" + } + } + }, + "QuantEngine.Application/1.0.0": { + "dependencies": { + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Application.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "QuantEngine.Core/1.0.0": { + "runtime": { + "QuantEngine.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "QuantEngine.Infrastructure/1.0.0": { + "dependencies": { + "Dapper": "2.1.79", + "Npgsql": "10.0.3", + "QuantEngine.Application": "1.0.0", + "QuantEngine.Core": "1.0.0" + }, + "runtime": { + "QuantEngine.Infrastructure.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "QuantEngine.Web/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Dapper/2.1.79": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8YijbzgTfmqmQOnVNorYM6K++pxqnW3nJ4aC1sRHzxUA2CcuoJ9gsTem3kgBnPRMc38zZHl4Esb6hAezXIEEuw==", + "path": "dapper/2.1.79", + "hashPath": "dapper.2.1.79.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RFYJR7APio/BiqdQunRq6DB+nDB6nc2qhHr77mlvZ0q0BT8PubMXN7XicmfzCbrDE/dzhBnUKBRXLTcqUiZDGg==", + "path": "microsoft.extensions.dependencymodel/10.0.0", + "hashPath": "microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512" + }, + "Microsoft.FluentUI.AspNetCore.Components/5.0.0-rc.4-26177.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7k8ib6ar+1l7Rc8IdBe5aLWzFPF09ruazr+nB/GZw1Zefehddt7qXhbQzCCRyV7GCTBY3HvV7ms08ChRaeUfQ==", + "path": "microsoft.fluentui.aspnetcore.components/5.0.0-rc.4-26177.1", + "hashPath": "microsoft.fluentui.aspnetcore.components.5.0.0-rc.4-26177.1.nupkg.sha512" + }, + "Microsoft.FluentUI.AspNetCore.Components.Icons/5.0.0-rc.4-26177.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-99ZPWwDcdEL/o6vmtbi7A+TzjpiOE2DxUJD/McesJTIGEZT8Iohh8URJvgpA8SR8W4tB+9wSfqZMXMCuaWi5aA==", + "path": "microsoft.fluentui.aspnetcore.components.icons/5.0.0-rc.4-26177.1", + "hashPath": "microsoft.fluentui.aspnetcore.components.icons.5.0.0-rc.4-26177.1.nupkg.sha512" + }, + "Npgsql/10.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nb5YzXuvWWJxB0J8DiyL3we+X4FOctZrt0fIBnucOIaIevFEEwGQVZKtiu9olXdlNAK1eNgqSral6r/jlhI4w==", + "path": "npgsql/10.0.3", + "hashPath": "npgsql.10.0.3.nupkg.sha512" + }, + "Serilog/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+cDryFR0GRhsGOnZSKwaDzRRl4MupvJ42FhCE4zhQRVanX0Jpg6WuCBk59OVhVDPmab1bB+nRykAnykYELA9qQ==", + "path": "serilog/4.3.0", + "hashPath": "serilog.4.3.0.nupkg.sha512" + }, + "Serilog.AspNetCore/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-a/cNa1mY4On1oJlfGG1wAvxjp5g7OEzk/Jf/nm7NF9cWoE7KlZw1GldrifUBWm9oKibHkR7Lg/l5jy3y7ACR8w==", + "path": "serilog.aspnetcore/10.0.0", + "hashPath": "serilog.aspnetcore.10.0.0.nupkg.sha512" + }, + "Serilog.Extensions.Hosting/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E7juuIc+gzoGxgzFooFgAV8g9BfiSXNKsUok9NmEpyAXg2odkcPsMa/Yo4axkJRlh0se7mkYQ1GXDaBemR+b6w==", + "path": "serilog.extensions.hosting/10.0.0", + "hashPath": "serilog.extensions.hosting.10.0.0.nupkg.sha512" + }, + "Serilog.Extensions.Logging/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vx0kABKl2dWbBhhqAfTOk53/i8aV/5VaT3a6il9gn72Wqs2pM7EK2OB6No6xdqK2IaY6Zf9gdjLuK9BVa2rT+Q==", + "path": "serilog.extensions.logging/10.0.0", + "hashPath": "serilog.extensions.logging.10.0.0.nupkg.sha512" + }, + "Serilog.Formatting.Compact/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wQsv14w9cqlfB5FX2MZpNsTawckN4a8dryuNGbebB/3Nh1pXnROHZov3swtu3Nj5oNG7Ba+xdu7Et/ulAUPanQ==", + "path": "serilog.formatting.compact/3.0.0", + "hashPath": "serilog.formatting.compact.3.0.0.nupkg.sha512" + }, + "Serilog.Settings.Configuration/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LNq+ibS1sbhTqPV1FIE69/9AJJbfaOhnaqkzcjFy95o+4U+STsta9mi97f1smgXsWYKICDeGUf8xUGzd/52/uA==", + "path": "serilog.settings.configuration/10.0.0", + "hashPath": "serilog.settings.configuration.10.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Console/6.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8jbqgjUyZlfCuSTaJk6lOca465OndqOz3KZP6Cryt/IqZYybyBu7GP0fE/AXBzrrQB3EBmQntBFAvMVz1COvAA==", + "path": "serilog.sinks.console/6.1.1", + "hashPath": "serilog.sinks.console.6.1.1.nupkg.sha512" + }, + "Serilog.Sinks.Debug/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4BzXcdrgRX7wde9PmHuYd9U6YqycCC28hhpKonK7hx0wb19eiuRj16fPcPSVp0o/Y1ipJuNLYQ00R3q2Zs8FDA==", + "path": "serilog.sinks.debug/3.0.0", + "hashPath": "serilog.sinks.debug.3.0.0.nupkg.sha512" + }, + "Serilog.Sinks.File/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKL7mXv7qaiNBUC71ssvn/dU0k9t0o45+qm2XgKAlSt19xF+ijjxyA3R6HmCgfKEKwfcfkwWjayuQtRueZFkYw==", + "path": "serilog.sinks.file/7.0.0", + "hashPath": "serilog.sinks.file.7.0.0.nupkg.sha512" + }, + "QuantEngine.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "QuantEngine.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.dll new file mode 100644 index 0000000..c71cfee Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.exe b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.exe new file mode 100644 index 0000000..f672017 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.exe differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.pdb b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.pdb new file mode 100644 index 0000000..5d82ba5 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.pdb differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.runtimeconfig.json b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.runtimeconfig.json new file mode 100644 index 0000000..91bec3c --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.runtimeconfig.json @@ -0,0 +1,21 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "Microsoft.AspNetCore.Components.Endpoints.NavigationManager.DisableThrowNavigationException": true + } + } +} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.staticwebassets.endpoints.json b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.staticwebassets.endpoints.json new file mode 100644 index 0000000..34e6814 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.gz"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="}]},{"Route":"QuantEngine.Web.modules.json","AssetFile":"QuantEngine.Web.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010416666667"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="},{"Name":"original-resource","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""}]},{"Route":"QuantEngine.Web.modules.json","AssetFile":"QuantEngine.Web.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"114"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:37 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="}]},{"Route":"QuantEngine.Web.modules.json.gz","AssetFile":"QuantEngine.Web.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs="}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395569620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="},{"Name":"original-resource","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10447"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="}]},{"Route":"QuantEngine.Web.styles.css.gz","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E="}]},{"Route":"QuantEngine.Web.uhfllo7vmv.modules.json","AssetFile":"QuantEngine.Web.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010416666667"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uhfllo7vmv"},{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="},{"Name":"label","Value":"QuantEngine.Web.modules.json"},{"Name":"original-resource","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""}]},{"Route":"QuantEngine.Web.uhfllo7vmv.modules.json","AssetFile":"QuantEngine.Web.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"114"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:37 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uhfllo7vmv"},{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="},{"Name":"label","Value":"QuantEngine.Web.modules.json"}]},{"Route":"QuantEngine.Web.uhfllo7vmv.modules.json.gz","AssetFile":"QuantEngine.Web.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uhfllo7vmv"},{"Name":"integrity","Value":"sha256-tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs="},{"Name":"label","Value":"QuantEngine.Web.modules.json.gz"}]},{"Route":"QuantEngine.Web.xny4mnot63.styles.css","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395569620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xny4mnot63"},{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="},{"Name":"label","Value":"QuantEngine.Web.styles.css"},{"Name":"original-resource","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""}]},{"Route":"QuantEngine.Web.xny4mnot63.styles.css","AssetFile":"QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10447"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xny4mnot63"},{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="},{"Name":"label","Value":"QuantEngine.Web.styles.css"}]},{"Route":"QuantEngine.Web.xny4mnot63.styles.css.gz","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xny4mnot63"},{"Name":"integrity","Value":"sha256-T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E="},{"Name":"label","Value":"QuantEngine.Web.styles.css.gz"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.iyd2uar0up.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iyd2uar0up"},{"Name":"integrity","Value":"sha256-1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000188750472"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5297"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mVXt7/yFqdMLa8QQY6iYBSk+6LH/40GbtguA3LB217U=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw="},{"Name":"original-resource","Value":"\"1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5297"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mVXt7/yFqdMLa8QQY6iYBSk+6LH/40GbtguA3LB217U=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mVXt7/yFqdMLa8QQY6iYBSk+6LH/40GbtguA3LB217U="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.iddw5cjyql.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8572"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iddw5cjyql"},{"Name":"integrity","Value":"sha256-Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000721500722"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QbM15H4tY8nQrgmM7QmvW7+Jn9xwkXbIf2+3hzb9c4s=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo="},{"Name":"original-resource","Value":"\"Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8572"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QbM15H4tY8nQrgmM7QmvW7+Jn9xwkXbIf2+3hzb9c4s=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QbM15H4tY8nQrgmM7QmvW7+Jn9xwkXbIf2+3hzb9c4s="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001242236025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"804"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u1h2lV5rBI3BrsWyH29QMNbSsQfE0poKrnbxvM3pb6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk="},{"Name":"original-resource","Value":"\"CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4167"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"804"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u1h2lV5rBI3BrsWyH29QMNbSsQfE0poKrnbxvM3pb6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u1h2lV5rBI3BrsWyH29QMNbSsQfE0poKrnbxvM3pb6c="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.s7fspo1leq.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4167"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s7fspo1leq"},{"Name":"integrity","Value":"sha256-CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.qpepyjfzgz.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qpepyjfzgz"},{"Name":"integrity","Value":"sha256-vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001459854015"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"684"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"puAYTsdUDYsunZeaTnjnUZbjMjWCztFefm0D1WafaPw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg="},{"Name":"original-resource","Value":"\"vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"684"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"puAYTsdUDYsunZeaTnjnUZbjMjWCztFefm0D1WafaPw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-puAYTsdUDYsunZeaTnjnUZbjMjWCztFefm0D1WafaPw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000974658869"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1025"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HZXVE/PUmqhsUTpuEgTqyaVTgUoGuGN4FqivUgvvhFo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0="},{"Name":"original-resource","Value":"\"bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5058"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1025"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HZXVE/PUmqhsUTpuEgTqyaVTgUoGuGN4FqivUgvvhFo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HZXVE/PUmqhsUTpuEgTqyaVTgUoGuGN4FqivUgvvhFo="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.x8xhhr7jgv.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5058"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x8xhhr7jgv"},{"Name":"integrity","Value":"sha256-bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.ghr9dc63gi.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1076"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ghr9dc63gi"},{"Name":"integrity","Value":"sha256-nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002923976608"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"341"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"f0j6rHz4U/x+pO1EDCKvIZBbfLy/dXA+jWT5to3EdDQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk="},{"Name":"original-resource","Value":"\"nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1076"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"341"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"f0j6rHz4U/x+pO1EDCKvIZBbfLy/dXA+jWT5to3EdDQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f0j6rHz4U/x+pO1EDCKvIZBbfLy/dXA+jWT5to3EdDQ="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.nvqi1h5n7i.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9043"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvqi1h5n7i"},{"Name":"integrity","Value":"sha256-bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000574712644"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1739"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tUn67gj2s6LMiMV5lUJnwKgWSr/lfYcaxEl8wuTWS2E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI="},{"Name":"original-resource","Value":"\"bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"9043"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1739"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tUn67gj2s6LMiMV5lUJnwKgWSr/lfYcaxEl8wuTWS2E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tUn67gj2s6LMiMV5lUJnwKgWSr/lfYcaxEl8wuTWS2E="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.asn2ffubki.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"asn2ffubki"},{"Name":"integrity","Value":"sha256-6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000602046960"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1660"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7bZF8uwHs/l8/OSFSaLC/zTyosxVIS02ICtgNKGPnP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA="},{"Name":"original-resource","Value":"\"6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1660"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7bZF8uwHs/l8/OSFSaLC/zTyosxVIS02ICtgNKGPnP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7bZF8uwHs/l8/OSFSaLC/zTyosxVIS02ICtgNKGPnP4="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.7jrmyk289x.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7898"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7jrmyk289x"},{"Name":"integrity","Value":"sha256-HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000637348630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tTIpyljPo/QFZTwD6HKjB5LpYDfJbdYh1WmF9cJGgvI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU="},{"Name":"original-resource","Value":"\"HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7898"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tTIpyljPo/QFZTwD6HKjB5LpYDfJbdYh1WmF9cJGgvI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tTIpyljPo/QFZTwD6HKjB5LpYDfJbdYh1WmF9cJGgvI="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001488095238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"671"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRbcLRczN1GPnqA3Re1jatdgP587mjVEOqTVOfOjG5o=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw="},{"Name":"original-resource","Value":"\"D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"671"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRbcLRczN1GPnqA3Re1jatdgP587mjVEOqTVOfOjG5o=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bRbcLRczN1GPnqA3Re1jatdgP587mjVEOqTVOfOjG5o="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.rdaq2hquit.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rdaq2hquit"},{"Name":"integrity","Value":"sha256-D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.o9w0qkfcrf.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o9w0qkfcrf"},{"Name":"integrity","Value":"sha256-pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002577319588"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"387"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GLIhBa/Trggd7bGeeUuKKPZNhenwG104/L59ovzgHSo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc="},{"Name":"original-resource","Value":"\"pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"387"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GLIhBa/Trggd7bGeeUuKKPZNhenwG104/L59ovzgHSo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GLIhBa/Trggd7bGeeUuKKPZNhenwG104/L59ovzgHSo="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051810787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19300"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6AanHFzLkOIOoi+7b5b3h2tQsCQcPS9ts519xHvL0Eo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao="},{"Name":"original-resource","Value":"\"aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"169332"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:47:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19300"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6AanHFzLkOIOoi+7b5b3h2tQsCQcPS9ts519xHvL0Eo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6AanHFzLkOIOoi+7b5b3h2tQsCQcPS9ts519xHvL0Eo="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000009585430"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"104324"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1J14HQFFJHp+cVjMzdLoItjq+PoQcjJlRXdxF4cbL7w=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8="},{"Name":"original-resource","Value":"\"4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"430712"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:47:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"104324"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1J14HQFFJHp+cVjMzdLoItjq+PoQcjJlRXdxF4cbL7w=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1J14HQFFJHp+cVjMzdLoItjq+PoQcjJlRXdxF4cbL7w="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000892857143"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FhFgpXuMIyIl+zkBzQOWPMSUQFy/sbm2tqICjjaFMck=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE="},{"Name":"original-resource","Value":"\"T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3921"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FhFgpXuMIyIl+zkBzQOWPMSUQFy/sbm2tqICjjaFMck=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FhFgpXuMIyIl+zkBzQOWPMSUQFy/sbm2tqICjjaFMck="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.t1fy3wrmof.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3921"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t1fy3wrmof"},{"Name":"integrity","Value":"sha256-T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.acio4t06fh.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6958"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"acio4t06fh"},{"Name":"integrity","Value":"sha256-2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000495540139"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2017"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vJLsSUQe61SUTw2195Gksk/aLyruEB6Xoh1ORbzQmJw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg="},{"Name":"original-resource","Value":"\"2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6958"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2017"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vJLsSUQe61SUTw2195Gksk/aLyruEB6Xoh1ORbzQmJw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vJLsSUQe61SUTw2195Gksk/aLyruEB6Xoh1ORbzQmJw="}]},{"Route":"_framework/blazor.server.ig5xotzpx5.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022414489"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ig5xotzpx5"},{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""}]},{"Route":"_framework/blazor.server.ig5xotzpx5.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"165098"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ig5xotzpx5"},{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.ig5xotzpx5.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ig5xotzpx5"},{"Name":"integrity","Value":"sha256-8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022414489"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="},{"Name":"original-resource","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"165098"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="}]},{"Route":"_framework/blazor.server.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0="}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017985288"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="},{"Name":"original-resource","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"200538"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="}]},{"Route":"_framework/blazor.web.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q="}]},{"Route":"_framework/blazor.web.ne14ti1q68.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017985288"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ne14ti1q68"},{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""}]},{"Route":"_framework/blazor.web.ne14ti1q68.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200538"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ne14ti1q68"},{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.ne14ti1q68.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ne14ti1q68"},{"Name":"integrity","Value":"sha256-058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"app.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000530503979"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="},{"Name":"original-resource","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""}]},{"Route":"app.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6886"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="}]},{"Route":"app.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM="}]},{"Route":"app.hhus5bms5i.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000530503979"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hhus5bms5i"},{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""}]},{"Route":"app.hhus5bms5i.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6886"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hhus5bms5i"},{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="},{"Name":"label","Value":"app.css"}]},{"Route":"app.hhus5bms5i.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hhus5bms5i"},{"Name":"integrity","Value":"sha256-dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"favicon.ifv42okdf2.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"favicon.png"}]},{"Route":"favicon.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]}]} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.staticwebassets.runtime.json b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.staticwebassets.runtime.json new file mode 100644 index 0000000..6ea4832 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/QuantEngine.Web.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\jsmodules\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\bundle\\","D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\","D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\"],"Root":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app.css"},"Patterns":null},"app.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz"},"Patterns":null},"favicon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.png"},"Patterns":null},"QuantEngine.Web.modules.json":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jsmodules.build.manifest.json"},"Patterns":null},"QuantEngine.Web.modules.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz"},"Patterns":null},"QuantEngine.Web.styles.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"QuantEngine.Web.styles.css"},"Patterns":null},"QuantEngine.Web.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz"},"Patterns":null},"_framework":{"Children":{"blazor.server.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"blazor.server.js"},"Patterns":null},"blazor.server.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz"},"Patterns":null},"blazor.web.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"blazor.web.js"},"Patterns":null},"blazor.web.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Microsoft.FluentUI.AspNetCore.Components":{"Children":{"Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ctztv6q6p6-{0}-jdfzv2q2bu-jdfzv2q2bu.gz"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kwrall9b0s-{0}-p1atgyms84-p1atgyms84.gz"},"Patterns":null},"css":{"Children":{"default-fuib.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"css/default-fuib.css"},"Patterns":null},"default-fuib.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oc0evn85jv-{0}-t1fy3wrmof-t1fy3wrmof.gz"},"Patterns":null},"reboot.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"css/reboot.css"},"Patterns":null},"reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6nn42apl8y-{0}-acio4t06fh-acio4t06fh.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"DataGrid":{"Children":{"FluentDataGrid.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/DataGrid/FluentDataGrid.razor.js"},"Patterns":null},"FluentDataGrid.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"klh9ieqob8-{0}-iyd2uar0up-iyd2uar0up.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"DateTime":{"Children":{"FluentCalendar.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/DateTime/FluentCalendar.razor.js"},"Patterns":null},"FluentCalendar.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f3i2l0jv30-{0}-iddw5cjyql-iddw5cjyql.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Grid":{"Children":{"FluentGrid.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Grid/FluentGrid.razor.js"},"Patterns":null},"FluentGrid.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6mwvvlkmgj-{0}-s7fspo1leq-s7fspo1leq.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"InputFile":{"Children":{"FluentInputFile.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/InputFile/FluentInputFile.razor.js"},"Patterns":null},"FluentInputFile.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h0qxm5u0yy-{0}-qpepyjfzgz-qpepyjfzgz.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyCode":{"Children":{"FluentKeyCode.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/KeyCode/FluentKeyCode.razor.js"},"Patterns":null},"FluentKeyCode.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"win2gt64sq-{0}-x8xhhr7jgv-x8xhhr7jgv.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"List":{"Children":{"FluentSelect.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/List/FluentSelect.razor.js"},"Patterns":null},"FluentSelect.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ru2nohmkoz-{0}-ghr9dc63gi-ghr9dc63gi.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Nav":{"Children":{"FluentNav.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Nav/FluentNav.razor.js"},"Patterns":null},"FluentNav.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4m8jx7ixl4-{0}-nvqi1h5n7i-nvqi1h5n7i.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Overflow":{"Children":{"FluentOverflow.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Overflow/FluentOverflow.razor.js"},"Patterns":null},"FluentOverflow.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mm8wr5jb95-{0}-asn2ffubki-asn2ffubki.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"PullToRefresh":{"Children":{"FluentPullToRefresh.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/PullToRefresh/FluentPullToRefresh.razor.js"},"Patterns":null},"FluentPullToRefresh.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jq2jihf5fr-{0}-7jrmyk289x-7jrmyk289x.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Tooltip":{"Children":{"FluentTooltip.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Tooltip/FluentTooltip.razor.js"},"Patterns":null},"FluentTooltip.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"is0nail857-{0}-rdaq2hquit-rdaq2hquit.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"TreeView":{"Children":{"FluentTreeView.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/TreeView/FluentTreeView.razor.js"},"Patterns":null},"FluentTreeView.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ib5axksgx0-{0}-o9w0qkfcrf-o9w0qkfcrf.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"Components/Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.AspNetCore.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.AspNetCore.dll new file mode 100644 index 0000000..6f50f9e Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.AspNetCore.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Extensions.Hosting.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Extensions.Hosting.dll new file mode 100644 index 0000000..b050a9b Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Extensions.Hosting.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Extensions.Logging.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Extensions.Logging.dll new file mode 100644 index 0000000..fa270b8 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Extensions.Logging.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Formatting.Compact.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Formatting.Compact.dll new file mode 100644 index 0000000..bbd2122 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Formatting.Compact.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Settings.Configuration.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Settings.Configuration.dll new file mode 100644 index 0000000..b8ffe04 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Settings.Configuration.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Sinks.Console.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Sinks.Console.dll new file mode 100644 index 0000000..8d0638d Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Sinks.Console.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Sinks.Debug.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Sinks.Debug.dll new file mode 100644 index 0000000..7c94015 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Sinks.Debug.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Sinks.File.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Sinks.File.dll new file mode 100644 index 0000000..066c164 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.Sinks.File.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.dll b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.dll new file mode 100644 index 0000000..de3e99d Binary files /dev/null and b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/Serilog.dll differ diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/appsettings.Development.json b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/src/dotnet/QuantEngine.Web/bin/Release/net10.0/appsettings.json b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/appsettings.json new file mode 100644 index 0000000..acf124a --- /dev/null +++ b/src/dotnet/QuantEngine.Web/bin/Release/net10.0/appsettings.json @@ -0,0 +1,12 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "ConnectionStrings": { + "DefaultConnection": "Host=127.0.0.1;Database=giteadb;Username=gitea;Password=;Search Path=quantengine;" + } +} diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfo.cs b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfo.cs index 371123c..4fb382e 100644 --- a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfo.cs +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("QuantEngine.Web")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d083eb7bf9b7e96f19b3ac73f4d514e69e495e47")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c5e6a013f40060315f33535da0c1f8af21134d52")] [assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Web")] [assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Web")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfoInputs.cache index 934c70f..ddaa696 100644 --- a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfoInputs.cache +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.AssemblyInfoInputs.cache @@ -1 +1 @@ -f82978b0683b82fd873340f3a64da218402bb0e95f8388326478b81b7d2a367f +93e051039a20fb2675b37226fa6e99640449a7d79e119d897f4c1a32458c359f diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.AssemblyReference.cache b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.AssemblyReference.cache index 3797c6f..a723f5a 100644 Binary files a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.AssemblyReference.cache and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.csproj.AssemblyReference.cache differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.dll index d4ac7ff..e983a17 100644 Binary files a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.dll and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.pdb b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.pdb index 8c91978..72adeb7 100644 Binary files a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.pdb and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/QuantEngine.Web.pdb differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/apphost.exe b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/apphost.exe index 87ed3f5..f672017 100644 Binary files a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/apphost.exe and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/apphost.exe differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/ref/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/ref/QuantEngine.Web.dll index 8073e6d..9ac4e33 100644 Binary files a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/ref/QuantEngine.Web.dll and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/ref/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/refint/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/refint/QuantEngine.Web.dll index 8073e6d..9ac4e33 100644 Binary files a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/refint/QuantEngine.Web.dll and b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/refint/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json index ee516bf..12de759 100644 --- a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"61ZzOkAafDUCzt7x0mEjc+KORTs/Of52hN2aYDIQSWo=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["JTTrBKbjS35ApfJf5RSZHGAVU4t86eB4Z3Dj0Z4ZHHw=","rTMATgH4bAjZoNZ\u002BKRaVF9OxRk9Kn6EBIemE7YzyabI=","hxbowMggSnj8GJZOdMJHHwwDttpxRJIOTdIfn0ut0Ac=","hSLwzYWjyZqvvqAfHnAB6rPotX3eG0Hu8hDe8i5z7xs=","Ve1QW/FmTNllJk3cvvhc6GX9yH8fpHWmRRGHdwsWzSk=","Lnqf\u002BNn8uUZsaje5OQes9m0Q0KwAfchqG1V350Yn6BM=","gutXfyMccv5XisHlHhGJVGZETahysZqJii\u002Bg92M3\u002BdY=","hrXj0bYYvmdlZvAZZUebReLZfF8J/65r\u002B6aq4KtW3IE=","Kx2jIyFuF\u002BWn7fgtHBZ1NAWotqOmDxzgr6dTTh7HDPE=","sccdnyWmjEVIc4E/Wun5yH7NqVHF7c3g\u002B3KDbNw2New=","0nm9KNek3j/oQYUZUWEBhhL0txx1ekRnvnlCKKX0\u002Be8=","opg1Y4oXGX8x\u002BiLqpy9S3XVriqUcRUflY6tvfS0RPrM=","tNOP0eY2IzG88JsO78RhXsM42R7VPpxERLnNyDbauaU=","re4wFqPP/3GgQc83P3HKVcekxgIDYb4wyWk7MAimQDY=","vQcVlD31Fc9FE7Bi2395HnZbsJNtUlPfrATGTUN/0Q8=","yZglLoEA3dZuvvi6ZlKbOhDYJl863V6DuFnfV3jnch8=","m1RQtzMLoQWq6UnuVeiRVXSM2c2Q6/OzZc55uM2i93A=","hiPreQqqr5M81jQh\u002BsyYzu6fPzHbXkO00H\u002BjwFUXmVI=","nj4bTNdXLks/ifVLGyyn0JSdi3PzYDtjcCY1DlyDaUQ=","vQOI1xTEFZObVDsVgjTF2znZABTIHfwG/zTPmKPVBe0=","7elVBzPhnnl25N/3P1W6oFDvEswhk00rPXKO0IH/4LA=","gh\u002BywSCsCOQbKeY2w40irgZLLdiPwHgY0AyBH\u002B0ds9g="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"61ZzOkAafDUCzt7x0mEjc+KORTs/Of52hN2aYDIQSWo=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["JTTrBKbjS35ApfJf5RSZHGAVU4t86eB4Z3Dj0Z4ZHHw=","rTMATgH4bAjZoNZ\u002BKRaVF9OxRk9Kn6EBIemE7YzyabI=","hxbowMggSnj8GJZOdMJHHwwDttpxRJIOTdIfn0ut0Ac=","hSLwzYWjyZqvvqAfHnAB6rPotX3eG0Hu8hDe8i5z7xs=","Ve1QW/FmTNllJk3cvvhc6GX9yH8fpHWmRRGHdwsWzSk=","Lnqf\u002BNn8uUZsaje5OQes9m0Q0KwAfchqG1V350Yn6BM=","gutXfyMccv5XisHlHhGJVGZETahysZqJii\u002Bg92M3\u002BdY=","hrXj0bYYvmdlZvAZZUebReLZfF8J/65r\u002B6aq4KtW3IE=","Kx2jIyFuF\u002BWn7fgtHBZ1NAWotqOmDxzgr6dTTh7HDPE=","sccdnyWmjEVIc4E/Wun5yH7NqVHF7c3g\u002B3KDbNw2New=","0nm9KNek3j/oQYUZUWEBhhL0txx1ekRnvnlCKKX0\u002Be8=","opg1Y4oXGX8x\u002BiLqpy9S3XVriqUcRUflY6tvfS0RPrM=","tNOP0eY2IzG88JsO78RhXsM42R7VPpxERLnNyDbauaU=","re4wFqPP/3GgQc83P3HKVcekxgIDYb4wyWk7MAimQDY=","vQcVlD31Fc9FE7Bi2395HnZbsJNtUlPfrATGTUN/0Q8=","yZglLoEA3dZuvvi6ZlKbOhDYJl863V6DuFnfV3jnch8=","m1RQtzMLoQWq6UnuVeiRVXSM2c2Q6/OzZc55uM2i93A=","hiPreQqqr5M81jQh\u002BsyYzu6fPzHbXkO00H\u002BjwFUXmVI=","nj4bTNdXLks/ifVLGyyn0JSdi3PzYDtjcCY1DlyDaUQ=","vQOI1xTEFZObVDsVgjTF2znZABTIHfwG/zTPmKPVBe0=","7elVBzPhnnl25N/3P1W6oFDvEswhk00rPXKO0IH/4LA=","YcMJ0Sp4S657iNakOEC0UcbOKtzO4XNs\u002BTYlw6cQMZo="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmrazor.dswa.cache.json index 77f3d51..c52bbec 100644 --- a/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +++ b/src/dotnet/QuantEngine.Web/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"hb9Mk8Q4BfRLjPFbSBNw4B6QTKNWFUuDQL43Qwq5ZuI=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["JTTrBKbjS35ApfJf5RSZHGAVU4t86eB4Z3Dj0Z4ZHHw=","rTMATgH4bAjZoNZ\u002BKRaVF9OxRk9Kn6EBIemE7YzyabI=","hxbowMggSnj8GJZOdMJHHwwDttpxRJIOTdIfn0ut0Ac=","hSLwzYWjyZqvvqAfHnAB6rPotX3eG0Hu8hDe8i5z7xs=","Ve1QW/FmTNllJk3cvvhc6GX9yH8fpHWmRRGHdwsWzSk=","Lnqf\u002BNn8uUZsaje5OQes9m0Q0KwAfchqG1V350Yn6BM=","gutXfyMccv5XisHlHhGJVGZETahysZqJii\u002Bg92M3\u002BdY=","hrXj0bYYvmdlZvAZZUebReLZfF8J/65r\u002B6aq4KtW3IE=","Kx2jIyFuF\u002BWn7fgtHBZ1NAWotqOmDxzgr6dTTh7HDPE=","sccdnyWmjEVIc4E/Wun5yH7NqVHF7c3g\u002B3KDbNw2New=","0nm9KNek3j/oQYUZUWEBhhL0txx1ekRnvnlCKKX0\u002Be8=","opg1Y4oXGX8x\u002BiLqpy9S3XVriqUcRUflY6tvfS0RPrM=","tNOP0eY2IzG88JsO78RhXsM42R7VPpxERLnNyDbauaU=","re4wFqPP/3GgQc83P3HKVcekxgIDYb4wyWk7MAimQDY=","vQcVlD31Fc9FE7Bi2395HnZbsJNtUlPfrATGTUN/0Q8=","yZglLoEA3dZuvvi6ZlKbOhDYJl863V6DuFnfV3jnch8=","m1RQtzMLoQWq6UnuVeiRVXSM2c2Q6/OzZc55uM2i93A=","hiPreQqqr5M81jQh\u002BsyYzu6fPzHbXkO00H\u002BjwFUXmVI=","nj4bTNdXLks/ifVLGyyn0JSdi3PzYDtjcCY1DlyDaUQ=","vQOI1xTEFZObVDsVgjTF2znZABTIHfwG/zTPmKPVBe0=","7elVBzPhnnl25N/3P1W6oFDvEswhk00rPXKO0IH/4LA=","gh\u002BywSCsCOQbKeY2w40irgZLLdiPwHgY0AyBH\u002B0ds9g="],"CachedAssets":{"vQOI1xTEFZObVDsVgjTF2znZABTIHfwG/zTPmKPVBe0=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint}]?.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"13ja33weya","Integrity":"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"Components\\Layout\\ReconnectModal.razor.js","FileLength":2364,"LastWriteTime":"2026-06-29T13:57:48.3610236+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"hb9Mk8Q4BfRLjPFbSBNw4B6QTKNWFUuDQL43Qwq5ZuI=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["JTTrBKbjS35ApfJf5RSZHGAVU4t86eB4Z3Dj0Z4ZHHw=","rTMATgH4bAjZoNZ\u002BKRaVF9OxRk9Kn6EBIemE7YzyabI=","hxbowMggSnj8GJZOdMJHHwwDttpxRJIOTdIfn0ut0Ac=","hSLwzYWjyZqvvqAfHnAB6rPotX3eG0Hu8hDe8i5z7xs=","Ve1QW/FmTNllJk3cvvhc6GX9yH8fpHWmRRGHdwsWzSk=","Lnqf\u002BNn8uUZsaje5OQes9m0Q0KwAfchqG1V350Yn6BM=","gutXfyMccv5XisHlHhGJVGZETahysZqJii\u002Bg92M3\u002BdY=","hrXj0bYYvmdlZvAZZUebReLZfF8J/65r\u002B6aq4KtW3IE=","Kx2jIyFuF\u002BWn7fgtHBZ1NAWotqOmDxzgr6dTTh7HDPE=","sccdnyWmjEVIc4E/Wun5yH7NqVHF7c3g\u002B3KDbNw2New=","0nm9KNek3j/oQYUZUWEBhhL0txx1ekRnvnlCKKX0\u002Be8=","opg1Y4oXGX8x\u002BiLqpy9S3XVriqUcRUflY6tvfS0RPrM=","tNOP0eY2IzG88JsO78RhXsM42R7VPpxERLnNyDbauaU=","re4wFqPP/3GgQc83P3HKVcekxgIDYb4wyWk7MAimQDY=","vQcVlD31Fc9FE7Bi2395HnZbsJNtUlPfrATGTUN/0Q8=","yZglLoEA3dZuvvi6ZlKbOhDYJl863V6DuFnfV3jnch8=","m1RQtzMLoQWq6UnuVeiRVXSM2c2Q6/OzZc55uM2i93A=","hiPreQqqr5M81jQh\u002BsyYzu6fPzHbXkO00H\u002BjwFUXmVI=","nj4bTNdXLks/ifVLGyyn0JSdi3PzYDtjcCY1DlyDaUQ=","vQOI1xTEFZObVDsVgjTF2znZABTIHfwG/zTPmKPVBe0=","7elVBzPhnnl25N/3P1W6oFDvEswhk00rPXKO0IH/4LA=","YcMJ0Sp4S657iNakOEC0UcbOKtzO4XNs\u002BTYlw6cQMZo="],"CachedAssets":{"vQOI1xTEFZObVDsVgjTF2znZABTIHfwG/zTPmKPVBe0=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint}]?.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"13ja33weya","Integrity":"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"Components\\Layout\\ReconnectModal.razor.js","FileLength":2364,"LastWriteTime":"2026-06-29T13:57:48.3610236+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/EmbeddedAttribute.cs b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/EmbeddedAttribute.cs new file mode 100644 index 0000000..1931537 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/EmbeddedAttribute.cs @@ -0,0 +1,7 @@ +// +namespace Microsoft.CodeAnalysis +{ +internal sealed partial class EmbeddedAttribute : global::System.Attribute +{ +} +} diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEng.C85672E0.Up2Date b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEng.C85672E0.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.AssemblyInfo.cs b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.AssemblyInfo.cs new file mode 100644 index 0000000..f1bfbf4 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("QuantEngine.Web")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c5e6a013f40060315f33535da0c1f8af21134d52")] +[assembly: System.Reflection.AssemblyProductAttribute("QuantEngine.Web")] +[assembly: System.Reflection.AssemblyTitleAttribute("QuantEngine.Web")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.AssemblyInfoInputs.cache b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0765f4b --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a4ddba81f463c40d6f6a9010e1acab98874067703f44a3686b17294948984555 diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.GeneratedMSBuildEditorConfig.editorconfig b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8313e3b --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,72 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EntryPointFilePath = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = QuantEngine.Web +build_property.RootNamespace = QuantEngine.Web +build_property.ProjectDir = C:\Temp\data_feed\src\dotnet\QuantEngine.Web\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 10.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Temp\data_feed\src\dotnet\QuantEngine.Web +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Client/Pages/Collection.razor] +build_metadata.AdditionalFiles.TargetPath = Q2xpZW50XFBhZ2VzXENvbGxlY3Rpb24ucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Client/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = Q2xpZW50XF9JbXBvcnRzLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/App.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Pages/Dashboard.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xEYXNoYm9hcmQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Pages/Error.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Pages/NotFound.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xOb3RGb3VuZC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Pages/Operations.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xPcGVyYXRpb25zLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Routes.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xSb3V0ZXMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xfSW1wb3J0cy5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Layout/MainLayout.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTWFpbkxheW91dC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-d6y8adeyxc + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Layout/NavMenu.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTmF2TWVudS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-9gr5lv177o + +[C:/Temp/data_feed/src/dotnet/QuantEngine.Web/Components/Layout/ReconnectModal.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcUmVjb25uZWN0TW9kYWwucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-9dgxcj10me diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.GlobalUsings.g.cs b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.GlobalUsings.g.cs new file mode 100644 index 0000000..69a3c68 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.GlobalUsings.g.cs @@ -0,0 +1,18 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using Microsoft.Extensions.Validation.Embedded; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.MvcApplicationPartsAssemblyInfo.cache b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.assets.cache b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.assets.cache new file mode 100644 index 0000000..96f4bcf Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.assets.cache differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.csproj.AssemblyReference.cache b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0b3c69d Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.csproj.AssemblyReference.cache differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.csproj.CoreCompileInputs.cache b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..bed6922 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +179c601317823e7b3d83f06320810c930cf37fa6cc5831d415b48f2c7b36264f diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.csproj.FileListAbsolute.txt b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..8c38920 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.csproj.FileListAbsolute.txt @@ -0,0 +1,84 @@ +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\appsettings.Development.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\appsettings.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Web.staticwebassets.runtime.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Web.staticwebassets.endpoints.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Web.exe +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Web.deps.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Web.runtimeconfig.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Web.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Web.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Dapper.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Microsoft.Extensions.DependencyModel.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Microsoft.FluentUI.AspNetCore.Components.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Microsoft.FluentUI.AspNetCore.Components.Icons.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Npgsql.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Serilog.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Serilog.AspNetCore.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Serilog.Extensions.Hosting.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Serilog.Extensions.Logging.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Serilog.Formatting.Compact.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Serilog.Settings.Configuration.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Serilog.Sinks.Console.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Serilog.Sinks.Debug.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\Serilog.Sinks.File.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Application.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Core.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Infrastructure.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Infrastructure.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Application.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\bin\Release\net10.0\QuantEngine.Core.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\EmbeddedAttribute.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\ValidatableTypeAttribute.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\QuantEngine.Web.csproj.AssemblyReference.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\rpswa.dswa.cache.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\QuantEngine.Web.GeneratedMSBuildEditorConfig.editorconfig +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\QuantEngine.Web.AssemblyInfoInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\QuantEngine.Web.AssemblyInfo.cs +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\QuantEngine.Web.csproj.CoreCompileInputs.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\QuantEngine.Web.MvcApplicationPartsAssemblyInfo.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\rjimswa.dswa.cache.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\rjsmrazor.dswa.cache.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\rjsmcshtml.dswa.cache.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\jsmodules\jsmodules.build.manifest.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\scopedcss\Components\Layout\MainLayout.razor.rz.scp.css +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\scopedcss\Components\Layout\NavMenu.razor.rz.scp.css +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\scopedcss\Components\Layout\ReconnectModal.razor.rz.scp.css +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\scopedcss\bundle\QuantEngine.Web.styles.css +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\scopedcss\projectbundle\QuantEngine.Web.bundle.scp.css +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\klh9ieqob8-{0}-iyd2uar0up-iyd2uar0up.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\f3i2l0jv30-{0}-iddw5cjyql-iddw5cjyql.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\6mwvvlkmgj-{0}-s7fspo1leq-s7fspo1leq.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\h0qxm5u0yy-{0}-qpepyjfzgz-qpepyjfzgz.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\win2gt64sq-{0}-x8xhhr7jgv-x8xhhr7jgv.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\ru2nohmkoz-{0}-ghr9dc63gi-ghr9dc63gi.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\4m8jx7ixl4-{0}-nvqi1h5n7i-nvqi1h5n7i.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\mm8wr5jb95-{0}-asn2ffubki-asn2ffubki.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\jq2jihf5fr-{0}-7jrmyk289x-7jrmyk289x.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\is0nail857-{0}-rdaq2hquit-rdaq2hquit.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\ib5axksgx0-{0}-o9w0qkfcrf-o9w0qkfcrf.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\oc0evn85jv-{0}-t1fy3wrmof-t1fy3wrmof.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\6nn42apl8y-{0}-acio4t06fh-acio4t06fh.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\kwrall9b0s-{0}-p1atgyms84-p1atgyms84.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\ctztv6q6p6-{0}-jdfzv2q2bu-jdfzv2q2bu.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\compressed\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\staticwebassets.build.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\staticwebassets.build.json.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\staticwebassets.development.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\staticwebassets.build.endpoints.json +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\swae.build.ex.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\QuantEng.C85672E0.Up2Date +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\QuantEngine.Web.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\refint\QuantEngine.Web.dll +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\QuantEngine.Web.pdb +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\QuantEngine.Web.genruntimeconfig.cache +C:\Temp\data_feed\src\dotnet\QuantEngine.Web\obj\Release\net10.0\ref\QuantEngine.Web.dll diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.dll new file mode 100644 index 0000000..c71cfee Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.genruntimeconfig.cache b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.genruntimeconfig.cache new file mode 100644 index 0000000..01218f5 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.genruntimeconfig.cache @@ -0,0 +1 @@ +c191116d98f872b4c31459c86fbbaf1965514a4911b1e740988e87bc2098d4c6 diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.pdb b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.pdb new file mode 100644 index 0000000..5d82ba5 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/QuantEngine.Web.pdb differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/ValidatableTypeAttribute.cs b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/ValidatableTypeAttribute.cs new file mode 100644 index 0000000..26eb880 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/ValidatableTypeAttribute.cs @@ -0,0 +1,9 @@ +// +namespace Microsoft.Extensions.Validation.Embedded +{ +[global::Microsoft.CodeAnalysis.EmbeddedAttribute] +[global::System.AttributeUsage(global::System.AttributeTargets.Class)] +internal sealed class ValidatableTypeAttribute : global::System.Attribute +{ +} +} diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/apphost.exe b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/apphost.exe new file mode 100644 index 0000000..f672017 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/apphost.exe differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/4m8jx7ixl4-{0}-nvqi1h5n7i-nvqi1h5n7i.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/4m8jx7ixl4-{0}-nvqi1h5n7i-nvqi1h5n7i.gz new file mode 100644 index 0000000..a925cc1 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/4m8jx7ixl4-{0}-nvqi1h5n7i-nvqi1h5n7i.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/6mwvvlkmgj-{0}-s7fspo1leq-s7fspo1leq.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/6mwvvlkmgj-{0}-s7fspo1leq-s7fspo1leq.gz new file mode 100644 index 0000000..c7b6b26 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/6mwvvlkmgj-{0}-s7fspo1leq-s7fspo1leq.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/6nn42apl8y-{0}-acio4t06fh-acio4t06fh.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/6nn42apl8y-{0}-acio4t06fh-acio4t06fh.gz new file mode 100644 index 0000000..8e111a1 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/6nn42apl8y-{0}-acio4t06fh-acio4t06fh.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz new file mode 100644 index 0000000..32aff43 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz new file mode 100644 index 0000000..e6b343b Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/ctztv6q6p6-{0}-jdfzv2q2bu-jdfzv2q2bu.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/ctztv6q6p6-{0}-jdfzv2q2bu-jdfzv2q2bu.gz new file mode 100644 index 0000000..f4fb97b Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/ctztv6q6p6-{0}-jdfzv2q2bu-jdfzv2q2bu.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz new file mode 100644 index 0000000..4f35e4a Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/f3i2l0jv30-{0}-iddw5cjyql-iddw5cjyql.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/f3i2l0jv30-{0}-iddw5cjyql-iddw5cjyql.gz new file mode 100644 index 0000000..bc9715f Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/f3i2l0jv30-{0}-iddw5cjyql-iddw5cjyql.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/h0qxm5u0yy-{0}-qpepyjfzgz-qpepyjfzgz.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/h0qxm5u0yy-{0}-qpepyjfzgz-qpepyjfzgz.gz new file mode 100644 index 0000000..cdcd511 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/h0qxm5u0yy-{0}-qpepyjfzgz-qpepyjfzgz.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/ib5axksgx0-{0}-o9w0qkfcrf-o9w0qkfcrf.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/ib5axksgx0-{0}-o9w0qkfcrf-o9w0qkfcrf.gz new file mode 100644 index 0000000..b58d886 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/ib5axksgx0-{0}-o9w0qkfcrf-o9w0qkfcrf.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/is0nail857-{0}-rdaq2hquit-rdaq2hquit.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/is0nail857-{0}-rdaq2hquit-rdaq2hquit.gz new file mode 100644 index 0000000..8a59125 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/is0nail857-{0}-rdaq2hquit-rdaq2hquit.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/jq2jihf5fr-{0}-7jrmyk289x-7jrmyk289x.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/jq2jihf5fr-{0}-7jrmyk289x-7jrmyk289x.gz new file mode 100644 index 0000000..b6e4909 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/jq2jihf5fr-{0}-7jrmyk289x-7jrmyk289x.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/klh9ieqob8-{0}-iyd2uar0up-iyd2uar0up.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/klh9ieqob8-{0}-iyd2uar0up-iyd2uar0up.gz new file mode 100644 index 0000000..60b5cda Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/klh9ieqob8-{0}-iyd2uar0up-iyd2uar0up.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/kwrall9b0s-{0}-p1atgyms84-p1atgyms84.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/kwrall9b0s-{0}-p1atgyms84-p1atgyms84.gz new file mode 100644 index 0000000..8258945 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/kwrall9b0s-{0}-p1atgyms84-p1atgyms84.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/mm8wr5jb95-{0}-asn2ffubki-asn2ffubki.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/mm8wr5jb95-{0}-asn2ffubki-asn2ffubki.gz new file mode 100644 index 0000000..ecd5fb7 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/mm8wr5jb95-{0}-asn2ffubki-asn2ffubki.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz new file mode 100644 index 0000000..efc7fb2 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/oc0evn85jv-{0}-t1fy3wrmof-t1fy3wrmof.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/oc0evn85jv-{0}-t1fy3wrmof-t1fy3wrmof.gz new file mode 100644 index 0000000..047c705 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/oc0evn85jv-{0}-t1fy3wrmof-t1fy3wrmof.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz new file mode 100644 index 0000000..aeff92d Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/ru2nohmkoz-{0}-ghr9dc63gi-ghr9dc63gi.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/ru2nohmkoz-{0}-ghr9dc63gi-ghr9dc63gi.gz new file mode 100644 index 0000000..ca726e9 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/ru2nohmkoz-{0}-ghr9dc63gi-ghr9dc63gi.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz new file mode 100644 index 0000000..1199029 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz new file mode 100644 index 0000000..6c9f9b3 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/win2gt64sq-{0}-x8xhhr7jgv-x8xhhr7jgv.gz b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/win2gt64sq-{0}-x8xhhr7jgv-x8xhhr7jgv.gz new file mode 100644 index 0000000..2c10c8e Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/compressed/win2gt64sq-{0}-x8xhhr7jgv-x8xhhr7jgv.gz differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/jsmodules/jsmodules.build.manifest.json b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/jsmodules/jsmodules.build.manifest.json new file mode 100644 index 0000000..befb761 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/jsmodules/jsmodules.build.manifest.json @@ -0,0 +1,3 @@ +[ + "_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js" +] \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rbcswa.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..f419cd9 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["nTq9ODgeHccMMHoR2mu0OO27vi/5J53stDT4AbHuDrI=","YV9YpSM1p\u002B1BMvzD8i2UHH4iIHP03rRx\u002B9SjCR1hmjM=","XW5ngnLS9WYjHhEP9XsOy1tiVDcK4zH01aWWsm1t8hA=","xXjEBG2rVfMEb/WiROrMbX6avjFdgZ7umZXUv9i4DEk=","Nr\u002BX0E6SD28PBUEMh\u002B38YoybZOJi73IhkbjBO\u002BKT/8E=","yhbRZak/2IoMNJQiipmo3WXmb/qdIgmYNfE8PR/JHHY=","fGU8aN/b5l6kdZZgNmgBg2\u002BWQs5V/iJNyZC0zORKOQk=","WewvdjIDYWaZvzc9ojlULEEjHMrnEhqAVVbaILC\u002BL88=","mOj9S2ID7DTm8jF0x0vX5wxpn69G4JaIU5\u002Bqpv2K3ik=","1Xaj7/uP5VxPfuFh7fayRPL2uNxujFZ44TMNdCFkaP8=","8PFre9pSONRHUwdYJFb98Y\u002BTig5vL/adBOp4j1DiD7k=","8QGq4GNgEOJgyejvgZOY/K5L5cA0l/lbr0UZCSHSNso=","ijqRBvTB\u002BVbD6Beq4NJ7jxSXJ06/0Dm7epCfxUYYHmU=","eo9fSJcYvVnJVE03qUkoG3vsSvZSKWoD33aUOek1M7k=","Dn1\u002B5nMImcDxBf8Iyx7jFnwIRErOkGX\u002BHVgkxX4yMQY=","GWKVDm9BevfRTaIfkvdnybcxasv9O9GnbxFVgFkxvVM=","N/gCiT9/xyD0k6DzY6Hs\u002BbvrKDpNxaUJ3gRBwM0Vpf0=","QaGFqiGDSEw03WX/X7Ot4qkklxHgj2N9x93DLz483ro=","Znw2zgE\u002BbrQC7WS10zj9meT9wLCWN2p2wXGM7EihjNM=","rteyLdcL4\u002BvMLIrwFmuGvCJcC3vb8rPPmFw8LynDvk4=","eywalX6v6ZE7NKWgxdxs5eEOvCwmixDUos87hxxFIu8=","zvC8vfXGm\u002BnjRtmQ8oyl8\u002BgznCB//LxfTfll/t0HN6g="],"CachedAssets":{"nTq9ODgeHccMMHoR2mu0OO27vi/5J53stDT4AbHuDrI=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\klh9ieqob8-{0}-iyd2uar0up-iyd2uar0up.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DataGrid/FluentDataGrid.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tf25ezwmbu","Integrity":"mVXt7/yFqdMLa8QQY6iYBSk\u002B6LH/40GbtguA3LB217U=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js","FileLength":5297,"LastWriteTime":"2026-06-29T14:22:38.2477962+00:00"},"YV9YpSM1p\u002B1BMvzD8i2UHH4iIHP03rRx\u002B9SjCR1hmjM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\f3i2l0jv30-{0}-iddw5cjyql-iddw5cjyql.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DateTime/FluentCalendar.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DateTime\\FluentCalendar.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fg74estnen","Integrity":"QbM15H4tY8nQrgmM7QmvW7\u002BJn9xwkXbIf2\u002B3hzb9c4s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DateTime\\FluentCalendar.razor.js","FileLength":1385,"LastWriteTime":"2026-06-29T14:22:38.2370451+00:00"},"XW5ngnLS9WYjHhEP9XsOy1tiVDcK4zH01aWWsm1t8hA=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\6mwvvlkmgj-{0}-s7fspo1leq-s7fspo1leq.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Grid/FluentGrid.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Grid\\FluentGrid.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xdducvqoxa","Integrity":"u1h2lV5rBI3BrsWyH29QMNbSsQfE0poKrnbxvM3pb6c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Grid\\FluentGrid.razor.js","FileLength":804,"LastWriteTime":"2026-06-29T14:22:38.2487956+00:00"},"xXjEBG2rVfMEb/WiROrMbX6avjFdgZ7umZXUv9i4DEk=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\h0qxm5u0yy-{0}-qpepyjfzgz-qpepyjfzgz.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/InputFile/FluentInputFile.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\InputFile\\FluentInputFile.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ar1nsr94vf","Integrity":"puAYTsdUDYsunZeaTnjnUZbjMjWCztFefm0D1WafaPw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\InputFile\\FluentInputFile.razor.js","FileLength":684,"LastWriteTime":"2026-06-29T14:22:38.2380451+00:00"},"Nr\u002BX0E6SD28PBUEMh\u002B38YoybZOJi73IhkbjBO\u002BKT/8E=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\win2gt64sq-{0}-x8xhhr7jgv-x8xhhr7jgv.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/KeyCode/FluentKeyCode.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\KeyCode\\FluentKeyCode.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hvr43rsdj1","Integrity":"HZXVE/PUmqhsUTpuEgTqyaVTgUoGuGN4FqivUgvvhFo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\KeyCode\\FluentKeyCode.razor.js","FileLength":1025,"LastWriteTime":"2026-06-29T14:22:38.2477962+00:00"},"yhbRZak/2IoMNJQiipmo3WXmb/qdIgmYNfE8PR/JHHY=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ru2nohmkoz-{0}-ghr9dc63gi-ghr9dc63gi.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/FluentSelect.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\List\\FluentSelect.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zf4g6qeqb4","Integrity":"f0j6rHz4U/x\u002BpO1EDCKvIZBbfLy/dXA\u002BjWT5to3EdDQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\List\\FluentSelect.razor.js","FileLength":341,"LastWriteTime":"2026-06-29T14:22:38.2380451+00:00"},"fGU8aN/b5l6kdZZgNmgBg2\u002BWQs5V/iJNyZC0zORKOQk=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\4m8jx7ixl4-{0}-nvqi1h5n7i-nvqi1h5n7i.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Nav/FluentNav.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Nav\\FluentNav.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bkbb3l5sfm","Integrity":"tUn67gj2s6LMiMV5lUJnwKgWSr/lfYcaxEl8wuTWS2E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Nav\\FluentNav.razor.js","FileLength":1739,"LastWriteTime":"2026-06-29T14:22:38.2614037+00:00"},"WewvdjIDYWaZvzc9ojlULEEjHMrnEhqAVVbaILC\u002BL88=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\mm8wr5jb95-{0}-asn2ffubki-asn2ffubki.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Overflow/FluentOverflow.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Overflow\\FluentOverflow.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1flm182f7j","Integrity":"7bZF8uwHs/l8/OSFSaLC/zTyosxVIS02ICtgNKGPnP4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Overflow\\FluentOverflow.razor.js","FileLength":1660,"LastWriteTime":"2026-06-29T14:22:38.2422821+00:00"},"mOj9S2ID7DTm8jF0x0vX5wxpn69G4JaIU5\u002Bqpv2K3ik=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\jq2jihf5fr-{0}-7jrmyk289x-7jrmyk289x.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\PullToRefresh\\FluentPullToRefresh.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tipazoft2g","Integrity":"tTIpyljPo/QFZTwD6HKjB5LpYDfJbdYh1WmF9cJGgvI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\PullToRefresh\\FluentPullToRefresh.razor.js","FileLength":1568,"LastWriteTime":"2026-06-29T14:22:38.2634041+00:00"},"1Xaj7/uP5VxPfuFh7fayRPL2uNxujFZ44TMNdCFkaP8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\is0nail857-{0}-rdaq2hquit-rdaq2hquit.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Tooltip/FluentTooltip.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Tooltip\\FluentTooltip.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z42b2aip3e","Integrity":"bRbcLRczN1GPnqA3Re1jatdgP587mjVEOqTVOfOjG5o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Tooltip\\FluentTooltip.razor.js","FileLength":671,"LastWriteTime":"2026-06-29T14:22:38.2634041+00:00"},"8PFre9pSONRHUwdYJFb98Y\u002BTig5vL/adBOp4j1DiD7k=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ib5axksgx0-{0}-o9w0qkfcrf-o9w0qkfcrf.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/TreeView/FluentTreeView.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\TreeView\\FluentTreeView.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn5mgfseff","Integrity":"GLIhBa/Trggd7bGeeUuKKPZNhenwG104/L59ovzgHSo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\TreeView\\FluentTreeView.razor.js","FileLength":387,"LastWriteTime":"2026-06-29T14:22:38.2487956+00:00"},"8QGq4GNgEOJgyejvgZOY/K5L5cA0l/lbr0UZCSHSNso=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\oc0evn85jv-{0}-t1fy3wrmof-t1fy3wrmof.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"css/default-fuib.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\default-fuib.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uu07hcfnu8","Integrity":"FhFgpXuMIyIl\u002BzkBzQOWPMSUQFy/sbm2tqICjjaFMck=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\default-fuib.css","FileLength":1119,"LastWriteTime":"2026-06-29T14:22:38.2412751+00:00"},"ijqRBvTB\u002BVbD6Beq4NJ7jxSXJ06/0Dm7epCfxUYYHmU=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\6nn42apl8y-{0}-acio4t06fh-acio4t06fh.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"css/reboot.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"w1o274hesg","Integrity":"vJLsSUQe61SUTw2195Gksk/aLyruEB6Xoh1ORbzQmJw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\reboot.css","FileLength":2017,"LastWriteTime":"2026-06-29T14:22:38.2422821+00:00"},"eo9fSJcYvVnJVE03qUkoG3vsSvZSKWoD33aUOek1M7k=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\kwrall9b0s-{0}-p1atgyms84-p1atgyms84.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kggmxgia3c","Integrity":"1J14HQFFJHp\u002BcVjMzdLoItjq\u002BPoQcjJlRXdxF4cbL7w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.lib.module.js","FileLength":104324,"LastWriteTime":"2026-06-29T14:22:38.2914493+00:00"},"Dn1\u002B5nMImcDxBf8Iyx7jFnwIRErOkGX\u002BHVgkxX4yMQY=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"app#[.{fingerprint=hhus5bms5i}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"onq2ek763p","Integrity":"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","FileLength":1884,"LastWriteTime":"2026-06-29T14:22:38.2457892+00:00"},"GWKVDm9BevfRTaIfkvdnybcxasv9O9GnbxFVgFkxvVM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint=13ja33weya}]?.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7yymvlbkex","Integrity":"kQLxn\u002BTSoZvHHUJJnDORp3qKU0F\u002BkzVxLQB9TB0aEoY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","FileLength":720,"LastWriteTime":"2026-06-29T14:22:38.2594034+00:00"},"N/gCiT9/xyD0k6DzY6Hs\u002BbvrKDpNxaUJ3gRBwM0Vpf0=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint=uhfllo7vmv}]?.modules.json.gz","AssetKind":"Build","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\jsmodules\\jsmodules.build.manifest.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wvxjj87u8r","Integrity":"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\jsmodules\\jsmodules.build.manifest.json","FileLength":95,"LastWriteTime":"2026-06-29T14:22:38.2517957+00:00"},"QaGFqiGDSEw03WX/X7Ot4qkklxHgj2N9x93DLz483ro=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint=ne14ti1q68}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.web.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"h7mvatshzf","Integrity":"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.web.js","FileLength":55600,"LastWriteTime":"2026-06-29T14:22:38.2814293+00:00"},"Znw2zgE\u002BbrQC7WS10zj9meT9wLCWN2p2wXGM7EihjNM=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint=ig5xotzpx5}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.server.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z7j3iy8r3e","Integrity":"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG\u002Bjt0IueBn0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.server.js","FileLength":44613,"LastWriteTime":"2026-06-29T14:22:38.2744058+00:00"},"rteyLdcL4\u002BvMLIrwFmuGvCJcC3vb8rPPmFw8LynDvk4=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ctztv6q6p6-{0}-jdfzv2q2bu-jdfzv2q2bu.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wulh2zdohq","Integrity":"6AanHFzLkOIOoi\u002B7b5b3h2tQsCQcPS9ts519xHvL0Eo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","FileLength":19300,"LastWriteTime":"2026-06-29T14:22:38.265413+00:00"},"eywalX6v6ZE7NKWgxdxs5eEOvCwmixDUos87hxxFIu8=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint=xny4mnot63}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bd7sv35qmy","Integrity":"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","FileLength":2527,"LastWriteTime":"2026-06-29T14:22:38.2537962+00:00"},"zvC8vfXGm\u002BnjRtmQ8oyl8\u002BgznCB//LxfTfll/t0HN6g=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint=yi314np04p}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"snvxky03e7","Integrity":"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","FileLength":2481,"LastWriteTime":"2026-06-29T14:22:38.2537962+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/ref/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/ref/QuantEngine.Web.dll new file mode 100644 index 0000000..5f293a0 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/ref/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/refint/QuantEngine.Web.dll b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/refint/QuantEngine.Web.dll new file mode 100644 index 0000000..5f293a0 Binary files /dev/null and b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/refint/QuantEngine.Web.dll differ diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rjimswa.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..400de80 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"ALxWDQhPmdZwUFbyl7L5C8GukPrDDIApUiu7jAGOdAw=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["0VWc3ZwznUVZwzCZ6dFMqKCSZLmOCH9mxrOKQFdQ\u002BI4=","oMx1gHhRahcrGnKdzOPw2mUmR5Dr6T4iMA82Th1ltYc="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rjsmcshtml.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..a7d787c --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"61ZzOkAafDUCzt7x0mEjc+KORTs/Of52hN2aYDIQSWo=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["JTTrBKbjS35ApfJf5RSZHGAVU4t86eB4Z3Dj0Z4ZHHw=","rTMATgH4bAjZoNZ\u002BKRaVF9OxRk9Kn6EBIemE7YzyabI=","hxbowMggSnj8GJZOdMJHHwwDttpxRJIOTdIfn0ut0Ac=","hSLwzYWjyZqvvqAfHnAB6rPotX3eG0Hu8hDe8i5z7xs=","Ve1QW/FmTNllJk3cvvhc6GX9yH8fpHWmRRGHdwsWzSk=","Lnqf\u002BNn8uUZsaje5OQes9m0Q0KwAfchqG1V350Yn6BM=","gutXfyMccv5XisHlHhGJVGZETahysZqJii\u002Bg92M3\u002BdY=","hrXj0bYYvmdlZvAZZUebReLZfF8J/65r\u002B6aq4KtW3IE=","Kx2jIyFuF\u002BWn7fgtHBZ1NAWotqOmDxzgr6dTTh7HDPE=","sccdnyWmjEVIc4E/Wun5yH7NqVHF7c3g\u002B3KDbNw2New=","0nm9KNek3j/oQYUZUWEBhhL0txx1ekRnvnlCKKX0\u002Be8=","opg1Y4oXGX8x\u002BiLqpy9S3XVriqUcRUflY6tvfS0RPrM=","tNOP0eY2IzG88JsO78RhXsM42R7VPpxERLnNyDbauaU=","re4wFqPP/3GgQc83P3HKVcekxgIDYb4wyWk7MAimQDY=","vQcVlD31Fc9FE7Bi2395HnZbsJNtUlPfrATGTUN/0Q8=","yZglLoEA3dZuvvi6ZlKbOhDYJl863V6DuFnfV3jnch8=","m1RQtzMLoQWq6UnuVeiRVXSM2c2Q6/OzZc55uM2i93A=","hiPreQqqr5M81jQh\u002BsyYzu6fPzHbXkO00H\u002BjwFUXmVI=","nj4bTNdXLks/ifVLGyyn0JSdi3PzYDtjcCY1DlyDaUQ=","vQOI1xTEFZObVDsVgjTF2znZABTIHfwG/zTPmKPVBe0=","7elVBzPhnnl25N/3P1W6oFDvEswhk00rPXKO0IH/4LA=","axhk1iMDPHJaNUO/9u/c4COPVG\u002B//CIDUVpvDaIr\u002BX4="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rjsmrazor.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..ccdc90e --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"hb9Mk8Q4BfRLjPFbSBNw4B6QTKNWFUuDQL43Qwq5ZuI=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["JTTrBKbjS35ApfJf5RSZHGAVU4t86eB4Z3Dj0Z4ZHHw=","rTMATgH4bAjZoNZ\u002BKRaVF9OxRk9Kn6EBIemE7YzyabI=","hxbowMggSnj8GJZOdMJHHwwDttpxRJIOTdIfn0ut0Ac=","hSLwzYWjyZqvvqAfHnAB6rPotX3eG0Hu8hDe8i5z7xs=","Ve1QW/FmTNllJk3cvvhc6GX9yH8fpHWmRRGHdwsWzSk=","Lnqf\u002BNn8uUZsaje5OQes9m0Q0KwAfchqG1V350Yn6BM=","gutXfyMccv5XisHlHhGJVGZETahysZqJii\u002Bg92M3\u002BdY=","hrXj0bYYvmdlZvAZZUebReLZfF8J/65r\u002B6aq4KtW3IE=","Kx2jIyFuF\u002BWn7fgtHBZ1NAWotqOmDxzgr6dTTh7HDPE=","sccdnyWmjEVIc4E/Wun5yH7NqVHF7c3g\u002B3KDbNw2New=","0nm9KNek3j/oQYUZUWEBhhL0txx1ekRnvnlCKKX0\u002Be8=","opg1Y4oXGX8x\u002BiLqpy9S3XVriqUcRUflY6tvfS0RPrM=","tNOP0eY2IzG88JsO78RhXsM42R7VPpxERLnNyDbauaU=","re4wFqPP/3GgQc83P3HKVcekxgIDYb4wyWk7MAimQDY=","vQcVlD31Fc9FE7Bi2395HnZbsJNtUlPfrATGTUN/0Q8=","yZglLoEA3dZuvvi6ZlKbOhDYJl863V6DuFnfV3jnch8=","m1RQtzMLoQWq6UnuVeiRVXSM2c2Q6/OzZc55uM2i93A=","hiPreQqqr5M81jQh\u002BsyYzu6fPzHbXkO00H\u002BjwFUXmVI=","nj4bTNdXLks/ifVLGyyn0JSdi3PzYDtjcCY1DlyDaUQ=","vQOI1xTEFZObVDsVgjTF2znZABTIHfwG/zTPmKPVBe0=","7elVBzPhnnl25N/3P1W6oFDvEswhk00rPXKO0IH/4LA=","axhk1iMDPHJaNUO/9u/c4COPVG\u002B//CIDUVpvDaIr\u002BX4="],"CachedAssets":{"vQOI1xTEFZObVDsVgjTF2znZABTIHfwG/zTPmKPVBe0=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint}]?.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"13ja33weya","Integrity":"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"Components\\Layout\\ReconnectModal.razor.js","FileLength":2364,"LastWriteTime":"2026-06-29T13:57:48.3610236+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rpswa.dswa.cache.json b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..c82a254 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"sRnjZ123Hmd3VL4RmNf3gURHR16GI5Uk+lQqQ4VvHbs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["JTTrBKbjS35ApfJf5RSZHGAVU4t86eB4Z3Dj0Z4ZHHw=","rTMATgH4bAjZoNZ\u002BKRaVF9OxRk9Kn6EBIemE7YzyabI=","hxbowMggSnj8GJZOdMJHHwwDttpxRJIOTdIfn0ut0Ac=","hSLwzYWjyZqvvqAfHnAB6rPotX3eG0Hu8hDe8i5z7xs=","Ve1QW/FmTNllJk3cvvhc6GX9yH8fpHWmRRGHdwsWzSk=","Lnqf\u002BNn8uUZsaje5OQes9m0Q0KwAfchqG1V350Yn6BM=","gutXfyMccv5XisHlHhGJVGZETahysZqJii\u002Bg92M3\u002BdY=","hrXj0bYYvmdlZvAZZUebReLZfF8J/65r\u002B6aq4KtW3IE=","Kx2jIyFuF\u002BWn7fgtHBZ1NAWotqOmDxzgr6dTTh7HDPE=","sccdnyWmjEVIc4E/Wun5yH7NqVHF7c3g\u002B3KDbNw2New=","0nm9KNek3j/oQYUZUWEBhhL0txx1ekRnvnlCKKX0\u002Be8=","opg1Y4oXGX8x\u002BiLqpy9S3XVriqUcRUflY6tvfS0RPrM=","tNOP0eY2IzG88JsO78RhXsM42R7VPpxERLnNyDbauaU=","re4wFqPP/3GgQc83P3HKVcekxgIDYb4wyWk7MAimQDY=","vQcVlD31Fc9FE7Bi2395HnZbsJNtUlPfrATGTUN/0Q8=","yZglLoEA3dZuvvi6ZlKbOhDYJl863V6DuFnfV3jnch8="],"CachedAssets":{"JTTrBKbjS35ApfJf5RSZHGAVU4t86eB4Z3Dj0Z4ZHHw=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"app#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"hhus5bms5i","Integrity":"q\u002BWOaqM0nK\u002BYJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\app.css","FileLength":6886,"LastWriteTime":"2026-06-29T13:57:48.8780717+00:00"},"rTMATgH4bAjZoNZ\u002BKRaVF9OxRk9Kn6EBIemE7YzyabI=":{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\favicon.png","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ifv42okdf2","Integrity":"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.png","FileLength":1148,"LastWriteTime":"2026-06-29T13:57:48.879071+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/Components/Layout/MainLayout.razor.rz.scp.css b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/Components/Layout/MainLayout.razor.rz.scp.css new file mode 100644 index 0000000..d953fcf --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/Components/Layout/MainLayout.razor.rz.scp.css @@ -0,0 +1,98 @@ +.page[b-d6y8adeyxc] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-d6y8adeyxc] { + flex: 1; +} + +.sidebar[b-d6y8adeyxc] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-d6y8adeyxc] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-d6y8adeyxc] a:hover, .top-row[b-d6y8adeyxc] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-d6y8adeyxc] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-d6y8adeyxc] { + justify-content: space-between; + } + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-d6y8adeyxc] { + flex-direction: row; + } + + .sidebar[b-d6y8adeyxc] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-d6y8adeyxc] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-d6y8adeyxc] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-d6y8adeyxc], article[b-d6y8adeyxc] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui[b-d6y8adeyxc] { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss[b-d6y8adeyxc] { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/Components/Layout/NavMenu.razor.rz.scp.css b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/Components/Layout/NavMenu.razor.rz.scp.css new file mode 100644 index 0000000..04bbe15 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/Components/Layout/NavMenu.razor.rz.scp.css @@ -0,0 +1,105 @@ +.navbar-toggler[b-9gr5lv177o] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked[b-9gr5lv177o] { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row[b-9gr5lv177o] { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-9gr5lv177o] { + font-size: 1.1rem; +} + +.bi[b-9gr5lv177o] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item[b-9gr5lv177o] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-9gr5lv177o] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-9gr5lv177o] { + padding-bottom: 1rem; + } + + .nav-item[b-9gr5lv177o] .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item[b-9gr5lv177o] a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item[b-9gr5lv177o] .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable[b-9gr5lv177o] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-9gr5lv177o] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-9gr5lv177o] { + display: none; + } + + .nav-scrollable[b-9gr5lv177o] { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css new file mode 100644 index 0000000..0218211 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css @@ -0,0 +1,157 @@ +.components-reconnect-first-attempt-visible[b-9dgxcj10me], +.components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +.components-reconnect-failed-visible[b-9dgxcj10me], +.components-pause-visible[b-9dgxcj10me], +.components-resume-failed-visible[b-9dgxcj10me], +.components-rejoining-animation[b-9dgxcj10me] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-9dgxcj10me] { + display: block; +} + + +#components-reconnect-modal[b-9dgxcj10me] { + background-color: white; + width: 20rem; + margin: 20vh auto; + padding: 2rem; + border: 0; + border-radius: 0.5rem; + box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3); + opacity: 0; + transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete; + animation: components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-9dgxcj10me 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-9dgxcj10me]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-9dgxcj10me { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-9dgxcj10me { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-9dgxcj10me] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-9dgxcj10me] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-9dgxcj10me] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-9dgxcj10me] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-9dgxcj10me] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-9dgxcj10me] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-9dgxcj10me] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-9dgxcj10me 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-9dgxcj10me] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-9dgxcj10me { + 0% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 4.9% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 5% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 1; + } + + 100% { + top: 0px; + left: 0px; + width: 80px; + height: 80px; + opacity: 0; + } +} diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/bundle/QuantEngine.Web.styles.css b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/bundle/QuantEngine.Web.styles.css new file mode 100644 index 0000000..c9de7df --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/bundle/QuantEngine.Web.styles.css @@ -0,0 +1,365 @@ +@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css'; + +/* /Components/Layout/MainLayout.razor.rz.scp.css */ +.page[b-d6y8adeyxc] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-d6y8adeyxc] { + flex: 1; +} + +.sidebar[b-d6y8adeyxc] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-d6y8adeyxc] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-d6y8adeyxc] a:hover, .top-row[b-d6y8adeyxc] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-d6y8adeyxc] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-d6y8adeyxc] { + justify-content: space-between; + } + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-d6y8adeyxc] { + flex-direction: row; + } + + .sidebar[b-d6y8adeyxc] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-d6y8adeyxc] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-d6y8adeyxc] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-d6y8adeyxc], article[b-d6y8adeyxc] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui[b-d6y8adeyxc] { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss[b-d6y8adeyxc] { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } +/* /Components/Layout/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-9gr5lv177o] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked[b-9gr5lv177o] { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row[b-9gr5lv177o] { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-9gr5lv177o] { + font-size: 1.1rem; +} + +.bi[b-9gr5lv177o] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item[b-9gr5lv177o] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-9gr5lv177o] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-9gr5lv177o] { + padding-bottom: 1rem; + } + + .nav-item[b-9gr5lv177o] .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item[b-9gr5lv177o] a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item[b-9gr5lv177o] .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable[b-9gr5lv177o] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-9gr5lv177o] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-9gr5lv177o] { + display: none; + } + + .nav-scrollable[b-9gr5lv177o] { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} +/* /Components/Layout/ReconnectModal.razor.rz.scp.css */ +.components-reconnect-first-attempt-visible[b-9dgxcj10me], +.components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +.components-reconnect-failed-visible[b-9dgxcj10me], +.components-pause-visible[b-9dgxcj10me], +.components-resume-failed-visible[b-9dgxcj10me], +.components-rejoining-animation[b-9dgxcj10me] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-9dgxcj10me] { + display: block; +} + + +#components-reconnect-modal[b-9dgxcj10me] { + background-color: white; + width: 20rem; + margin: 20vh auto; + padding: 2rem; + border: 0; + border-radius: 0.5rem; + box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3); + opacity: 0; + transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete; + animation: components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-9dgxcj10me 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-9dgxcj10me]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-9dgxcj10me { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-9dgxcj10me { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-9dgxcj10me] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-9dgxcj10me] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-9dgxcj10me] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-9dgxcj10me] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-9dgxcj10me] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-9dgxcj10me] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-9dgxcj10me] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-9dgxcj10me 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-9dgxcj10me] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-9dgxcj10me { + 0% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 4.9% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 5% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 1; + } + + 100% { + top: 0px; + left: 0px; + width: 80px; + height: 80px; + opacity: 0; + } +} diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/projectbundle/QuantEngine.Web.bundle.scp.css b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/projectbundle/QuantEngine.Web.bundle.scp.css new file mode 100644 index 0000000..7c3267a --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/scopedcss/projectbundle/QuantEngine.Web.bundle.scp.css @@ -0,0 +1,363 @@ +/* /Components/Layout/MainLayout.razor.rz.scp.css */ +.page[b-d6y8adeyxc] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-d6y8adeyxc] { + flex: 1; +} + +.sidebar[b-d6y8adeyxc] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-d6y8adeyxc] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-d6y8adeyxc] a:hover, .top-row[b-d6y8adeyxc] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-d6y8adeyxc] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-d6y8adeyxc] { + justify-content: space-between; + } + + .top-row[b-d6y8adeyxc] a, .top-row[b-d6y8adeyxc] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-d6y8adeyxc] { + flex-direction: row; + } + + .sidebar[b-d6y8adeyxc] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-d6y8adeyxc] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-d6y8adeyxc] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-d6y8adeyxc], article[b-d6y8adeyxc] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui[b-d6y8adeyxc] { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss[b-d6y8adeyxc] { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } +/* /Components/Layout/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-9gr5lv177o] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked[b-9gr5lv177o] { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row[b-9gr5lv177o] { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-9gr5lv177o] { + font-size: 1.1rem; +} + +.bi[b-9gr5lv177o] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu[b-9gr5lv177o] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item[b-9gr5lv177o] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-9gr5lv177o] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-9gr5lv177o] { + padding-bottom: 1rem; + } + + .nav-item[b-9gr5lv177o] .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item[b-9gr5lv177o] a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item[b-9gr5lv177o] .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable[b-9gr5lv177o] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-9gr5lv177o] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-9gr5lv177o] { + display: none; + } + + .nav-scrollable[b-9gr5lv177o] { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} +/* /Components/Layout/ReconnectModal.razor.rz.scp.css */ +.components-reconnect-first-attempt-visible[b-9dgxcj10me], +.components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +.components-reconnect-failed-visible[b-9dgxcj10me], +.components-pause-visible[b-9dgxcj10me], +.components-resume-failed-visible[b-9dgxcj10me], +.components-rejoining-animation[b-9dgxcj10me] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed[b-9dgxcj10me], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-9dgxcj10me] { + display: block; +} + + +#components-reconnect-modal[b-9dgxcj10me] { + background-color: white; + width: 20rem; + margin: 20vh auto; + padding: 2rem; + border: 0; + border-radius: 0.5rem; + box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3); + opacity: 0; + transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete; + animation: components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-9dgxcj10me 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-9dgxcj10me]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-9dgxcj10me 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-9dgxcj10me { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-9dgxcj10me { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-9dgxcj10me { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-9dgxcj10me] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-9dgxcj10me] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-9dgxcj10me] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-9dgxcj10me] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-9dgxcj10me] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-9dgxcj10me] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-9dgxcj10me] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-9dgxcj10me 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-9dgxcj10me] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-9dgxcj10me { + 0% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 4.9% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 5% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 1; + } + + 100% { + top: 0px; + left: 0px; + width: 80px; + height: 80px; + opacity: 0; + } +} diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.build.endpoints.json b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..34e6814 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.gz"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="}]},{"Route":"QuantEngine.Web.modules.json","AssetFile":"QuantEngine.Web.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010416666667"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="},{"Name":"original-resource","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""}]},{"Route":"QuantEngine.Web.modules.json","AssetFile":"QuantEngine.Web.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"114"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:37 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="}]},{"Route":"QuantEngine.Web.modules.json.gz","AssetFile":"QuantEngine.Web.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs="}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395569620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="},{"Name":"original-resource","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10447"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="}]},{"Route":"QuantEngine.Web.styles.css.gz","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E="}]},{"Route":"QuantEngine.Web.uhfllo7vmv.modules.json","AssetFile":"QuantEngine.Web.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010416666667"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uhfllo7vmv"},{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="},{"Name":"label","Value":"QuantEngine.Web.modules.json"},{"Name":"original-resource","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""}]},{"Route":"QuantEngine.Web.uhfllo7vmv.modules.json","AssetFile":"QuantEngine.Web.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"114"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:37 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uhfllo7vmv"},{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="},{"Name":"label","Value":"QuantEngine.Web.modules.json"}]},{"Route":"QuantEngine.Web.uhfllo7vmv.modules.json.gz","AssetFile":"QuantEngine.Web.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uhfllo7vmv"},{"Name":"integrity","Value":"sha256-tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs="},{"Name":"label","Value":"QuantEngine.Web.modules.json.gz"}]},{"Route":"QuantEngine.Web.xny4mnot63.styles.css","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395569620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xny4mnot63"},{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="},{"Name":"label","Value":"QuantEngine.Web.styles.css"},{"Name":"original-resource","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""}]},{"Route":"QuantEngine.Web.xny4mnot63.styles.css","AssetFile":"QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10447"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xny4mnot63"},{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="},{"Name":"label","Value":"QuantEngine.Web.styles.css"}]},{"Route":"QuantEngine.Web.xny4mnot63.styles.css.gz","AssetFile":"QuantEngine.Web.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xny4mnot63"},{"Name":"integrity","Value":"sha256-T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E="},{"Name":"label","Value":"QuantEngine.Web.styles.css.gz"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.iyd2uar0up.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iyd2uar0up"},{"Name":"integrity","Value":"sha256-1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000188750472"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5297"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mVXt7/yFqdMLa8QQY6iYBSk+6LH/40GbtguA3LB217U=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw="},{"Name":"original-resource","Value":"\"1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5297"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mVXt7/yFqdMLa8QQY6iYBSk+6LH/40GbtguA3LB217U=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mVXt7/yFqdMLa8QQY6iYBSk+6LH/40GbtguA3LB217U="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.iddw5cjyql.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8572"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iddw5cjyql"},{"Name":"integrity","Value":"sha256-Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000721500722"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QbM15H4tY8nQrgmM7QmvW7+Jn9xwkXbIf2+3hzb9c4s=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo="},{"Name":"original-resource","Value":"\"Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8572"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QbM15H4tY8nQrgmM7QmvW7+Jn9xwkXbIf2+3hzb9c4s=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QbM15H4tY8nQrgmM7QmvW7+Jn9xwkXbIf2+3hzb9c4s="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001242236025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"804"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u1h2lV5rBI3BrsWyH29QMNbSsQfE0poKrnbxvM3pb6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk="},{"Name":"original-resource","Value":"\"CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4167"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"804"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u1h2lV5rBI3BrsWyH29QMNbSsQfE0poKrnbxvM3pb6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u1h2lV5rBI3BrsWyH29QMNbSsQfE0poKrnbxvM3pb6c="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.s7fspo1leq.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4167"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s7fspo1leq"},{"Name":"integrity","Value":"sha256-CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.qpepyjfzgz.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qpepyjfzgz"},{"Name":"integrity","Value":"sha256-vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001459854015"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"684"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"puAYTsdUDYsunZeaTnjnUZbjMjWCztFefm0D1WafaPw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg="},{"Name":"original-resource","Value":"\"vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"684"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"puAYTsdUDYsunZeaTnjnUZbjMjWCztFefm0D1WafaPw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-puAYTsdUDYsunZeaTnjnUZbjMjWCztFefm0D1WafaPw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000974658869"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1025"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HZXVE/PUmqhsUTpuEgTqyaVTgUoGuGN4FqivUgvvhFo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0="},{"Name":"original-resource","Value":"\"bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5058"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1025"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HZXVE/PUmqhsUTpuEgTqyaVTgUoGuGN4FqivUgvvhFo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HZXVE/PUmqhsUTpuEgTqyaVTgUoGuGN4FqivUgvvhFo="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.x8xhhr7jgv.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5058"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x8xhhr7jgv"},{"Name":"integrity","Value":"sha256-bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.ghr9dc63gi.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1076"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ghr9dc63gi"},{"Name":"integrity","Value":"sha256-nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002923976608"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"341"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"f0j6rHz4U/x+pO1EDCKvIZBbfLy/dXA+jWT5to3EdDQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk="},{"Name":"original-resource","Value":"\"nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1076"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"341"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"f0j6rHz4U/x+pO1EDCKvIZBbfLy/dXA+jWT5to3EdDQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f0j6rHz4U/x+pO1EDCKvIZBbfLy/dXA+jWT5to3EdDQ="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.nvqi1h5n7i.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9043"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvqi1h5n7i"},{"Name":"integrity","Value":"sha256-bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000574712644"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1739"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tUn67gj2s6LMiMV5lUJnwKgWSr/lfYcaxEl8wuTWS2E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI="},{"Name":"original-resource","Value":"\"bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"9043"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1739"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tUn67gj2s6LMiMV5lUJnwKgWSr/lfYcaxEl8wuTWS2E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tUn67gj2s6LMiMV5lUJnwKgWSr/lfYcaxEl8wuTWS2E="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.asn2ffubki.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"asn2ffubki"},{"Name":"integrity","Value":"sha256-6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000602046960"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1660"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7bZF8uwHs/l8/OSFSaLC/zTyosxVIS02ICtgNKGPnP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA="},{"Name":"original-resource","Value":"\"6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1660"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7bZF8uwHs/l8/OSFSaLC/zTyosxVIS02ICtgNKGPnP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7bZF8uwHs/l8/OSFSaLC/zTyosxVIS02ICtgNKGPnP4="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.7jrmyk289x.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7898"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7jrmyk289x"},{"Name":"integrity","Value":"sha256-HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000637348630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tTIpyljPo/QFZTwD6HKjB5LpYDfJbdYh1WmF9cJGgvI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU="},{"Name":"original-resource","Value":"\"HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7898"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tTIpyljPo/QFZTwD6HKjB5LpYDfJbdYh1WmF9cJGgvI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tTIpyljPo/QFZTwD6HKjB5LpYDfJbdYh1WmF9cJGgvI="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001488095238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"671"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRbcLRczN1GPnqA3Re1jatdgP587mjVEOqTVOfOjG5o=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw="},{"Name":"original-resource","Value":"\"D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"671"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRbcLRczN1GPnqA3Re1jatdgP587mjVEOqTVOfOjG5o=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bRbcLRczN1GPnqA3Re1jatdgP587mjVEOqTVOfOjG5o="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.rdaq2hquit.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rdaq2hquit"},{"Name":"integrity","Value":"sha256-D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.o9w0qkfcrf.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o9w0qkfcrf"},{"Name":"integrity","Value":"sha256-pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002577319588"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"387"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GLIhBa/Trggd7bGeeUuKKPZNhenwG104/L59ovzgHSo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc="},{"Name":"original-resource","Value":"\"pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"387"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GLIhBa/Trggd7bGeeUuKKPZNhenwG104/L59ovzgHSo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GLIhBa/Trggd7bGeeUuKKPZNhenwG104/L59ovzgHSo="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051810787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19300"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6AanHFzLkOIOoi+7b5b3h2tQsCQcPS9ts519xHvL0Eo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao="},{"Name":"original-resource","Value":"\"aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"169332"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:47:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19300"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6AanHFzLkOIOoi+7b5b3h2tQsCQcPS9ts519xHvL0Eo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6AanHFzLkOIOoi+7b5b3h2tQsCQcPS9ts519xHvL0Eo="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000009585430"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"104324"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1J14HQFFJHp+cVjMzdLoItjq+PoQcjJlRXdxF4cbL7w=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8="},{"Name":"original-resource","Value":"\"4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"430712"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:47:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"104324"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1J14HQFFJHp+cVjMzdLoItjq+PoQcjJlRXdxF4cbL7w=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1J14HQFFJHp+cVjMzdLoItjq+PoQcjJlRXdxF4cbL7w="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000892857143"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FhFgpXuMIyIl+zkBzQOWPMSUQFy/sbm2tqICjjaFMck=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE="},{"Name":"original-resource","Value":"\"T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3921"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FhFgpXuMIyIl+zkBzQOWPMSUQFy/sbm2tqICjjaFMck=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FhFgpXuMIyIl+zkBzQOWPMSUQFy/sbm2tqICjjaFMck="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.t1fy3wrmof.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3921"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t1fy3wrmof"},{"Name":"integrity","Value":"sha256-T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.acio4t06fh.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6958"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"acio4t06fh"},{"Name":"integrity","Value":"sha256-2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000495540139"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2017"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vJLsSUQe61SUTw2195Gksk/aLyruEB6Xoh1ORbzQmJw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg="},{"Name":"original-resource","Value":"\"2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6958"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2017"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vJLsSUQe61SUTw2195Gksk/aLyruEB6Xoh1ORbzQmJw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vJLsSUQe61SUTw2195Gksk/aLyruEB6Xoh1ORbzQmJw="}]},{"Route":"_framework/blazor.server.ig5xotzpx5.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022414489"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ig5xotzpx5"},{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""}]},{"Route":"_framework/blazor.server.ig5xotzpx5.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"165098"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ig5xotzpx5"},{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.ig5xotzpx5.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ig5xotzpx5"},{"Name":"integrity","Value":"sha256-8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022414489"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="},{"Name":"original-resource","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"165098"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="}]},{"Route":"_framework/blazor.server.js.gz","AssetFile":"_framework/blazor.server.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0="}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017985288"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="},{"Name":"original-resource","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"200538"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="}]},{"Route":"_framework/blazor.web.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q="}]},{"Route":"_framework/blazor.web.ne14ti1q68.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017985288"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ne14ti1q68"},{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""}]},{"Route":"_framework/blazor.web.ne14ti1q68.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200538"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ne14ti1q68"},{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.ne14ti1q68.js.gz","AssetFile":"_framework/blazor.web.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ne14ti1q68"},{"Name":"integrity","Value":"sha256-058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"app.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000530503979"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="},{"Name":"original-resource","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""}]},{"Route":"app.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6886"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="}]},{"Route":"app.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM="}]},{"Route":"app.hhus5bms5i.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000530503979"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hhus5bms5i"},{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""}]},{"Route":"app.hhus5bms5i.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6886"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hhus5bms5i"},{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="},{"Name":"label","Value":"app.css"}]},{"Route":"app.hhus5bms5i.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hhus5bms5i"},{"Name":"integrity","Value":"sha256-dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"favicon.ifv42okdf2.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"favicon.png"}]},{"Route":"favicon.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]}]} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.build.json b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..56299b9 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"tx3AH0DDaWZJUM60GxztV89V4IsKvKNQbzatHcVY6+A=","Source":"QuantEngine.Web","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"QuantEngine.Web\\wwwroot","Source":"QuantEngine.Web","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","Pattern":"**"}],"Assets":[{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint}]?.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"13ja33weya","Integrity":"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"Components\\Layout\\ReconnectModal.razor.js","FileLength":2364,"LastWriteTime":"2026-06-29T13:57:48+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\4m8jx7ixl4-{0}-nvqi1h5n7i-nvqi1h5n7i.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Nav/FluentNav.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Nav\\FluentNav.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bkbb3l5sfm","Integrity":"tUn67gj2s6LMiMV5lUJnwKgWSr/lfYcaxEl8wuTWS2E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Nav\\FluentNav.razor.js","FileLength":1739,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\6mwvvlkmgj-{0}-s7fspo1leq-s7fspo1leq.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Grid/FluentGrid.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Grid\\FluentGrid.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"xdducvqoxa","Integrity":"u1h2lV5rBI3BrsWyH29QMNbSsQfE0poKrnbxvM3pb6c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Grid\\FluentGrid.razor.js","FileLength":804,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\6nn42apl8y-{0}-acio4t06fh-acio4t06fh.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"css/reboot.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"w1o274hesg","Integrity":"vJLsSUQe61SUTw2195Gksk/aLyruEB6Xoh1ORbzQmJw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\reboot.css","FileLength":2017,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint=xny4mnot63}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bd7sv35qmy","Integrity":"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","FileLength":2527,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint=uhfllo7vmv}]?.modules.json.gz","AssetKind":"Build","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\jsmodules\\jsmodules.build.manifest.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wvxjj87u8r","Integrity":"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\jsmodules\\jsmodules.build.manifest.json","FileLength":95,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ctztv6q6p6-{0}-jdfzv2q2bu-jdfzv2q2bu.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wulh2zdohq","Integrity":"6AanHFzLkOIOoi+7b5b3h2tQsCQcPS9ts519xHvL0Eo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","FileLength":19300,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint=ig5xotzpx5}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.server.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z7j3iy8r3e","Integrity":"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.server.js","FileLength":44613,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\f3i2l0jv30-{0}-iddw5cjyql-iddw5cjyql.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DateTime/FluentCalendar.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DateTime\\FluentCalendar.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fg74estnen","Integrity":"QbM15H4tY8nQrgmM7QmvW7+Jn9xwkXbIf2+3hzb9c4s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DateTime\\FluentCalendar.razor.js","FileLength":1385,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\h0qxm5u0yy-{0}-qpepyjfzgz-qpepyjfzgz.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/InputFile/FluentInputFile.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\InputFile\\FluentInputFile.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ar1nsr94vf","Integrity":"puAYTsdUDYsunZeaTnjnUZbjMjWCztFefm0D1WafaPw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\InputFile\\FluentInputFile.razor.js","FileLength":684,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ib5axksgx0-{0}-o9w0qkfcrf-o9w0qkfcrf.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/TreeView/FluentTreeView.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\TreeView\\FluentTreeView.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn5mgfseff","Integrity":"GLIhBa/Trggd7bGeeUuKKPZNhenwG104/L59ovzgHSo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\TreeView\\FluentTreeView.razor.js","FileLength":387,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\is0nail857-{0}-rdaq2hquit-rdaq2hquit.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Tooltip/FluentTooltip.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Tooltip\\FluentTooltip.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z42b2aip3e","Integrity":"bRbcLRczN1GPnqA3Re1jatdgP587mjVEOqTVOfOjG5o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Tooltip\\FluentTooltip.razor.js","FileLength":671,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\jq2jihf5fr-{0}-7jrmyk289x-7jrmyk289x.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\PullToRefresh\\FluentPullToRefresh.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tipazoft2g","Integrity":"tTIpyljPo/QFZTwD6HKjB5LpYDfJbdYh1WmF9cJGgvI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\PullToRefresh\\FluentPullToRefresh.razor.js","FileLength":1568,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\klh9ieqob8-{0}-iyd2uar0up-iyd2uar0up.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DataGrid/FluentDataGrid.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tf25ezwmbu","Integrity":"mVXt7/yFqdMLa8QQY6iYBSk+6LH/40GbtguA3LB217U=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js","FileLength":5297,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\kwrall9b0s-{0}-p1atgyms84-p1atgyms84.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kggmxgia3c","Integrity":"1J14HQFFJHp+cVjMzdLoItjq+PoQcjJlRXdxF4cbL7w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.lib.module.js","FileLength":104324,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\mm8wr5jb95-{0}-asn2ffubki-asn2ffubki.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Overflow/FluentOverflow.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Overflow\\FluentOverflow.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1flm182f7j","Integrity":"7bZF8uwHs/l8/OSFSaLC/zTyosxVIS02ICtgNKGPnP4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Overflow\\FluentOverflow.razor.js","FileLength":1660,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint=ne14ti1q68}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.web.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"h7mvatshzf","Integrity":"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.web.js","FileLength":55600,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\oc0evn85jv-{0}-t1fy3wrmof-t1fy3wrmof.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"css/default-fuib.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\default-fuib.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uu07hcfnu8","Integrity":"FhFgpXuMIyIl+zkBzQOWPMSUQFy/sbm2tqICjjaFMck=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\default-fuib.css","FileLength":1119,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"app#[.{fingerprint=hhus5bms5i}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"onq2ek763p","Integrity":"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","FileLength":1884,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ru2nohmkoz-{0}-ghr9dc63gi-ghr9dc63gi.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/FluentSelect.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\List\\FluentSelect.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zf4g6qeqb4","Integrity":"f0j6rHz4U/x+pO1EDCKvIZBbfLy/dXA+jWT5to3EdDQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\List\\FluentSelect.razor.js","FileLength":341,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint=13ja33weya}]?.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7yymvlbkex","Integrity":"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","FileLength":720,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint=yi314np04p}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"snvxky03e7","Integrity":"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","FileLength":2481,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\win2gt64sq-{0}-x8xhhr7jgv-x8xhhr7jgv.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/KeyCode/FluentKeyCode.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\KeyCode\\FluentKeyCode.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hvr43rsdj1","Integrity":"HZXVE/PUmqhsUTpuEgTqyaVTgUoGuGN4FqivUgvvhFo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\KeyCode\\FluentKeyCode.razor.js","FileLength":1025,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\jsmodules\\jsmodules.build.manifest.json","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\jsmodules\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint}]?.modules.json","AssetKind":"Build","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"JSModule","AssetTraitValue":"JSModuleManifest","Fingerprint":"uhfllo7vmv","Integrity":"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"obj\\Release\\net10.0\\jsmodules\\jsmodules.build.manifest.json","FileLength":114,"LastWriteTime":"2026-06-29T14:22:37+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\bundle\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"xny4mnot63","Integrity":"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","FileLength":10447,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","SourceId":"QuantEngine.Web","SourceType":"Computed","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\projectbundle\\","BasePath":"/","RelativePath":"QuantEngine.Web#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"yi314np04p","Integrity":"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","FileLength":10327,"LastWriteTime":"2026-06-29T14:22:38+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"app#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"hhus5bms5i","Integrity":"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\app.css","FileLength":6886,"LastWriteTime":"2026-06-29T13:57:48+00:00"},{"Identity":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\favicon.png","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ifv42okdf2","Integrity":"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.png","FileLength":1148,"LastWriteTime":"2026-06-29T13:57:48+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.server.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ig5xotzpx5","Integrity":"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\build\\..\\_framework\\blazor.server.js","FileLength":165098,"LastWriteTime":"2026-05-20T20:17:46+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.web.js","SourceId":"QuantEngine.Web","SourceType":"Discovered","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ne14ti1q68","Integrity":"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\build\\..\\_framework\\blazor.web.js","FileLength":200538,"LastWriteTime":"2026-05-20T20:17:50+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DataGrid/FluentDataGrid.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"iyd2uar0up","Integrity":"1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js","FileLength":34875,"LastWriteTime":"2026-06-26T17:45:35+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DateTime\\FluentCalendar.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DateTime/FluentCalendar.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"iddw5cjyql","Integrity":"Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DateTime\\FluentCalendar.razor.js","FileLength":8572,"LastWriteTime":"2026-06-26T17:45:35+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Grid\\FluentGrid.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Grid/FluentGrid.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"s7fspo1leq","Integrity":"CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Grid\\FluentGrid.razor.js","FileLength":4167,"LastWriteTime":"2026-06-26T17:45:35+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\InputFile\\FluentInputFile.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/InputFile/FluentInputFile.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"qpepyjfzgz","Integrity":"vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\InputFile\\FluentInputFile.razor.js","FileLength":3141,"LastWriteTime":"2026-06-26T17:45:35+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\KeyCode\\FluentKeyCode.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/KeyCode/FluentKeyCode.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"x8xhhr7jgv","Integrity":"bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\KeyCode\\FluentKeyCode.razor.js","FileLength":5058,"LastWriteTime":"2026-06-26T17:45:36+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\List\\FluentSelect.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/FluentSelect.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ghr9dc63gi","Integrity":"nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\List\\FluentSelect.razor.js","FileLength":1076,"LastWriteTime":"2026-06-26T17:45:36+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Nav\\FluentNav.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Nav/FluentNav.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"nvqi1h5n7i","Integrity":"bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Nav\\FluentNav.razor.js","FileLength":9043,"LastWriteTime":"2026-06-26T17:45:36+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Overflow\\FluentOverflow.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Overflow/FluentOverflow.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"asn2ffubki","Integrity":"6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Overflow\\FluentOverflow.razor.js","FileLength":8875,"LastWriteTime":"2026-06-26T17:45:36+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\PullToRefresh\\FluentPullToRefresh.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"7jrmyk289x","Integrity":"HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\PullToRefresh\\FluentPullToRefresh.razor.js","FileLength":7898,"LastWriteTime":"2026-06-26T17:45:36+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Tooltip\\FluentTooltip.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Tooltip/FluentTooltip.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"rdaq2hquit","Integrity":"D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Tooltip\\FluentTooltip.razor.js","FileLength":2720,"LastWriteTime":"2026-06-26T17:45:36+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\TreeView\\FluentTreeView.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/TreeView/FluentTreeView.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"o9w0qkfcrf","Integrity":"pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\TreeView\\FluentTreeView.razor.js","FileLength":1155,"LastWriteTime":"2026-06-26T17:45:36+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"jdfzv2q2bu","Integrity":"aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","FileLength":169332,"LastWriteTime":"2026-06-26T17:47:56+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.lib.module.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"JSModule","AssetTraitValue":"JSLibraryModule","Fingerprint":"p1atgyms84","Integrity":"4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.lib.module.js","FileLength":430712,"LastWriteTime":"2026-06-26T17:47:57+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\default-fuib.css","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"css/default-fuib.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"t1fy3wrmof","Integrity":"T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\default-fuib.css","FileLength":3921,"LastWriteTime":"2026-06-26T17:34:49+00:00"},{"Identity":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\reboot.css","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"css/reboot.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"acio4t06fh","Integrity":"2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\reboot.css","FileLength":6958,"LastWriteTime":"2026-06-26T17:34:49+00:00"}],"Endpoints":[{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.gz"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\Components\\Layout\\ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kQLxn+TSoZvHHUJJnDORp3qKU0F+kzVxLQB9TB0aEoY="}]},{"Route":"QuantEngine.Web.bundle.scp.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000402900886"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"original-resource","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""}]},{"Route":"QuantEngine.Web.bundle.scp.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="}]},{"Route":"QuantEngine.Web.bundle.scp.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE="}]},{"Route":"QuantEngine.Web.modules.json","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010416666667"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="},{"Name":"original-resource","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""}]},{"Route":"QuantEngine.Web.modules.json","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\jsmodules\\jsmodules.build.manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"114"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:37 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="}]},{"Route":"QuantEngine.Web.modules.json.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs="}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395569620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="},{"Name":"original-resource","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""}]},{"Route":"QuantEngine.Web.styles.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10447"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="}]},{"Route":"QuantEngine.Web.styles.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E="}]},{"Route":"QuantEngine.Web.uhfllo7vmv.modules.json","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010416666667"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uhfllo7vmv"},{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="},{"Name":"label","Value":"QuantEngine.Web.modules.json"},{"Name":"original-resource","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""}]},{"Route":"QuantEngine.Web.uhfllo7vmv.modules.json","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\jsmodules\\jsmodules.build.manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"114"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:37 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uhfllo7vmv"},{"Name":"integrity","Value":"sha256-sgZOtYFoQbtT5NzEZj6mvNpqny3TPXduyD8nEg1wGig="},{"Name":"label","Value":"QuantEngine.Web.modules.json"}]},{"Route":"QuantEngine.Web.uhfllo7vmv.modules.json.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"95"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uhfllo7vmv"},{"Name":"integrity","Value":"sha256-tMpc4Mp5Kart9mS3UELWfInMDPFZYORmj0wiAw7JwBs="},{"Name":"label","Value":"QuantEngine.Web.modules.json.gz"}]},{"Route":"QuantEngine.Web.xny4mnot63.styles.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000395569620"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xny4mnot63"},{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="},{"Name":"label","Value":"QuantEngine.Web.styles.css"},{"Name":"original-resource","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""}]},{"Route":"QuantEngine.Web.xny4mnot63.styles.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\bundle\\QuantEngine.Web.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10447"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xny4mnot63"},{"Name":"integrity","Value":"sha256-gyVLg26Mqgbge1lN7tiWp+jOezUCLkUkkAGvbTOdF9k="},{"Name":"label","Value":"QuantEngine.Web.styles.css"}]},{"Route":"QuantEngine.Web.xny4mnot63.styles.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2527"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xny4mnot63"},{"Name":"integrity","Value":"sha256-T0/K5d2ZAfgI6THFcLOkMp/FUz1bE1K2fQTLO0Moj1E="},{"Name":"label","Value":"QuantEngine.Web.styles.css.gz"}]},{"Route":"QuantEngine.Web.yi314np04p.bundle.scp.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000402900886"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"label","Value":"QuantEngine.Web.bundle.scp.css"},{"Name":"original-resource","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""}]},{"Route":"QuantEngine.Web.yi314np04p.bundle.scp.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\projectbundle\\QuantEngine.Web.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-GphsPL5Q7m5g2Ugk7RGmBY019LEDJjdfaTE9uXiHMcs="},{"Name":"label","Value":"QuantEngine.Web.bundle.scp.css"}]},{"Route":"QuantEngine.Web.yi314np04p.bundle.scp.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\vpvw6nj9ax-{0}-yi314np04p-yi314np04p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2481"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yi314np04p"},{"Name":"integrity","Value":"sha256-eMUoaz34S9P8ffguerv/SxXWfTBS7zv7kXrquS2C5EE="},{"Name":"label","Value":"QuantEngine.Web.bundle.scp.css.gz"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.iyd2uar0up.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"34875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iyd2uar0up"},{"Name":"integrity","Value":"sha256-1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\klh9ieqob8-{0}-iyd2uar0up-iyd2uar0up.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000188750472"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5297"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mVXt7/yFqdMLa8QQY6iYBSk+6LH/40GbtguA3LB217U=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw="},{"Name":"original-resource","Value":"\"1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"34875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1lZKAKL99/fIKhHHyn78QXALxnCXr93fSNAdPHEQNyw="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\klh9ieqob8-{0}-iyd2uar0up-iyd2uar0up.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5297"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mVXt7/yFqdMLa8QQY6iYBSk+6LH/40GbtguA3LB217U=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mVXt7/yFqdMLa8QQY6iYBSk+6LH/40GbtguA3LB217U="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.iddw5cjyql.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DateTime\\FluentCalendar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8572"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iddw5cjyql"},{"Name":"integrity","Value":"sha256-Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\f3i2l0jv30-{0}-iddw5cjyql-iddw5cjyql.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000721500722"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QbM15H4tY8nQrgmM7QmvW7+Jn9xwkXbIf2+3hzb9c4s=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo="},{"Name":"original-resource","Value":"\"Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\DateTime\\FluentCalendar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8572"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Sm+4aqP8khjSbxRAfRvzKN3lDOzMNrkE4WoLElf1ZBo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentCalendar.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\f3i2l0jv30-{0}-iddw5cjyql-iddw5cjyql.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1385"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QbM15H4tY8nQrgmM7QmvW7+Jn9xwkXbIf2+3hzb9c4s=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QbM15H4tY8nQrgmM7QmvW7+Jn9xwkXbIf2+3hzb9c4s="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\6mwvvlkmgj-{0}-s7fspo1leq-s7fspo1leq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001242236025"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"804"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u1h2lV5rBI3BrsWyH29QMNbSsQfE0poKrnbxvM3pb6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk="},{"Name":"original-resource","Value":"\"CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Grid\\FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4167"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\6mwvvlkmgj-{0}-s7fspo1leq-s7fspo1leq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"804"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u1h2lV5rBI3BrsWyH29QMNbSsQfE0poKrnbxvM3pb6c=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u1h2lV5rBI3BrsWyH29QMNbSsQfE0poKrnbxvM3pb6c="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.s7fspo1leq.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Grid\\FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4167"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s7fspo1leq"},{"Name":"integrity","Value":"sha256-CKVUQ/vkjUgUY1uRzOu5xRN3mWbu53LQcqOhCL2qTjk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.qpepyjfzgz.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\InputFile\\FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qpepyjfzgz"},{"Name":"integrity","Value":"sha256-vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\h0qxm5u0yy-{0}-qpepyjfzgz-qpepyjfzgz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001459854015"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"684"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"puAYTsdUDYsunZeaTnjnUZbjMjWCztFefm0D1WafaPw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg="},{"Name":"original-resource","Value":"\"vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\InputFile\\FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vlTEC12Yb08ln/28/LKao6eXyvLvgKCMIlxu08w/hlg="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\h0qxm5u0yy-{0}-qpepyjfzgz-qpepyjfzgz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"684"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"puAYTsdUDYsunZeaTnjnUZbjMjWCztFefm0D1WafaPw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-puAYTsdUDYsunZeaTnjnUZbjMjWCztFefm0D1WafaPw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\win2gt64sq-{0}-x8xhhr7jgv-x8xhhr7jgv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000974658869"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1025"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HZXVE/PUmqhsUTpuEgTqyaVTgUoGuGN4FqivUgvvhFo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0="},{"Name":"original-resource","Value":"\"bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\KeyCode\\FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5058"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\win2gt64sq-{0}-x8xhhr7jgv-x8xhhr7jgv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1025"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HZXVE/PUmqhsUTpuEgTqyaVTgUoGuGN4FqivUgvvhFo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HZXVE/PUmqhsUTpuEgTqyaVTgUoGuGN4FqivUgvvhFo="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.x8xhhr7jgv.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\KeyCode\\FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5058"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x8xhhr7jgv"},{"Name":"integrity","Value":"sha256-bxDc4khUNjLOw+ARLrroYG3mpvBAs+vszwvhpYCOzZ0="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.ghr9dc63gi.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\List\\FluentSelect.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1076"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ghr9dc63gi"},{"Name":"integrity","Value":"sha256-nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ru2nohmkoz-{0}-ghr9dc63gi-ghr9dc63gi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002923976608"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"341"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"f0j6rHz4U/x+pO1EDCKvIZBbfLy/dXA+jWT5to3EdDQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk="},{"Name":"original-resource","Value":"\"nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\List\\FluentSelect.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1076"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nA/vz4/cYdWcN89t7NWCnYqE8FwF3k7OTUTfwLpk1Yk="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentSelect.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ru2nohmkoz-{0}-ghr9dc63gi-ghr9dc63gi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"341"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"f0j6rHz4U/x+pO1EDCKvIZBbfLy/dXA+jWT5to3EdDQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f0j6rHz4U/x+pO1EDCKvIZBbfLy/dXA+jWT5to3EdDQ="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.nvqi1h5n7i.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Nav\\FluentNav.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9043"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvqi1h5n7i"},{"Name":"integrity","Value":"sha256-bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\4m8jx7ixl4-{0}-nvqi1h5n7i-nvqi1h5n7i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000574712644"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1739"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tUn67gj2s6LMiMV5lUJnwKgWSr/lfYcaxEl8wuTWS2E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI="},{"Name":"original-resource","Value":"\"bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Nav\\FluentNav.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"9043"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bRKyUGuiMFqhTYV5yf1WzjwFtd/rKQ3ArG5qwShW2yI="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Nav/FluentNav.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\4m8jx7ixl4-{0}-nvqi1h5n7i-nvqi1h5n7i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1739"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tUn67gj2s6LMiMV5lUJnwKgWSr/lfYcaxEl8wuTWS2E=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tUn67gj2s6LMiMV5lUJnwKgWSr/lfYcaxEl8wuTWS2E="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.asn2ffubki.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Overflow\\FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"asn2ffubki"},{"Name":"integrity","Value":"sha256-6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\mm8wr5jb95-{0}-asn2ffubki-asn2ffubki.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000602046960"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1660"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7bZF8uwHs/l8/OSFSaLC/zTyosxVIS02ICtgNKGPnP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA="},{"Name":"original-resource","Value":"\"6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Overflow\\FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"8875"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6o+ehHCT/R8kEgIT+yI3v99icPhLOTg3U+P2aJNQ5PA="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\mm8wr5jb95-{0}-asn2ffubki-asn2ffubki.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1660"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7bZF8uwHs/l8/OSFSaLC/zTyosxVIS02ICtgNKGPnP4=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7bZF8uwHs/l8/OSFSaLC/zTyosxVIS02ICtgNKGPnP4="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.7jrmyk289x.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\PullToRefresh\\FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7898"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7jrmyk289x"},{"Name":"integrity","Value":"sha256-HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\jq2jihf5fr-{0}-7jrmyk289x-7jrmyk289x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000637348630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tTIpyljPo/QFZTwD6HKjB5LpYDfJbdYh1WmF9cJGgvI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU="},{"Name":"original-resource","Value":"\"HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\PullToRefresh\\FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7898"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HXkWfkVndk6WEvnsTYwUpm1Nfeht3aYi6m487Nl8OoU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\jq2jihf5fr-{0}-7jrmyk289x-7jrmyk289x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1568"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tTIpyljPo/QFZTwD6HKjB5LpYDfJbdYh1WmF9cJGgvI=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tTIpyljPo/QFZTwD6HKjB5LpYDfJbdYh1WmF9cJGgvI="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\is0nail857-{0}-rdaq2hquit-rdaq2hquit.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001488095238"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"671"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRbcLRczN1GPnqA3Re1jatdgP587mjVEOqTVOfOjG5o=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw="},{"Name":"original-resource","Value":"\"D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Tooltip\\FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\is0nail857-{0}-rdaq2hquit-rdaq2hquit.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"671"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"bRbcLRczN1GPnqA3Re1jatdgP587mjVEOqTVOfOjG5o=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bRbcLRczN1GPnqA3Re1jatdgP587mjVEOqTVOfOjG5o="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.rdaq2hquit.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\Tooltip\\FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rdaq2hquit"},{"Name":"integrity","Value":"sha256-D/2jXsbnFfF3qjWD63hPo/KToRTgWrk5EG02knLgXJw="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.o9w0qkfcrf.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\TreeView\\FluentTreeView.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o9w0qkfcrf"},{"Name":"integrity","Value":"sha256-pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ib5axksgx0-{0}-o9w0qkfcrf-o9w0qkfcrf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002577319588"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"387"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GLIhBa/Trggd7bGeeUuKKPZNhenwG104/L59ovzgHSo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc="},{"Name":"original-resource","Value":"\"pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Components\\TreeView\\FluentTreeView.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:45:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pEJcxp/i3pmze3icMk3UUq69b3Fh+U4c34a9oo2zBZc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TreeView/FluentTreeView.razor.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ib5axksgx0-{0}-o9w0qkfcrf-o9w0qkfcrf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"387"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"GLIhBa/Trggd7bGeeUuKKPZNhenwG104/L59ovzgHSo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GLIhBa/Trggd7bGeeUuKKPZNhenwG104/L59ovzgHSo="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ctztv6q6p6-{0}-jdfzv2q2bu-jdfzv2q2bu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000051810787"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19300"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6AanHFzLkOIOoi+7b5b3h2tQsCQcPS9ts519xHvL0Eo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao="},{"Name":"original-resource","Value":"\"aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"169332"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:47:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aeB/mRcbc+K21Gyh56YE+GRaaQuRiORj8coh5bs21ao="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\ctztv6q6p6-{0}-jdfzv2q2bu-jdfzv2q2bu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19300"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6AanHFzLkOIOoi+7b5b3h2tQsCQcPS9ts519xHvL0Eo=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6AanHFzLkOIOoi+7b5b3h2tQsCQcPS9ts519xHvL0Eo="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\kwrall9b0s-{0}-p1atgyms84-p1atgyms84.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000009585430"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"104324"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1J14HQFFJHp+cVjMzdLoItjq+PoQcjJlRXdxF4cbL7w=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8="},{"Name":"original-resource","Value":"\"4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\Microsoft.FluentUI.AspNetCore.Components.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"430712"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:47:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-4+8EMKrZyyKpz5SYRkfE9UNiAR/XXfbvLZupWyVo9e8="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\kwrall9b0s-{0}-p1atgyms84-p1atgyms84.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"104324"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1J14HQFFJHp+cVjMzdLoItjq+PoQcjJlRXdxF4cbL7w=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1J14HQFFJHp+cVjMzdLoItjq+PoQcjJlRXdxF4cbL7w="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\oc0evn85jv-{0}-t1fy3wrmof-t1fy3wrmof.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000892857143"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FhFgpXuMIyIl+zkBzQOWPMSUQFy/sbm2tqICjjaFMck=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE="},{"Name":"original-resource","Value":"\"T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\default-fuib.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3921"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\oc0evn85jv-{0}-t1fy3wrmof-t1fy3wrmof.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1119"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FhFgpXuMIyIl+zkBzQOWPMSUQFy/sbm2tqICjjaFMck=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FhFgpXuMIyIl+zkBzQOWPMSUQFy/sbm2tqICjjaFMck="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.t1fy3wrmof.css","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\default-fuib.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3921"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"t1fy3wrmof"},{"Name":"integrity","Value":"sha256-T+zRH2ZbvrSiWb+RLt5H/SOfx7sJ8sJTPP0oqO8F/eE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/css/default-fuib.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.acio4t06fh.css","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6958"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"acio4t06fh"},{"Name":"integrity","Value":"sha256-2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\6nn42apl8y-{0}-acio4t06fh-acio4t06fh.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000495540139"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2017"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vJLsSUQe61SUTw2195Gksk/aLyruEB6Xoh1ORbzQmJw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg="},{"Name":"original-resource","Value":"\"2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\css\\reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6958"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg=\""},{"Name":"Last-Modified","Value":"Fri, 26 Jun 2026 17:34:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2gpFDIv1SoVtZuoG45M8ctY3ZyadK6JpmeEpnZ+Labg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\6nn42apl8y-{0}-acio4t06fh-acio4t06fh.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2017"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vJLsSUQe61SUTw2195Gksk/aLyruEB6Xoh1ORbzQmJw=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vJLsSUQe61SUTw2195Gksk/aLyruEB6Xoh1ORbzQmJw="}]},{"Route":"_framework/blazor.server.ig5xotzpx5.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022414489"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ig5xotzpx5"},{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""}]},{"Route":"_framework/blazor.server.ig5xotzpx5.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"165098"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ig5xotzpx5"},{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.ig5xotzpx5.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ig5xotzpx5"},{"Name":"integrity","Value":"sha256-8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022414489"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="},{"Name":"original-resource","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""}]},{"Route":"_framework/blazor.server.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"165098"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:46 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Hkq0WF8BQSbPKBESSW0l9lfhLJCQMvFb4SNbTG4OHqY="}]},{"Route":"_framework/blazor.server.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44613"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SHiCfrY3uP/FPMl3Z/9dC8R/SbAFWcMG+jt0IueBn0="}]},{"Route":"_framework/blazor.web.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017985288"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="},{"Name":"original-resource","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""}]},{"Route":"_framework/blazor.web.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"200538"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="}]},{"Route":"_framework/blazor.web.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q="}]},{"Route":"_framework/blazor.web.ne14ti1q68.js","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017985288"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ne14ti1q68"},{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""}]},{"Route":"_framework/blazor.web.ne14ti1q68.js","AssetFile":"D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200538"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE=\""},{"Name":"Last-Modified","Value":"Wed, 20 May 2026 20:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ne14ti1q68"},{"Name":"integrity","Value":"sha256-HzXhVzhDfEU9VC0nAj+SUrhJj7DIUreXekbQktqpgOE="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.ne14ti1q68.js.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55600"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ne14ti1q68"},{"Name":"integrity","Value":"sha256-058dGub3ls7c2hIUQWWy3wBRpGD4A5cRsNrc818yk9Q="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"app.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000530503979"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="},{"Name":"original-resource","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""}]},{"Route":"app.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6886"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="}]},{"Route":"app.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM="}]},{"Route":"app.hhus5bms5i.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000530503979"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hhus5bms5i"},{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""}]},{"Route":"app.hhus5bms5i.css","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6886"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hhus5bms5i"},{"Name":"integrity","Value":"sha256-q+WOaqM0nK+YJc9mffiSnfzZ9cNGTWpp3KaiKimoxBQ="},{"Name":"label","Value":"app.css"}]},{"Route":"app.hhus5bms5i.css.gz","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1884"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 14:22:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hhus5bms5i"},{"Name":"integrity","Value":"sha256-dIHjmWP446UQxKnPFlhYbfhNtHyJbTw03B3FlIfJIhM="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"favicon.ifv42okdf2.png","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"favicon.png"}]},{"Route":"favicon.png","AssetFile":"C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Mon, 29 Jun 2026 13:57:48 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]}]} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.build.json.cache b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..5b3e812 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +tx3AH0DDaWZJUM60GxztV89V4IsKvKNQbzatHcVY6+A= \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.development.json b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.development.json new file mode 100644 index 0000000..6ea4832 --- /dev/null +++ b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\wwwroot\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\compressed\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\jsmodules\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\obj\\Release\\net10.0\\scopedcss\\bundle\\","D:\\DevCache\\nuget-packages\\microsoft.aspnetcore.app.internal.assets\\10.0.9\\_framework\\","D:\\DevCache\\nuget-packages\\microsoft.fluentui.aspnetcore.components\\5.0.0-rc.4-26177.1\\staticwebassets\\","C:\\Temp\\data_feed\\src\\dotnet\\QuantEngine.Web\\"],"Root":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app.css"},"Patterns":null},"app.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"q2w3mddmwi-{0}-hhus5bms5i-hhus5bms5i.gz"},"Patterns":null},"favicon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.png"},"Patterns":null},"QuantEngine.Web.modules.json":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jsmodules.build.manifest.json"},"Patterns":null},"QuantEngine.Web.modules.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"bnqbmxev8p-{0}-uhfllo7vmv-uhfllo7vmv.gz"},"Patterns":null},"QuantEngine.Web.styles.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"QuantEngine.Web.styles.css"},"Patterns":null},"QuantEngine.Web.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"b7jn6yc0gz-{0}-xny4mnot63-xny4mnot63.gz"},"Patterns":null},"_framework":{"Children":{"blazor.server.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"blazor.server.js"},"Patterns":null},"blazor.server.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dym80g6kqp-{0}-ig5xotzpx5-ig5xotzpx5.gz"},"Patterns":null},"blazor.web.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"blazor.web.js"},"Patterns":null},"blazor.web.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nr5locadir-{0}-ne14ti1q68-ne14ti1q68.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Microsoft.FluentUI.AspNetCore.Components":{"Children":{"Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ctztv6q6p6-{0}-jdfzv2q2bu-jdfzv2q2bu.gz"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kwrall9b0s-{0}-p1atgyms84-p1atgyms84.gz"},"Patterns":null},"css":{"Children":{"default-fuib.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"css/default-fuib.css"},"Patterns":null},"default-fuib.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oc0evn85jv-{0}-t1fy3wrmof-t1fy3wrmof.gz"},"Patterns":null},"reboot.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"css/reboot.css"},"Patterns":null},"reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6nn42apl8y-{0}-acio4t06fh-acio4t06fh.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"DataGrid":{"Children":{"FluentDataGrid.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/DataGrid/FluentDataGrid.razor.js"},"Patterns":null},"FluentDataGrid.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"klh9ieqob8-{0}-iyd2uar0up-iyd2uar0up.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"DateTime":{"Children":{"FluentCalendar.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/DateTime/FluentCalendar.razor.js"},"Patterns":null},"FluentCalendar.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f3i2l0jv30-{0}-iddw5cjyql-iddw5cjyql.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Grid":{"Children":{"FluentGrid.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Grid/FluentGrid.razor.js"},"Patterns":null},"FluentGrid.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6mwvvlkmgj-{0}-s7fspo1leq-s7fspo1leq.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"InputFile":{"Children":{"FluentInputFile.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/InputFile/FluentInputFile.razor.js"},"Patterns":null},"FluentInputFile.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h0qxm5u0yy-{0}-qpepyjfzgz-qpepyjfzgz.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyCode":{"Children":{"FluentKeyCode.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/KeyCode/FluentKeyCode.razor.js"},"Patterns":null},"FluentKeyCode.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"win2gt64sq-{0}-x8xhhr7jgv-x8xhhr7jgv.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"List":{"Children":{"FluentSelect.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/List/FluentSelect.razor.js"},"Patterns":null},"FluentSelect.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ru2nohmkoz-{0}-ghr9dc63gi-ghr9dc63gi.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Nav":{"Children":{"FluentNav.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Nav/FluentNav.razor.js"},"Patterns":null},"FluentNav.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4m8jx7ixl4-{0}-nvqi1h5n7i-nvqi1h5n7i.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Overflow":{"Children":{"FluentOverflow.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Overflow/FluentOverflow.razor.js"},"Patterns":null},"FluentOverflow.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mm8wr5jb95-{0}-asn2ffubki-asn2ffubki.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"PullToRefresh":{"Children":{"FluentPullToRefresh.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/PullToRefresh/FluentPullToRefresh.razor.js"},"Patterns":null},"FluentPullToRefresh.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jq2jihf5fr-{0}-7jrmyk289x-7jrmyk289x.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Tooltip":{"Children":{"FluentTooltip.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Tooltip/FluentTooltip.razor.js"},"Patterns":null},"FluentTooltip.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"is0nail857-{0}-rdaq2hquit-rdaq2hquit.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"TreeView":{"Children":{"FluentTreeView.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/TreeView/FluentTreeView.razor.js"},"Patterns":null},"FluentTreeView.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ib5axksgx0-{0}-o9w0qkfcrf-o9w0qkfcrf.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"Components/Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t9yb5ynpxl-{0}-13ja33weya-13ja33weya.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/src/dotnet/QuantEngine.Web/obj/Release/net10.0/swae.build.ex.cache b/src/dotnet/QuantEngine.Web/obj/Release/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29