diff --git a/.cache/clangd/index/main.cpp.0D6023EA3F9F2E27.idx b/.cache/clangd/index/main.cpp.0D6023EA3F9F2E27.idx
new file mode 100644
index 0000000..3b03a9c
Binary files /dev/null and b/.cache/clangd/index/main.cpp.0D6023EA3F9F2E27.idx differ
diff --git a/.cache/jb/UpdateWork.dat b/.cache/jb/UpdateWork.dat
deleted file mode 100644
index 96efdac..0000000
Binary files a/.cache/jb/UpdateWork.dat and /dev/null differ
diff --git a/.cache/jb/version.txt b/.cache/jb/version.txt
deleted file mode 100644
index ede3f69..0000000
--- a/.cache/jb/version.txt
+++ /dev/null
@@ -1 +0,0 @@
-(ssh://git@git.jetbrains.team/llvm/llvm-project.git f4157ca9dd49181f6d35eaf6d324ffa84a40f01b based on LLVM 31f1590e4fb324c43dc36199587c453e27b6f6fa revision)
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index aa2a98d..39996e1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,4 +6,4 @@ CMakeCache.txt
Makefile
# Executable
-douwco_web
+server.out
diff --git a/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/.gitignore b/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/.gitignore
deleted file mode 100644
index 4b22880..0000000
--- a/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/.gitignore
+++ /dev/null
@@ -1,15 +0,0 @@
-# Default ignored files
-/shelf/
-/workspace.xml
-# Rider ignored files
-/contentModel.xml
-/projectSettingsUpdater.xml
-/modules.xml
-/.idea.DouwcoWebsite.iml
-# Ignored default folder with query files
-/queries/
-# Datasource local storage ignored files
-/dataSources/
-/dataSources.local.xml
-# Editor-based HTTP Client requests
-/httpRequests/
diff --git a/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/encodings.xml b/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/encodings.xml
deleted file mode 100644
index df87cf9..0000000
--- a/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/encodings.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/indexLayout.xml b/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/indexLayout.xml
deleted file mode 100644
index 7b08163..0000000
--- a/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/indexLayout.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/vcs.xml b/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/vcs.xml
deleted file mode 100644
index b2bdec2..0000000
--- a/.idea_DouwcoWebsite/.idea.DouwcoWebsite.dir/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 9dae3d4..0000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
-
-
- ]
-}
\ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 5c391c0..2852af8 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,3 +1,5 @@
{
- "cmake.sourceDirectory": "/home/douwe/Nextcloud/Projects/douwco.be"
-}
\ No newline at end of file
+ "clangd.arguments": [
+ "--query-driver=/usr/bin/g++-15"
+ ]
+}
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..5e8f678
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,11 @@
+cmake_minimum_required(VERSION 3.10)
+project(douwco_website)
+
+# Set the C++ standard (e.g., C++17)
+set(CMAKE_CXX_STANDARD 17)
+set(CMAKE_CXX_STANDARD_REQUIRED ON)
+
+# Add your executable
+add_executable(server.out
+ server/main.cpp
+)
diff --git a/Dockerfile b/Dockerfile
index 3552c45..a67185d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,23 +1,18 @@
-FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base
-USER $APP_UID
-WORKDIR /app
-EXPOSE 8080
-EXPOSE 8081
+FROM debian:stable-slim
+
+RUN apt-get update && \
+ apt-get install -y \
+ g++ \
+ cmake \
+ libboost-all-dev
+
+WORKDIR /webserver
-FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
-ARG BUILD_CONFIGURATION=Release
-WORKDIR /src
-COPY ["DouwcoWebsite/DouwcoWebsite.csproj", "DouwcoWebsite/"]
-RUN dotnet restore "DouwcoWebsite/DouwcoWebsite.csproj"
COPY . .
-WORKDIR "/src/DouwcoWebsite"
-RUN dotnet build "./DouwcoWebsite.csproj" -c $BUILD_CONFIGURATION -o /app/build
-FROM build AS publish
-ARG BUILD_CONFIGURATION=Release
-RUN dotnet publish "./DouwcoWebsite.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
+RUN mkdir -p build && \
+ cd build && \
+ cmake .. && \
+ make
-FROM base AS final
-WORKDIR /app
-COPY --from=publish /app/publish .
-ENTRYPOINT ["dotnet", "DouwcoWebsite.dll"]
+ENTRYPOINT ["./build/server.out"]
diff --git a/DouwcoWebsite.csproj b/DouwcoWebsite.csproj
deleted file mode 100644
index e6a0424..0000000
--- a/DouwcoWebsite.csproj
+++ /dev/null
@@ -1,91 +0,0 @@
-
-
-
- net10.0
- enable
- enable
- Linux
-
-
-
-
- .dockerignore
-
-
-
-
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\LICENSE" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\dist\jquery.validate.unobtrusive.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\dist\jquery.validate.unobtrusive.min.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.min.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.min.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\LICENSE.md" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.min.js" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.min.map" />
- <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\LICENSE.txt" />
- <_ContentIncludedByDefault Remove="Pages\AboutMe.cshtml" />
- <_ContentIncludedByDefault Remove="Pages\DouwcoApps.cshtml" />
- <_ContentIncludedByDefault Remove="Pages\Error.cshtml" />
- <_ContentIncludedByDefault Remove="Pages\MyGames.cshtml" />
- <_ContentIncludedByDefault Remove="Pages\Shared\_Layout.cshtml" />
- <_ContentIncludedByDefault Remove="Pages\Shared\_ValidationScriptsPartial.cshtml" />
- <_ContentIncludedByDefault Remove="Pages\_ViewImports.cshtml" />
- <_ContentIncludedByDefault Remove="Pages\_ViewStart.cshtml" />
-
-
-
-
-
-
-
diff --git a/DouwcoWebsite.sln b/DouwcoWebsite.sln
deleted file mode 100644
index b9f7d55..0000000
--- a/DouwcoWebsite.sln
+++ /dev/null
@@ -1,21 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DouwcoWebsite", "DouwcoWebsite.csproj", "{CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{694925D6-4EC4-41C4-A53D-E2EB3B80A0F7}"
- ProjectSection(SolutionItems) = preProject
- compose.yaml = compose.yaml
- EndProjectSection
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
-EndGlobal
diff --git a/Program.cs b/Program.cs
deleted file mode 100644
index d986a05..0000000
--- a/Program.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-var builder = WebApplication.CreateBuilder(args);
-
-// Add services to the container.
-builder.Services.AddControllers(); // For API controllers
-
-var app = builder.Build();
-app.MapGet("/api/test", () => "test works!");
-
-// Configure the HTTP request pipeline.
-// No need for UseHttpsRedirection or UseHsts, as Nginx handles SSL.
-app.UseDefaultFiles(); // Enable default file serving
-app.UseStaticFiles(); // Serve static files from wwwroot
-app.UseRouting();
-app.UseAuthorization();
-
-app.MapControllers(); // Map API controllers
-
-app.Run();
\ No newline at end of file
diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json
deleted file mode 100644
index 47212ce..0000000
--- a/Properties/launchSettings.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "$schema": "https://json.schemastore.org/launchsettings.json",
- "profiles": {
- "http": {
- "commandName": "Project",
- "dotnetRunMessages": true,
- "launchBrowser": true,
- "applicationUrl": "http://localhost:8080",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- }
- }
- }
-}
diff --git a/appsettings.Development.json b/appsettings.Development.json
deleted file mode 100644
index 770d3e9..0000000
--- a/appsettings.Development.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "DetailedErrors": true,
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- }
-}
diff --git a/appsettings.json b/appsettings.json
deleted file mode 100644
index 10f68b8..0000000
--- a/appsettings.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- },
- "AllowedHosts": "*"
-}
diff --git a/bin/Debug/net10.0/DouwcoWebsite b/bin/Debug/net10.0/DouwcoWebsite
deleted file mode 100755
index 7849b67..0000000
Binary files a/bin/Debug/net10.0/DouwcoWebsite and /dev/null differ
diff --git a/bin/Debug/net10.0/DouwcoWebsite.deps.json b/bin/Debug/net10.0/DouwcoWebsite.deps.json
deleted file mode 100644
index 2cb0b95..0000000
--- a/bin/Debug/net10.0/DouwcoWebsite.deps.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v10.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v10.0": {
- "DouwcoWebsite/1.0.0": {
- "runtime": {
- "DouwcoWebsite.dll": {}
- }
- }
- }
- },
- "libraries": {
- "DouwcoWebsite/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/bin/Debug/net10.0/DouwcoWebsite.dll b/bin/Debug/net10.0/DouwcoWebsite.dll
deleted file mode 100644
index c17f476..0000000
Binary files a/bin/Debug/net10.0/DouwcoWebsite.dll and /dev/null differ
diff --git a/bin/Debug/net10.0/DouwcoWebsite.pdb b/bin/Debug/net10.0/DouwcoWebsite.pdb
deleted file mode 100644
index 72fdd5e..0000000
Binary files a/bin/Debug/net10.0/DouwcoWebsite.pdb and /dev/null differ
diff --git a/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json b/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
deleted file mode 100644
index ed5401a..0000000
--- a/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "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.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json b/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
deleted file mode 100644
index bbc1171..0000000
--- a/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"css/douwco.css","AssetFile":"css/douwco.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.css","AssetFile":"css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 22:17:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="}]},{"Route":"css/douwco.css.gz","AssetFile":"css/douwco.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"css/douwco.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 22:17:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"}]},{"Route":"css/douwco.hj6z4y4hul.css.gz","AssetFile":"css/douwco.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="},{"Name":"label","Value":"css/douwco.css.gz"}]},{"Route":"css/style.css","AssetFile":"css/style.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.css","AssetFile":"css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="}]},{"Route":"css/style.css.gz","AssetFile":"css/style.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"css/style.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"}]},{"Route":"css/style.zht5oisgp4.css.gz","AssetFile":"css/style.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="},{"Name":"label","Value":"css/style.css.gz"}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 22:33:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.ad5rsjjdyd.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 22:33:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="}]},{"Route":"fonts/Montserrat-Bold.0f68wwysiu.ttf","AssetFile":"fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0f68wwysiu"},{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="},{"Name":"label","Value":"fonts/Montserrat-Bold.ttf"}]},{"Route":"fonts/Montserrat-Bold.ttf","AssetFile":"fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="}]},{"Route":"fonts/Montserrat-Regular.ttf","AssetFile":"fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="}]},{"Route":"fonts/Montserrat-Regular.x1juw6fwdo.ttf","AssetFile":"fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x1juw6fwdo"},{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="},{"Name":"label","Value":"fonts/Montserrat-Regular.ttf"}]},{"Route":"fonts/Righteous-Regular.ttf","AssetFile":"fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="}]},{"Route":"fonts/Righteous-Regular.vov7vgyq3c.ttf","AssetFile":"fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vov7vgyq3c"},{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="},{"Name":"label","Value":"fonts/Righteous-Regular.ttf"}]},{"Route":"img/alcove.l353dch9cq.png","AssetFile":"img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l353dch9cq"},{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="},{"Name":"label","Value":"img/alcove.png"}]},{"Route":"img/alcove.png","AssetFile":"img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="}]},{"Route":"img/douwco_logo.1uvsuil67c.png","AssetFile":"img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1uvsuil67c"},{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="},{"Name":"label","Value":"img/douwco_logo.png"}]},{"Route":"img/douwco_logo.png","AssetFile":"img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="}]},{"Route":"img/godot_addons.51o0o1kej0.png","AssetFile":"img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"51o0o1kej0"},{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="},{"Name":"label","Value":"img/godot_addons.png"}]},{"Route":"img/godot_addons.png","AssetFile":"img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="}]},{"Route":"img/icons/devicegamepad2.oag7kgbssd.png","AssetFile":"img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:49:54 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oag7kgbssd"},{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="},{"Name":"label","Value":"img/icons/devicegamepad2.png"}]},{"Route":"img/icons/devicegamepad2.png","AssetFile":"img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:49:54 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="}]},{"Route":"img/icons/europe.emyxcyr7lm.png","AssetFile":"img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:15:44 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"emyxcyr7lm"},{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="},{"Name":"label","Value":"img/icons/europe.png"}]},{"Route":"img/icons/europe.png","AssetFile":"img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:15:44 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="}]},{"Route":"img/icons/projects_icon.7ny7t6og73.png","AssetFile":"img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ny7t6og73"},{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="},{"Name":"label","Value":"img/icons/projects_icon.png"}]},{"Route":"img/icons/projects_icon.png","AssetFile":"img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="}]},{"Route":"img/icons/user.png","AssetFile":"img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="}]},{"Route":"img/icons/user.sd1j8sitba.png","AssetFile":"img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sd1j8sitba"},{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="},{"Name":"label","Value":"img/icons/user.png"}]},{"Route":"img/kingfisher.182d7hto9d.png","AssetFile":"img/kingfisher.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"302695"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"182d7hto9d"},{"Name":"integrity","Value":"sha256-f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ="},{"Name":"label","Value":"img/kingfisher.png"}]},{"Route":"img/kingfisher.png","AssetFile":"img/kingfisher.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"302695"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ="}]},{"Route":"img/ludum_dare.5hazvwq61r.png","AssetFile":"img/ludum_dare.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4925"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5hazvwq61r"},{"Name":"integrity","Value":"sha256-yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4="},{"Name":"label","Value":"img/ludum_dare.png"}]},{"Route":"img/ludum_dare.png","AssetFile":"img/ludum_dare.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"4925"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4="}]},{"Route":"img/me_img.bosvnkg9xk.png","AssetFile":"img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 01:38:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bosvnkg9xk"},{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="},{"Name":"label","Value":"img/me_img.png"}]},{"Route":"img/me_img.png","AssetFile":"img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 01:38:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="}]},{"Route":"img/rollability.98ow7jrzxd.png","AssetFile":"img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"98ow7jrzxd"},{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="},{"Name":"label","Value":"img/rollability.png"}]},{"Route":"img/rollability.png","AssetFile":"img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="}]},{"Route":"img/server_image.aekh8pde6e.png","AssetFile":"img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:08:50 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aekh8pde6e"},{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="},{"Name":"label","Value":"img/server_image.png"}]},{"Route":"img/server_image.png","AssetFile":"img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:08:50 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="}]},{"Route":"img/thesis_tool.hxh8m8nqqk.png","AssetFile":"img/thesis_tool.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14987"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hxh8m8nqqk"},{"Name":"integrity","Value":"sha256-xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg="},{"Name":"label","Value":"img/thesis_tool.png"}]},{"Route":"img/thesis_tool.png","AssetFile":"img/thesis_tool.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"14987"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg="}]},{"Route":"img/wizard_gloves.8lugtobkr9.png","AssetFile":"img/wizard_gloves.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"126262"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8lugtobkr9"},{"Name":"integrity","Value":"sha256-JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk="},{"Name":"label","Value":"img/wizard_gloves.png"}]},{"Route":"img/wizard_gloves.png","AssetFile":"img/wizard_gloves.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"126262"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk="}]},{"Route":"includes/about_me.6uj78r15jt.html","AssetFile":"includes/about_me.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433087917"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uj78r15jt"},{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="},{"Name":"label","Value":"includes/about_me.html"},{"Name":"original-resource","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""}]},{"Route":"includes/about_me.6uj78r15jt.html","AssetFile":"includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6648"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uj78r15jt"},{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="},{"Name":"label","Value":"includes/about_me.html"}]},{"Route":"includes/about_me.6uj78r15jt.html.gz","AssetFile":"includes/about_me.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uj78r15jt"},{"Name":"integrity","Value":"sha256-7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo="},{"Name":"label","Value":"includes/about_me.html.gz"}]},{"Route":"includes/about_me.html","AssetFile":"includes/about_me.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433087917"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="},{"Name":"original-resource","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""}]},{"Route":"includes/about_me.html","AssetFile":"includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6648"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="}]},{"Route":"includes/about_me.html.gz","AssetFile":"includes/about_me.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo="}]},{"Route":"includes/apps.html","AssetFile":"includes/apps.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.html","AssetFile":"includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="}]},{"Route":"includes/apps.html.gz","AssetFile":"includes/apps.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"includes/apps.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"}]},{"Route":"includes/apps.lzakhpjgbx.html.gz","AssetFile":"includes/apps.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="},{"Name":"label","Value":"includes/apps.html.gz"}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"includes/games.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"}]},{"Route":"includes/games.4rnn98hyqz.html.gz","AssetFile":"includes/games.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="},{"Name":"label","Value":"includes/games.html.gz"}]},{"Route":"includes/games.html","AssetFile":"includes/games.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.html","AssetFile":"includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="}]},{"Route":"includes/games.html.gz","AssetFile":"includes/games.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"includes/home.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"}]},{"Route":"includes/home.1tkatawvq4.html.gz","AssetFile":"includes/home.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="},{"Name":"label","Value":"includes/home.html.gz"}]},{"Route":"includes/home.html","AssetFile":"includes/home.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.html","AssetFile":"includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="}]},{"Route":"includes/home.html.gz","AssetFile":"includes/home.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="}]},{"Route":"index.ew1mknl83p.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.ew1mknl83p.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"}]},{"Route":"index.ew1mknl83p.html.gz","AssetFile":"index.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="},{"Name":"label","Value":"index.html.gz"}]},{"Route":"index.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="}]},{"Route":"index.html.gz","AssetFile":"index.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"js/index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 23:59:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"}]},{"Route":"js/index.ga1fkhapv2.js.gz","AssetFile":"js/index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="},{"Name":"label","Value":"js/index.js.gz"}]},{"Route":"js/index.js","AssetFile":"js/index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.js","AssetFile":"js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 23:59:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="}]},{"Route":"js/index.js.gz","AssetFile":"js/index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"js/main.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:00:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"}]},{"Route":"js/main.gapopd6iwt.js.gz","AssetFile":"js/main.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="},{"Name":"label","Value":"js/main.js.gz"}]},{"Route":"js/main.js","AssetFile":"js/main.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.js","AssetFile":"js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:00:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="}]},{"Route":"js/main.js.gz","AssetFile":"js/main.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="}]},{"Route":"vid/procedural_streets.7zwzofruh3.mp4","AssetFile":"vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7zwzofruh3"},{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="},{"Name":"label","Value":"vid/procedural_streets.mp4"}]},{"Route":"vid/procedural_streets.mp4","AssetFile":"vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="}]},{"Route":"vid/wizard_gloves.mp4","AssetFile":"vid/wizard_gloves.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"51408017"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4="}]},{"Route":"vid/wizard_gloves.ufmgdj2wiv.mp4","AssetFile":"vid/wizard_gloves.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51408017"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ufmgdj2wiv"},{"Name":"integrity","Value":"sha256-mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4="},{"Name":"label","Value":"vid/wizard_gloves.mp4"}]}]}
\ No newline at end of file
diff --git a/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json b/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
deleted file mode 100644
index c404d2b..0000000
--- a/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"index.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz"},"Patterns":null},"css":{"Children":{"douwco.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/douwco.css"},"Patterns":null},"douwco.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz"},"Patterns":null},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/style.css"},"Patterns":null},"style.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"Montserrat-Bold.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Bold.ttf"},"Patterns":null},"Montserrat-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Regular.ttf"},"Patterns":null},"Righteous-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Righteous-Regular.ttf"},"Patterns":null}},"Asset":null,"Patterns":null},"img":{"Children":{"alcove.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/alcove.png"},"Patterns":null},"douwco_logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.png"},"Patterns":null},"godot_addons.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/godot_addons.png"},"Patterns":null},"kingfisher.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/kingfisher.png"},"Patterns":null},"ludum_dare.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/ludum_dare.png"},"Patterns":null},"me_img.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/me_img.png"},"Patterns":null},"rollability.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/rollability.png"},"Patterns":null},"server_image.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/server_image.png"},"Patterns":null},"thesis_tool.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/thesis_tool.png"},"Patterns":null},"wizard_gloves.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/wizard_gloves.png"},"Patterns":null},"icons":{"Children":{"devicegamepad2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/devicegamepad2.png"},"Patterns":null},"europe.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/europe.png"},"Patterns":null},"projects_icon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/projects_icon.png"},"Patterns":null},"user.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/user.png"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"includes":{"Children":{"about_me.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/about_me.html"},"Patterns":null},"about_me.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz"},"Patterns":null},"apps.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/apps.html"},"Patterns":null},"apps.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz"},"Patterns":null},"games.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/games.html"},"Patterns":null},"games.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz"},"Patterns":null},"home.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/home.html"},"Patterns":null},"home.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"index.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/index.js"},"Patterns":null},"index.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz"},"Patterns":null},"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null},"main.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"vid":{"Children":{"procedural_streets.mp4":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"vid/procedural_streets.mp4"},"Patterns":null},"wizard_gloves.mp4":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"vid/wizard_gloves.mp4"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/bin/Debug/net10.0/appsettings.Development.json b/bin/Debug/net10.0/appsettings.Development.json
deleted file mode 100644
index 770d3e9..0000000
--- a/bin/Debug/net10.0/appsettings.Development.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "DetailedErrors": true,
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- }
-}
diff --git a/bin/Debug/net10.0/appsettings.json b/bin/Debug/net10.0/appsettings.json
deleted file mode 100644
index 10f68b8..0000000
--- a/bin/Debug/net10.0/appsettings.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- },
- "AllowedHosts": "*"
-}
diff --git a/build/server.out b/build/server.out
deleted file mode 100755
index 40c58e7..0000000
Binary files a/build/server.out and /dev/null differ
diff --git a/compile_commands.json b/compile_commands.json
new file mode 100644
index 0000000..5e85c56
--- /dev/null
+++ b/compile_commands.json
@@ -0,0 +1,7 @@
+[
+ {
+ "directory": "/home/douwe/Projects/douwco_website/server",
+ "command": "/usr/bin/g++-15 -I/usr/include/c++/15 -I/usr/include/x86_64-linux-gnu/c++/15 -I/usr/include/c++/15/backward -I/usr/lib/gcc/x86_64-linux-gnu/15/include -I/usr/local/include -I/usr/include/x86_64-linux-gnu -I/usr/include -c main.cpp -o main.o",
+ "file": "/home/douwe/Projects/douwco_website/server/main.cpp"
+ }
+]
\ No newline at end of file
diff --git a/compose.yaml b/compose.yaml
index dfaff9d..54bcccb 100644
--- a/compose.yaml
+++ b/compose.yaml
@@ -3,7 +3,7 @@
image: douwcowebsite
build:
context: .
- dockerfile: DouwcoWebsite/Dockerfile
+ dockerfile: ./Dockerfile
ports:
- 8080:8080
diff --git a/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs
deleted file mode 100644
index 925b135..0000000
--- a/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
diff --git a/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs b/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
deleted file mode 100644
index 71aa780..0000000
--- a/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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("DouwcoWebsite")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cb5db8df2e4a17a2d67a0923b8a24ade8aaba108")]
-[assembly: System.Reflection.AssemblyProductAttribute("DouwcoWebsite")]
-[assembly: System.Reflection.AssemblyTitleAttribute("DouwcoWebsite")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache b/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
deleted file mode 100644
index 6f268ec..0000000
--- a/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-8636e56ec2693babc0974a93f5bb1f6d4e6727ebe6b32f6bdeac4193d1707575
diff --git a/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 02b3499..0000000
--- a/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,23 +0,0 @@
-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._SupportedPlatformList = Linux,macOS,Windows
-build_property.RootNamespace = DouwcoWebsite
-build_property.RootNamespace = DouwcoWebsite
-build_property.ProjectDir = /mnt/douwe/hdd/Projects/douwco_website/
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
-build_property.RazorLangVersion = 9.0
-build_property.SupportLocalizedComponentNames =
-build_property.GenerateRazorMetadataSourceChecksumAttributes =
-build_property.MSBuildProjectDirectory = /mnt/douwe/hdd/Projects/douwco_website
-build_property._RazorSourceGeneratorDebug =
-build_property.EffectiveAnalysisLevelStyle = 10.0
-build_property.EnableCodeStyleSeverity =
diff --git a/obj/Debug/net10.0/DouwcoWebsite.GlobalUsings.g.cs b/obj/Debug/net10.0/DouwcoWebsite.GlobalUsings.g.cs
deleted file mode 100644
index 5e6145d..0000000
--- a/obj/Debug/net10.0/DouwcoWebsite.GlobalUsings.g.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-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 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/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache b/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/obj/Debug/net10.0/DouwcoWebsite.assets.cache b/obj/Debug/net10.0/DouwcoWebsite.assets.cache
deleted file mode 100644
index e1d7501..0000000
Binary files a/obj/Debug/net10.0/DouwcoWebsite.assets.cache and /dev/null differ
diff --git a/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 0dcffdd..0000000
--- a/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-afdbb76545ce5c826375ab45a2e6b150b47df5e59cd85ff72987c071de4581e9
diff --git a/obj/Debug/net10.0/DouwcoWebsite.csproj.FileListAbsolute.txt b/obj/Debug/net10.0/DouwcoWebsite.csproj.FileListAbsolute.txt
deleted file mode 100644
index 6ef1b3a..0000000
--- a/obj/Debug/net10.0/DouwcoWebsite.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,39 +0,0 @@
-/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/appsettings.Development.json
-/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/appsettings.json
-/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
-/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
-/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite
-/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.deps.json
-/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
-/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.dll
-/mnt/douwe/hdd/Projects/douwco_website/bin/Debug/net10.0/DouwcoWebsite.pdb
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/rpswa.dswa.cache.json
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/rjimswa.dswa.cache.json
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/scopedcss/bundle/DouwcoWebsite.styles.css
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/staticwebassets.build.json
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/staticwebassets.build.json.cache
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/staticwebassets.development.json
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/staticwebassets.build.endpoints.json
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/swae.build.ex.cache
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.dll
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/refint/DouwcoWebsite.dll
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.pdb
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
-/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/ref/DouwcoWebsite.dll
diff --git a/obj/Debug/net10.0/DouwcoWebsite.dll b/obj/Debug/net10.0/DouwcoWebsite.dll
deleted file mode 100644
index c17f476..0000000
Binary files a/obj/Debug/net10.0/DouwcoWebsite.dll and /dev/null differ
diff --git a/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache b/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
deleted file mode 100644
index c9d25a2..0000000
--- a/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-bebd2df5658b93fd3323ef099185ee21d8b0afa83a4c30b639d3ef440f0ee6a9
diff --git a/obj/Debug/net10.0/DouwcoWebsite.pdb b/obj/Debug/net10.0/DouwcoWebsite.pdb
deleted file mode 100644
index 72fdd5e..0000000
Binary files a/obj/Debug/net10.0/DouwcoWebsite.pdb and /dev/null differ
diff --git a/obj/Debug/net10.0/apphost b/obj/Debug/net10.0/apphost
deleted file mode 100755
index 7849b67..0000000
Binary files a/obj/Debug/net10.0/apphost and /dev/null differ
diff --git a/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz b/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz
deleted file mode 100644
index 16d1369..0000000
Binary files a/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz and /dev/null differ
diff --git a/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz b/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz
deleted file mode 100644
index bb4b639..0000000
Binary files a/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz and /dev/null differ
diff --git a/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz b/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz
deleted file mode 100644
index a0e1708..0000000
Binary files a/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz and /dev/null differ
diff --git a/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz b/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz
deleted file mode 100644
index 2e97f42..0000000
Binary files a/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz and /dev/null differ
diff --git a/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz b/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz
deleted file mode 100644
index dc1731e..0000000
Binary files a/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz and /dev/null differ
diff --git a/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz b/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz
deleted file mode 100644
index 4541d7c..0000000
Binary files a/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz and /dev/null differ
diff --git a/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz b/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz
deleted file mode 100644
index c6433df..0000000
Binary files a/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz and /dev/null differ
diff --git a/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz b/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz
deleted file mode 100644
index 9534aba..0000000
Binary files a/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz and /dev/null differ
diff --git a/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz b/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz
deleted file mode 100644
index 8260d02..0000000
Binary files a/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz and /dev/null differ
diff --git a/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz b/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz
deleted file mode 100644
index 0ff0ff3..0000000
Binary files a/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz and /dev/null differ
diff --git a/obj/Debug/net10.0/rbcswa.dswa.cache.json b/obj/Debug/net10.0/rbcswa.dswa.cache.json
deleted file mode 100644
index 908b216..0000000
--- a/obj/Debug/net10.0/rbcswa.dswa.cache.json
+++ /dev/null
@@ -1 +0,0 @@
-{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["C246cgOlkgtsASX31ZxDpBf7q49s0k\u002BNyeWwAUoahTI=","Q2CDfm9atkW1oRz4R2t4FHwcMjhR1ph6NeC9mCxkB7M=","m9nxD9TUFBWNPnoRe5MCEOGO5UsqBZMwIw7OhIWELOc=","Y6z9OKZ1dJ2NiR4QCo7SWdMkESJoNu9KQPlxWLFQlVc=","HTktSRHDngiTRU3PhILI6qBpkiBCNwR75bo\u002Bdoo4TJs=","Lxu\u002BU8w0ivVC3t9uEX6nXX4bk5gXXVC/bYeM2KarHQU=","GNgC0iK1\u002BcHn7KU7XcRd6x8MTPJaZKvWoafjcR5rh60=","joXzzReFnWDEXSggAfF3ghVBX4A/XcztpLxXKgkMyyM=","qF5GtVtvsv05IbY8grd6uGH9hVP6CwixjgRdZd3S2P4=","sK2TFeNsEDAx\u002BDEbxk\u002BJ68OwS6cDy5BnnDcUjX\u002Bm/3o="],"CachedAssets":{"C246cgOlkgtsASX31ZxDpBf7q49s0k\u002BNyeWwAUoahTI=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"css/douwco#[.{fingerprint=hj6z4y4hul}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/douwco.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mawhswpgfr","Integrity":"vmnGZZfnN69bKJVreZrEMGzf9\u002BxOich0puFhBlgjx/w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/douwco.css","FileLength":281,"LastWriteTime":"2026-03-18T00:31:28.8026181+00:00"},"Q2CDfm9atkW1oRz4R2t4FHwcMjhR1ph6NeC9mCxkB7M=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"css/style#[.{fingerprint=zht5oisgp4}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/style.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"34cb359oqg","Integrity":"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/style.css","FileLength":1033,"LastWriteTime":"2026-03-18T00:31:28.8026181+00:00"},"m9nxD9TUFBWNPnoRe5MCEOGO5UsqBZMwIw7OhIWELOc=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"favicon#[.{fingerprint=ad5rsjjdyd}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"62ils0f8i2","Integrity":"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/favicon.ico","FileLength":7695,"LastWriteTime":"2026-03-18T00:31:28.8026181+00:00"},"Y6z9OKZ1dJ2NiR4QCo7SWdMkESJoNu9KQPlxWLFQlVc=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/about_me#[.{fingerprint=6uj78r15jt}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/about_me.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"byg1ikev95","Integrity":"7TED3KLidu21ap1ZjyrcYqG97EZwz\u002B2RvlTvhOYL5Oo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/about_me.html","FileLength":2308,"LastWriteTime":"2026-03-18T00:31:28.8026181+00:00"},"HTktSRHDngiTRU3PhILI6qBpkiBCNwR75bo\u002Bdoo4TJs=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/apps#[.{fingerprint=lzakhpjgbx}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/apps.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hr48aknd23","Integrity":"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/apps.html","FileLength":103,"LastWriteTime":"2026-03-18T00:31:28.8026181+00:00"},"Lxu\u002BU8w0ivVC3t9uEX6nXX4bk5gXXVC/bYeM2KarHQU=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/games#[.{fingerprint=4rnn98hyqz}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/games.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e935t8w10j","Integrity":"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/games.html","FileLength":100,"LastWriteTime":"2026-03-18T00:31:28.8026181+00:00"},"GNgC0iK1\u002BcHn7KU7XcRd6x8MTPJaZKvWoafjcR5rh60=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/home#[.{fingerprint=1tkatawvq4}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/home.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j2hs9dheop","Integrity":"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/home.html","FileLength":553,"LastWriteTime":"2026-03-18T00:31:28.8026181+00:00"},"joXzzReFnWDEXSggAfF3ghVBX4A/XcztpLxXKgkMyyM=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"index#[.{fingerprint=ew1mknl83p}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/index.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3xvpvanmv5","Integrity":"10Ru5\u002B15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/index.html","FileLength":596,"LastWriteTime":"2026-03-18T00:31:28.8026181+00:00"},"qF5GtVtvsv05IbY8grd6uGH9hVP6CwixjgRdZd3S2P4=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"js/index#[.{fingerprint=ga1fkhapv2}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/index.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ursli8r5s7","Integrity":"Fhk4WIP\u002BSxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/index.js","FileLength":597,"LastWriteTime":"2026-03-18T00:31:28.8026181+00:00"},"sK2TFeNsEDAx\u002BDEbxk\u002BJ68OwS6cDy5BnnDcUjX\u002Bm/3o=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"js/main#[.{fingerprint=gapopd6iwt}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/main.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"eoqnh43yw3","Integrity":"MihTryr289Oy29v2leLCPpDzNGmjii\u002BJZz7EtTc8L\u002BE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/main.js","FileLength":499,"LastWriteTime":"2026-03-18T00:31:28.8026181+00:00"}},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/ref/DouwcoWebsite.dll b/obj/Debug/net10.0/ref/DouwcoWebsite.dll
deleted file mode 100644
index c33fa1f..0000000
Binary files a/obj/Debug/net10.0/ref/DouwcoWebsite.dll and /dev/null differ
diff --git a/obj/Debug/net10.0/refint/DouwcoWebsite.dll b/obj/Debug/net10.0/refint/DouwcoWebsite.dll
deleted file mode 100644
index c33fa1f..0000000
Binary files a/obj/Debug/net10.0/refint/DouwcoWebsite.dll and /dev/null differ
diff --git a/obj/Debug/net10.0/rjimswa.dswa.cache.json b/obj/Debug/net10.0/rjimswa.dswa.cache.json
deleted file mode 100644
index 47201e5..0000000
--- a/obj/Debug/net10.0/rjimswa.dswa.cache.json
+++ /dev/null
@@ -1 +0,0 @@
-{"GlobalPropertiesHash":"vYuNcIjVKzyGW75+DqTgUAgYEp5dCBwjSmrFeRU5PjE=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["peyR/vQS5KEGWxwWBs/\u002BNLLLJYEgBiFFi1Q7\u002BCcZE/8=","q0FQBO2wlMvOGhESvBixiZ5dxHvMJ7ChxaAux1H0UTg=","mOtHTiZaCq4tBPSCBsUavaayKFSpxvt4cyOayfya\u002BYQ=","QDnJ0NuvFOIS8BpKBlHQC\u002BZZnypKxhHuI/xhX05LR6o=","3Q7ZHPM7Ufak9/CXQGsNiyJOrL9yAWSx08796t1\u002B1No=","Y\u002BlHy0V7N\u002BAZxmtlgHjckKq1VYaxoM6xdfiGDoUzTXY=","eZB5wt1ZXpewiyLydaCndbw1KHs0gc5Vxrf7hw1kHbs=","KPvj0A2gYUU1aNtbJqRkfkkf5InsxGD\u002BGt4uUrg0E5c=","KVUf1O36fFpc/zG2g/aLnlsiuuDl/kD/r6EMSem4UZw=","oSK963UD0dYSoVcd7cwLCnikNvCNjxgkXnjwBAzyH\u002Bc=","p/8SsXdvggrLTI0gRrOZhPP/pZumAdBmSFkgy1FLqs8=","Se4ubfLE74K\u002B04pssRuadtxHORVIJnXh9gsxqBEkipY=","A/\u002BUvymzGFfCVDEzp57yGctpZ9AsGpcnzXh82EWkTBo=","JYrCrSY/3C/tmOLAfuWDTrNOpe7i60aYwzuLMiTHyRU=","f31uUmowtC2DKb7I0LFHX7MwzTqIP5ZNwXMbNbhuChc=","LyArjzuOcWSotwSA8aRPSS4lesZtR3x8U60xXshd4so=","OwX39kl1N6ZafiDm\u002BfGEffpVdlKRnD1rO\u002BK0ru9B3Kw=","NZAFZppn/Wqs7LSHUzs8evZYquqmYIVM4bvKZmSYf8I=","1Ss6UKiybGbsxDJbP0n4P0T3EXJ\u002BlKsEktrumiVBEWI=","hisXEDZJKnm8j1lYnIGUEP1nqOAQICvUyeecicojqfw=","7bs1UN3d4FF3eag6JwMo3nL8zK2A9DqyxK/1SlPRe/8=","NY3UUWp2G9nX2aSQmqEsh0B07i3ejLcCkpEyf35TSRY=","9/PS114sw/i94olkveCK\u002Bdwz1QT05jrAX08TO8dCUHQ=","RU2g9utvqD8mWaxgByW9rVQupjeRb57fBuW61777M1c=","EcderlbwgvbqAH/Jo4V2xrDkUK03BHglRnlNKF84Hac=","\u002Bp8cMm4ngQmX//vfT62TQAg1WjsMjXInDDCqF5\u002B3/\u002Bs=","iAhoxkrLujbBXPII9K1D0HEALlzwei7LZApmMXSWHVQ=","OnbAv/bmzQHx\u002BCVaTuzYOhw9dt85snUrhOyWV5leFn0=","JGwA6T1Wt6rcBdAne4Aholwx0ndUZIC4aKi2Aw3kEEg="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
deleted file mode 100644
index 9681f9a..0000000
--- a/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
+++ /dev/null
@@ -1 +0,0 @@
-{"GlobalPropertiesHash":"SfjcW13XDPedjwok2WPg9U9hJ1zPlz7xagJP9/9tU+E=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["7VtgCJQTB\u002BE0\u002BEcVgq8hcfOX4mO7g5nypF6w9ykGKjU=","V8nyZFpRhKTuGh8X2zTK8bLmYtwXbTdsxlAfA8aUBNc=","K\u002Bi5dVnnbOzqlKwtDWubIz8vMIiunL2un0gtfGvKbdA=","W6/XdpG30kdc9MuCbTwQylecqz\u002BkBpBTVUzzSdFSPS0=","GbtX1LfE1XfOqTgcDyl40cLVRI8XsgYL83tVProjiak=","L0Os2NU5bYrxGf2UijR32Uy2maNPXosTppRnVyRT4t4=","3bJjj5VWMT2Lz1gtmUfcZ\u002BsX805EilEFdH59rIeIPyQ=","gQr9siG47uMeZWNAti2uU4x6eKyEJSEB1CMiV72ZHC0=","Dhf8kPWXHtEmRvibXMHswfLD\u002B3o1fSXYk1SiyOVui4k=","sEw7rLBAZvLvWoUcgoJljrzwWgQWkEVBtKj2voufx6o=","cHyC9ho5Z\u002BADHh1QUHXr29HoED0FNhsmAhYDSx7Gp/c=","zOrLYxIwE0c6zAIcPVSSUX0fJkQBRW8QaWxG0LBOMFU=","RuzCbsAkcoxcrhCKi9PXSOCHyC/GK8OpYT2HkHPlBYM=","ci1T4rxWNkrU4ASrMsI1bMWwH\u002Bh8RhTlUGEBycV5DYI=","jhsl76xf\u002BoWq\u002B//hDz3nmEkazLui/yVq8u3k958fjsU=","/ZogTRSpViRTS9zC7eF0cM5/mtd6tAHnoq0ETnR9V4o=","Qf6IwVXlecBfH6b7gOH56e1gDd8rWP5FphzYuJKZSsc=","HsymA4WtHbRh1vfUCZFeHQ3XGOxm2Zeh5j4c/96YJhU=","kVPiuaP\u002B3m8V8SOPtUw2Rcb3simUnlFOhgUekWGEyN4=","/l5YGJFatGz3p7TIi2T4LKRDhITSYToDO0utQgPC7Mc=","BAjwNuss0RbgWmSWRWu\u002B5rPQBx0o7A0l19QIkKJefc4=","AeCHXJPn7iM0rYRIbQqSySlKp4QdzIUjH\u002BFAL9TflZw=","8kmRphf8409tYqRx8iENUiku/j2u5josQ9hZITcQ3GQ=","wEwtU8oELWsaIzpF5grHfe7AU4J9QIVRuxKrktFXXbw=","pEqyByX9KaO2fI12C\u002B9FG/GC0Q9ktqWDKZJTkiB54VU=","Jghq4kSnpdUaf1oNmaTlFs28uGtd/7t9PpY5pFexuQo=","I0HjlUwsODusS\u002BYQTe8b6f6L7zehAZs3PqyIL6FWAPQ=","loBSiOJlIF/nHFiPyuFjoSwTw3MSLZseOtOy97oenK4=","unl7CiT37VHQK\u002Bh7mn\u002BoRp4\u002BgsIt9A4Lz\u002B46U0c9iws=","ia2HLf/1yQw4ZvgX7kYXPsJRI73ER2\u002BhgZALIuErV3M=","L9TxQUJWd\u002BqAAX35epuyFvWGAq3zS4Wf2bmtXJdIHzU=","wX53F4F/PdAaNXtULmZ\u002BcyKn\u002BNz6tjFzV3kpMQieRH4=","UJvkKFaWGffOaJOPAfWRIpy07f7hbT\u002BIW\u002Be8ECsqG5Y=","OrIg/0yNFecJ6K/oENxbqCLnmcVTfyfQnV\u002BxgJwxkNE=","HlrcshtAzEL91hgw8\u002BXnGRafzfdixOuqWKtArZ8H53o=","XmtIdTc1hp7PQDoitOdirg9fRxi0NerJti0y4Tbd270=","FBnndED0x2QEgmVhYQZUAs3YLYKK8o32iK7Wg8xVWb4=","fSkB3P1ymetdcnYpzF9/I2P2eLcET\u002BVI3uKrWuuki9g="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
deleted file mode 100644
index dd527c6..0000000
--- a/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
+++ /dev/null
@@ -1 +0,0 @@
-{"GlobalPropertiesHash":"ls1NZ5f6X7fMsuOgnRY2nYVMMl3qs1ERzOXp70nBMio=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["7VtgCJQTB\u002BE0\u002BEcVgq8hcfOX4mO7g5nypF6w9ykGKjU=","V8nyZFpRhKTuGh8X2zTK8bLmYtwXbTdsxlAfA8aUBNc=","K\u002Bi5dVnnbOzqlKwtDWubIz8vMIiunL2un0gtfGvKbdA=","W6/XdpG30kdc9MuCbTwQylecqz\u002BkBpBTVUzzSdFSPS0=","GbtX1LfE1XfOqTgcDyl40cLVRI8XsgYL83tVProjiak=","L0Os2NU5bYrxGf2UijR32Uy2maNPXosTppRnVyRT4t4=","3bJjj5VWMT2Lz1gtmUfcZ\u002BsX805EilEFdH59rIeIPyQ=","gQr9siG47uMeZWNAti2uU4x6eKyEJSEB1CMiV72ZHC0=","Dhf8kPWXHtEmRvibXMHswfLD\u002B3o1fSXYk1SiyOVui4k=","sEw7rLBAZvLvWoUcgoJljrzwWgQWkEVBtKj2voufx6o=","cHyC9ho5Z\u002BADHh1QUHXr29HoED0FNhsmAhYDSx7Gp/c=","zOrLYxIwE0c6zAIcPVSSUX0fJkQBRW8QaWxG0LBOMFU=","RuzCbsAkcoxcrhCKi9PXSOCHyC/GK8OpYT2HkHPlBYM=","ci1T4rxWNkrU4ASrMsI1bMWwH\u002Bh8RhTlUGEBycV5DYI=","jhsl76xf\u002BoWq\u002B//hDz3nmEkazLui/yVq8u3k958fjsU=","/ZogTRSpViRTS9zC7eF0cM5/mtd6tAHnoq0ETnR9V4o=","Qf6IwVXlecBfH6b7gOH56e1gDd8rWP5FphzYuJKZSsc=","HsymA4WtHbRh1vfUCZFeHQ3XGOxm2Zeh5j4c/96YJhU=","kVPiuaP\u002B3m8V8SOPtUw2Rcb3simUnlFOhgUekWGEyN4=","/l5YGJFatGz3p7TIi2T4LKRDhITSYToDO0utQgPC7Mc=","BAjwNuss0RbgWmSWRWu\u002B5rPQBx0o7A0l19QIkKJefc4=","AeCHXJPn7iM0rYRIbQqSySlKp4QdzIUjH\u002BFAL9TflZw=","8kmRphf8409tYqRx8iENUiku/j2u5josQ9hZITcQ3GQ=","wEwtU8oELWsaIzpF5grHfe7AU4J9QIVRuxKrktFXXbw=","pEqyByX9KaO2fI12C\u002B9FG/GC0Q9ktqWDKZJTkiB54VU=","Jghq4kSnpdUaf1oNmaTlFs28uGtd/7t9PpY5pFexuQo=","I0HjlUwsODusS\u002BYQTe8b6f6L7zehAZs3PqyIL6FWAPQ=","loBSiOJlIF/nHFiPyuFjoSwTw3MSLZseOtOy97oenK4=","unl7CiT37VHQK\u002Bh7mn\u002BoRp4\u002BgsIt9A4Lz\u002B46U0c9iws=","ia2HLf/1yQw4ZvgX7kYXPsJRI73ER2\u002BhgZALIuErV3M=","L9TxQUJWd\u002BqAAX35epuyFvWGAq3zS4Wf2bmtXJdIHzU=","wX53F4F/PdAaNXtULmZ\u002BcyKn\u002BNz6tjFzV3kpMQieRH4=","UJvkKFaWGffOaJOPAfWRIpy07f7hbT\u002BIW\u002Be8ECsqG5Y=","OrIg/0yNFecJ6K/oENxbqCLnmcVTfyfQnV\u002BxgJwxkNE=","HlrcshtAzEL91hgw8\u002BXnGRafzfdixOuqWKtArZ8H53o=","XmtIdTc1hp7PQDoitOdirg9fRxi0NerJti0y4Tbd270=","FBnndED0x2QEgmVhYQZUAs3YLYKK8o32iK7Wg8xVWb4=","fSkB3P1ymetdcnYpzF9/I2P2eLcET\u002BVI3uKrWuuki9g="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/rpswa.dswa.cache.json b/obj/Debug/net10.0/rpswa.dswa.cache.json
deleted file mode 100644
index 52358bf..0000000
--- a/obj/Debug/net10.0/rpswa.dswa.cache.json
+++ /dev/null
@@ -1 +0,0 @@
-{"GlobalPropertiesHash":"6I92Lb67P+URRaV4bmvQANTuJgV1r6+S53Omyd8YNZc=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["7VtgCJQTB\u002BE0\u002BEcVgq8hcfOX4mO7g5nypF6w9ykGKjU=","V8nyZFpRhKTuGh8X2zTK8bLmYtwXbTdsxlAfA8aUBNc=","K\u002Bi5dVnnbOzqlKwtDWubIz8vMIiunL2un0gtfGvKbdA=","W6/XdpG30kdc9MuCbTwQylecqz\u002BkBpBTVUzzSdFSPS0=","GbtX1LfE1XfOqTgcDyl40cLVRI8XsgYL83tVProjiak=","L0Os2NU5bYrxGf2UijR32Uy2maNPXosTppRnVyRT4t4=","3bJjj5VWMT2Lz1gtmUfcZ\u002BsX805EilEFdH59rIeIPyQ=","gQr9siG47uMeZWNAti2uU4x6eKyEJSEB1CMiV72ZHC0=","Dhf8kPWXHtEmRvibXMHswfLD\u002B3o1fSXYk1SiyOVui4k=","sEw7rLBAZvLvWoUcgoJljrzwWgQWkEVBtKj2voufx6o=","cHyC9ho5Z\u002BADHh1QUHXr29HoED0FNhsmAhYDSx7Gp/c=","zOrLYxIwE0c6zAIcPVSSUX0fJkQBRW8QaWxG0LBOMFU=","RuzCbsAkcoxcrhCKi9PXSOCHyC/GK8OpYT2HkHPlBYM=","ci1T4rxWNkrU4ASrMsI1bMWwH\u002Bh8RhTlUGEBycV5DYI=","jhsl76xf\u002BoWq\u002B//hDz3nmEkazLui/yVq8u3k958fjsU=","/ZogTRSpViRTS9zC7eF0cM5/mtd6tAHnoq0ETnR9V4o=","Qf6IwVXlecBfH6b7gOH56e1gDd8rWP5FphzYuJKZSsc=","HsymA4WtHbRh1vfUCZFeHQ3XGOxm2Zeh5j4c/96YJhU=","kVPiuaP\u002B3m8V8SOPtUw2Rcb3simUnlFOhgUekWGEyN4=","/l5YGJFatGz3p7TIi2T4LKRDhITSYToDO0utQgPC7Mc=","BAjwNuss0RbgWmSWRWu\u002B5rPQBx0o7A0l19QIkKJefc4=","AeCHXJPn7iM0rYRIbQqSySlKp4QdzIUjH\u002BFAL9TflZw=","8kmRphf8409tYqRx8iENUiku/j2u5josQ9hZITcQ3GQ=","wEwtU8oELWsaIzpF5grHfe7AU4J9QIVRuxKrktFXXbw=","pEqyByX9KaO2fI12C\u002B9FG/GC0Q9ktqWDKZJTkiB54VU=","Jghq4kSnpdUaf1oNmaTlFs28uGtd/7t9PpY5pFexuQo=","I0HjlUwsODusS\u002BYQTe8b6f6L7zehAZs3PqyIL6FWAPQ=","loBSiOJlIF/nHFiPyuFjoSwTw3MSLZseOtOy97oenK4=","unl7CiT37VHQK\u002Bh7mn\u002BoRp4\u002BgsIt9A4Lz\u002B46U0c9iws=","ia2HLf/1yQw4ZvgX7kYXPsJRI73ER2\u002BhgZALIuErV3M=","L9TxQUJWd\u002BqAAX35epuyFvWGAq3zS4Wf2bmtXJdIHzU=","wX53F4F/PdAaNXtULmZ\u002BcyKn\u002BNz6tjFzV3kpMQieRH4="],"CachedAssets":{"7VtgCJQTB\u002BE0\u002BEcVgq8hcfOX4mO7g5nypF6w9ykGKjU=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/douwco.css","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"css/douwco#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"hj6z4y4hul","Integrity":"IygmdqnBdiHmN\u002BNt7OdvhI5st7fdzFBnOCsskFp7bfk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/douwco.css","FileLength":719,"LastWriteTime":"2026-02-11T22:17:01.5429704+00:00"},"V8nyZFpRhKTuGh8X2zTK8bLmYtwXbTdsxlAfA8aUBNc=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/style.css","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"css/style#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"zht5oisgp4","Integrity":"l4QNnp9ZvLNhprLgFvi8Nzd\u002BXdOZNnkCr9Tc0GiECRk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/style.css","FileLength":3410,"LastWriteTime":"2026-03-09T23:34:29.4315414+00:00"},"K\u002Bi5dVnnbOzqlKwtDWubIz8vMIiunL2un0gtfGvKbdA=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/favicon.ico","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ad5rsjjdyd","Integrity":"EnTXPLPYUsDa7NarMnxBKy1saAq\u002BouSItBMTlsFlzcs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/favicon.ico","FileLength":15406,"LastWriteTime":"2026-02-07T22:33:02.9981488+00:00"},"W6/XdpG30kdc9MuCbTwQylecqz\u002BkBpBTVUzzSdFSPS0=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Montserrat-Bold.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"fonts/Montserrat-Bold#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"0f68wwysiu","Integrity":"hG1YI\u002BXJCaWq1J771x3V8zIKhkD/\u002BGhAv31SnI2GYKU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Montserrat-Bold.ttf","FileLength":335788,"LastWriteTime":"2026-02-07T20:30:08.5849739+00:00"},"GbtX1LfE1XfOqTgcDyl40cLVRI8XsgYL83tVProjiak=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Montserrat-Regular.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"fonts/Montserrat-Regular#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"x1juw6fwdo","Integrity":"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Montserrat-Regular.ttf","FileLength":330948,"LastWriteTime":"2026-02-07T20:30:08.5934603+00:00"},"L0Os2NU5bYrxGf2UijR32Uy2maNPXosTppRnVyRT4t4=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Righteous-Regular.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"fonts/Righteous-Regular#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"vov7vgyq3c","Integrity":"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Righteous-Regular.ttf","FileLength":43104,"LastWriteTime":"2026-02-07T20:30:08.5883021+00:00"},"3bJjj5VWMT2Lz1gtmUfcZ\u002BsX805EilEFdH59rIeIPyQ=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/alcove.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/alcove#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"l353dch9cq","Integrity":"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/alcove.png","FileLength":175803,"LastWriteTime":"2026-03-09T23:34:29.4325414+00:00"},"gQr9siG47uMeZWNAti2uU4x6eKyEJSEB1CMiV72ZHC0=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/douwco_logo.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/douwco_logo#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"1uvsuil67c","Integrity":"1zmSVbUeJ9\u002Bb7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/douwco_logo.png","FileLength":55552,"LastWriteTime":"2026-02-07T20:30:08.6363031+00:00"},"Dhf8kPWXHtEmRvibXMHswfLD\u002B3o1fSXYk1SiyOVui4k=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/godot_addons.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/godot_addons#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"51o0o1kej0","Integrity":"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/godot_addons.png","FileLength":5770,"LastWriteTime":"2026-03-09T23:34:29.4325414+00:00"},"sEw7rLBAZvLvWoUcgoJljrzwWgQWkEVBtKj2voufx6o=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/devicegamepad2.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/icons/devicegamepad2#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"oag7kgbssd","Integrity":"QNJkP\u002BocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/devicegamepad2.png","FileLength":3405,"LastWriteTime":"2026-02-07T21:49:54.4800049+00:00"},"cHyC9ho5Z\u002BADHh1QUHXr29HoED0FNhsmAhYDSx7Gp/c=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/europe.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/icons/europe#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"emyxcyr7lm","Integrity":"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/europe.png","FileLength":3968,"LastWriteTime":"2026-02-07T21:15:44.426959+00:00"},"zOrLYxIwE0c6zAIcPVSSUX0fJkQBRW8QaWxG0LBOMFU=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/projects_icon.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/icons/projects_icon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"7ny7t6og73","Integrity":"3b8C/TTK24DQIM9B\u002BGScSeJzu\u002BpIjKNW8dZ39YNWoMQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/projects_icon.png","FileLength":8443,"LastWriteTime":"2026-02-07T21:44:49.8129491+00:00"},"RuzCbsAkcoxcrhCKi9PXSOCHyC/GK8OpYT2HkHPlBYM=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/user.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/icons/user#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"sd1j8sitba","Integrity":"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/user.png","FileLength":9241,"LastWriteTime":"2026-02-07T21:44:31.4285836+00:00"},"ci1T4rxWNkrU4ASrMsI1bMWwH\u002Bh8RhTlUGEBycV5DYI=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/kingfisher.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/kingfisher#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"182d7hto9d","Integrity":"f5j2iAKEugD5dM\u002B3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/kingfisher.png","FileLength":302695,"LastWriteTime":"2026-03-09T23:34:29.4335415+00:00"},"jhsl76xf\u002BoWq\u002B//hDz3nmEkazLui/yVq8u3k958fjsU=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/ludum_dare.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/ludum_dare#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5hazvwq61r","Integrity":"yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/ludum_dare.png","FileLength":4925,"LastWriteTime":"2026-03-09T23:34:29.4335415+00:00"},"/ZogTRSpViRTS9zC7eF0cM5/mtd6tAHnoq0ETnR9V4o=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/me_img.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/me_img#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"bosvnkg9xk","Integrity":"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/me_img.png","FileLength":334660,"LastWriteTime":"2026-02-12T01:38:08.2438093+00:00"},"Qf6IwVXlecBfH6b7gOH56e1gDd8rWP5FphzYuJKZSsc=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/rollability.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/rollability#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"98ow7jrzxd","Integrity":"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/rollability.png","FileLength":8471959,"LastWriteTime":"2026-03-09T23:34:29.462542+00:00"},"HsymA4WtHbRh1vfUCZFeHQ3XGOxm2Zeh5j4c/96YJhU=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/server_image.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/server_image#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"aekh8pde6e","Integrity":"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/server_image.png","FileLength":1007708,"LastWriteTime":"2026-02-12T00:08:50.4395508+00:00"},"kVPiuaP\u002B3m8V8SOPtUw2Rcb3simUnlFOhgUekWGEyN4=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/thesis_tool.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/thesis_tool#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"hxh8m8nqqk","Integrity":"xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/thesis_tool.png","FileLength":14987,"LastWriteTime":"2026-03-09T23:34:29.462542+00:00"},"/l5YGJFatGz3p7TIi2T4LKRDhITSYToDO0utQgPC7Mc=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/wizard_gloves.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/wizard_gloves#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"8lugtobkr9","Integrity":"JLQbNts5Z52lUp9fNFOY\u002ByCFeTOrHuATMpO1NTLttdk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/wizard_gloves.png","FileLength":126262,"LastWriteTime":"2026-03-09T23:34:29.463542+00:00"},"BAjwNuss0RbgWmSWRWu\u002B5rPQBx0o7A0l19QIkKJefc4=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/about_me.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"includes/about_me#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"6uj78r15jt","Integrity":"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/about_me.html","FileLength":6648,"LastWriteTime":"2026-03-09T23:34:29.463542+00:00"},"AeCHXJPn7iM0rYRIbQqSySlKp4QdzIUjH\u002BFAL9TflZw=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/apps.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"includes/apps#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"lzakhpjgbx","Integrity":"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/apps.html","FileLength":100,"LastWriteTime":"2026-03-09T23:34:29.463542+00:00"},"8kmRphf8409tYqRx8iENUiku/j2u5josQ9hZITcQ3GQ=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/games.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"includes/games#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"4rnn98hyqz","Integrity":"AM\u002BYysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA\u002B4WVk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/games.html","FileLength":97,"LastWriteTime":"2026-03-09T23:34:29.463542+00:00"},"wEwtU8oELWsaIzpF5grHfe7AU4J9QIVRuxKrktFXXbw=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/home.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"includes/home#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"1tkatawvq4","Integrity":"1ez\u002B3n49vWtm6NPs2oCpqp4FM7\u002Bbcg4siOWjkk/qwy0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/home.html","FileLength":1257,"LastWriteTime":"2026-03-09T23:34:29.463542+00:00"},"pEqyByX9KaO2fI12C\u002B9FG/GC0Q9ktqWDKZJTkiB54VU=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/index.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"index#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ew1mknl83p","Integrity":"4qxlm2n74C2pbdgeJooqN1jOf\u002B9gt\u002BeF\u002BHvKtrnHwVQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/index.html","FileLength":1779,"LastWriteTime":"2026-03-09T23:34:29.463542+00:00"},"Jghq4kSnpdUaf1oNmaTlFs28uGtd/7t9PpY5pFexuQo=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/index.js","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"js/index#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ga1fkhapv2","Integrity":"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/index.js","FileLength":1596,"LastWriteTime":"2026-02-11T23:59:47.201581+00:00"},"I0HjlUwsODusS\u002BYQTe8b6f6L7zehAZs3PqyIL6FWAPQ=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/main.js","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"js/main#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"gapopd6iwt","Integrity":"\u002BHzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/main.js","FileLength":1087,"LastWriteTime":"2026-02-12T00:00:01.049054+00:00"},"loBSiOJlIF/nHFiPyuFjoSwTw3MSLZseOtOy97oenK4=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/vid/procedural_streets.mp4","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"vid/procedural_streets#[.{fingerprint}]?.mp4","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"7zwzofruh3","Integrity":"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/vid/procedural_streets.mp4","FileLength":6792833,"LastWriteTime":"2026-03-09T23:34:29.4845425+00:00"},"unl7CiT37VHQK\u002Bh7mn\u002BoRp4\u002BgsIt9A4Lz\u002B46U0c9iws=":{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/vid/wizard_gloves.mp4","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"vid/wizard_gloves#[.{fingerprint}]?.mp4","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ufmgdj2wiv","Integrity":"mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/vid/wizard_gloves.mp4","FileLength":51408017,"LastWriteTime":"2026-03-09T23:34:29.5285433+00:00"}},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/obj/Debug/net10.0/staticwebassets.build.endpoints.json
deleted file mode 100644
index bbc1171..0000000
--- a/obj/Debug/net10.0/staticwebassets.build.endpoints.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"css/douwco.css","AssetFile":"css/douwco.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.css","AssetFile":"css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 22:17:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="}]},{"Route":"css/douwco.css.gz","AssetFile":"css/douwco.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"css/douwco.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 22:17:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"}]},{"Route":"css/douwco.hj6z4y4hul.css.gz","AssetFile":"css/douwco.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="},{"Name":"label","Value":"css/douwco.css.gz"}]},{"Route":"css/style.css","AssetFile":"css/style.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.css","AssetFile":"css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="}]},{"Route":"css/style.css.gz","AssetFile":"css/style.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"css/style.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"}]},{"Route":"css/style.zht5oisgp4.css.gz","AssetFile":"css/style.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="},{"Name":"label","Value":"css/style.css.gz"}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 22:33:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.ad5rsjjdyd.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 22:33:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="}]},{"Route":"fonts/Montserrat-Bold.0f68wwysiu.ttf","AssetFile":"fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0f68wwysiu"},{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="},{"Name":"label","Value":"fonts/Montserrat-Bold.ttf"}]},{"Route":"fonts/Montserrat-Bold.ttf","AssetFile":"fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="}]},{"Route":"fonts/Montserrat-Regular.ttf","AssetFile":"fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="}]},{"Route":"fonts/Montserrat-Regular.x1juw6fwdo.ttf","AssetFile":"fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x1juw6fwdo"},{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="},{"Name":"label","Value":"fonts/Montserrat-Regular.ttf"}]},{"Route":"fonts/Righteous-Regular.ttf","AssetFile":"fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="}]},{"Route":"fonts/Righteous-Regular.vov7vgyq3c.ttf","AssetFile":"fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vov7vgyq3c"},{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="},{"Name":"label","Value":"fonts/Righteous-Regular.ttf"}]},{"Route":"img/alcove.l353dch9cq.png","AssetFile":"img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l353dch9cq"},{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="},{"Name":"label","Value":"img/alcove.png"}]},{"Route":"img/alcove.png","AssetFile":"img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="}]},{"Route":"img/douwco_logo.1uvsuil67c.png","AssetFile":"img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1uvsuil67c"},{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="},{"Name":"label","Value":"img/douwco_logo.png"}]},{"Route":"img/douwco_logo.png","AssetFile":"img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="}]},{"Route":"img/godot_addons.51o0o1kej0.png","AssetFile":"img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"51o0o1kej0"},{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="},{"Name":"label","Value":"img/godot_addons.png"}]},{"Route":"img/godot_addons.png","AssetFile":"img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="}]},{"Route":"img/icons/devicegamepad2.oag7kgbssd.png","AssetFile":"img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:49:54 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oag7kgbssd"},{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="},{"Name":"label","Value":"img/icons/devicegamepad2.png"}]},{"Route":"img/icons/devicegamepad2.png","AssetFile":"img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:49:54 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="}]},{"Route":"img/icons/europe.emyxcyr7lm.png","AssetFile":"img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:15:44 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"emyxcyr7lm"},{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="},{"Name":"label","Value":"img/icons/europe.png"}]},{"Route":"img/icons/europe.png","AssetFile":"img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:15:44 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="}]},{"Route":"img/icons/projects_icon.7ny7t6og73.png","AssetFile":"img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ny7t6og73"},{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="},{"Name":"label","Value":"img/icons/projects_icon.png"}]},{"Route":"img/icons/projects_icon.png","AssetFile":"img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="}]},{"Route":"img/icons/user.png","AssetFile":"img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="}]},{"Route":"img/icons/user.sd1j8sitba.png","AssetFile":"img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sd1j8sitba"},{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="},{"Name":"label","Value":"img/icons/user.png"}]},{"Route":"img/kingfisher.182d7hto9d.png","AssetFile":"img/kingfisher.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"302695"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"182d7hto9d"},{"Name":"integrity","Value":"sha256-f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ="},{"Name":"label","Value":"img/kingfisher.png"}]},{"Route":"img/kingfisher.png","AssetFile":"img/kingfisher.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"302695"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ="}]},{"Route":"img/ludum_dare.5hazvwq61r.png","AssetFile":"img/ludum_dare.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4925"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5hazvwq61r"},{"Name":"integrity","Value":"sha256-yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4="},{"Name":"label","Value":"img/ludum_dare.png"}]},{"Route":"img/ludum_dare.png","AssetFile":"img/ludum_dare.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"4925"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4="}]},{"Route":"img/me_img.bosvnkg9xk.png","AssetFile":"img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 01:38:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bosvnkg9xk"},{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="},{"Name":"label","Value":"img/me_img.png"}]},{"Route":"img/me_img.png","AssetFile":"img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 01:38:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="}]},{"Route":"img/rollability.98ow7jrzxd.png","AssetFile":"img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"98ow7jrzxd"},{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="},{"Name":"label","Value":"img/rollability.png"}]},{"Route":"img/rollability.png","AssetFile":"img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="}]},{"Route":"img/server_image.aekh8pde6e.png","AssetFile":"img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:08:50 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aekh8pde6e"},{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="},{"Name":"label","Value":"img/server_image.png"}]},{"Route":"img/server_image.png","AssetFile":"img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:08:50 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="}]},{"Route":"img/thesis_tool.hxh8m8nqqk.png","AssetFile":"img/thesis_tool.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14987"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hxh8m8nqqk"},{"Name":"integrity","Value":"sha256-xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg="},{"Name":"label","Value":"img/thesis_tool.png"}]},{"Route":"img/thesis_tool.png","AssetFile":"img/thesis_tool.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"14987"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg="}]},{"Route":"img/wizard_gloves.8lugtobkr9.png","AssetFile":"img/wizard_gloves.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"126262"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8lugtobkr9"},{"Name":"integrity","Value":"sha256-JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk="},{"Name":"label","Value":"img/wizard_gloves.png"}]},{"Route":"img/wizard_gloves.png","AssetFile":"img/wizard_gloves.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"126262"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk="}]},{"Route":"includes/about_me.6uj78r15jt.html","AssetFile":"includes/about_me.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433087917"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uj78r15jt"},{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="},{"Name":"label","Value":"includes/about_me.html"},{"Name":"original-resource","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""}]},{"Route":"includes/about_me.6uj78r15jt.html","AssetFile":"includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6648"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uj78r15jt"},{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="},{"Name":"label","Value":"includes/about_me.html"}]},{"Route":"includes/about_me.6uj78r15jt.html.gz","AssetFile":"includes/about_me.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uj78r15jt"},{"Name":"integrity","Value":"sha256-7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo="},{"Name":"label","Value":"includes/about_me.html.gz"}]},{"Route":"includes/about_me.html","AssetFile":"includes/about_me.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433087917"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="},{"Name":"original-resource","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""}]},{"Route":"includes/about_me.html","AssetFile":"includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6648"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="}]},{"Route":"includes/about_me.html.gz","AssetFile":"includes/about_me.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo="}]},{"Route":"includes/apps.html","AssetFile":"includes/apps.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.html","AssetFile":"includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="}]},{"Route":"includes/apps.html.gz","AssetFile":"includes/apps.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"includes/apps.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"}]},{"Route":"includes/apps.lzakhpjgbx.html.gz","AssetFile":"includes/apps.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="},{"Name":"label","Value":"includes/apps.html.gz"}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"includes/games.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"}]},{"Route":"includes/games.4rnn98hyqz.html.gz","AssetFile":"includes/games.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="},{"Name":"label","Value":"includes/games.html.gz"}]},{"Route":"includes/games.html","AssetFile":"includes/games.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.html","AssetFile":"includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="}]},{"Route":"includes/games.html.gz","AssetFile":"includes/games.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"includes/home.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"}]},{"Route":"includes/home.1tkatawvq4.html.gz","AssetFile":"includes/home.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="},{"Name":"label","Value":"includes/home.html.gz"}]},{"Route":"includes/home.html","AssetFile":"includes/home.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.html","AssetFile":"includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="}]},{"Route":"includes/home.html.gz","AssetFile":"includes/home.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="}]},{"Route":"index.ew1mknl83p.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.ew1mknl83p.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"}]},{"Route":"index.ew1mknl83p.html.gz","AssetFile":"index.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="},{"Name":"label","Value":"index.html.gz"}]},{"Route":"index.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="}]},{"Route":"index.html.gz","AssetFile":"index.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"js/index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 23:59:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"}]},{"Route":"js/index.ga1fkhapv2.js.gz","AssetFile":"js/index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="},{"Name":"label","Value":"js/index.js.gz"}]},{"Route":"js/index.js","AssetFile":"js/index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.js","AssetFile":"js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 23:59:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="}]},{"Route":"js/index.js.gz","AssetFile":"js/index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"js/main.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:00:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"}]},{"Route":"js/main.gapopd6iwt.js.gz","AssetFile":"js/main.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="},{"Name":"label","Value":"js/main.js.gz"}]},{"Route":"js/main.js","AssetFile":"js/main.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.js","AssetFile":"js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:00:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="}]},{"Route":"js/main.js.gz","AssetFile":"js/main.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="}]},{"Route":"vid/procedural_streets.7zwzofruh3.mp4","AssetFile":"vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7zwzofruh3"},{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="},{"Name":"label","Value":"vid/procedural_streets.mp4"}]},{"Route":"vid/procedural_streets.mp4","AssetFile":"vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="}]},{"Route":"vid/wizard_gloves.mp4","AssetFile":"vid/wizard_gloves.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"51408017"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4="}]},{"Route":"vid/wizard_gloves.ufmgdj2wiv.mp4","AssetFile":"vid/wizard_gloves.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51408017"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ufmgdj2wiv"},{"Name":"integrity","Value":"sha256-mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4="},{"Name":"label","Value":"vid/wizard_gloves.mp4"}]}]}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/staticwebassets.build.json b/obj/Debug/net10.0/staticwebassets.build.json
deleted file mode 100644
index 65343c8..0000000
--- a/obj/Debug/net10.0/staticwebassets.build.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Version":1,"Hash":"IcK+mDbByIxkncjDEUMC++sP5BD2aen9IdPCDqCix9U=","Source":"DouwcoWebsite","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"DouwcoWebsite/wwwroot","Source":"DouwcoWebsite","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","Pattern":"**"}],"Assets":[{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"favicon#[.{fingerprint=ad5rsjjdyd}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"62ils0f8i2","Integrity":"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/favicon.ico","FileLength":7695,"LastWriteTime":"2026-03-18T00:31:28+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"index#[.{fingerprint=ew1mknl83p}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/index.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3xvpvanmv5","Integrity":"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/index.html","FileLength":596,"LastWriteTime":"2026-03-18T00:31:28+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/apps#[.{fingerprint=lzakhpjgbx}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/apps.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hr48aknd23","Integrity":"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/apps.html","FileLength":103,"LastWriteTime":"2026-03-18T00:31:28+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/games#[.{fingerprint=4rnn98hyqz}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/games.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e935t8w10j","Integrity":"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/games.html","FileLength":100,"LastWriteTime":"2026-03-18T00:31:28+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"css/douwco#[.{fingerprint=hj6z4y4hul}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/douwco.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mawhswpgfr","Integrity":"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/douwco.css","FileLength":281,"LastWriteTime":"2026-03-18T00:31:28+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/about_me#[.{fingerprint=6uj78r15jt}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/about_me.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"byg1ikev95","Integrity":"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/about_me.html","FileLength":2308,"LastWriteTime":"2026-03-18T00:31:28+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"js/index#[.{fingerprint=ga1fkhapv2}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/index.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ursli8r5s7","Integrity":"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/index.js","FileLength":597,"LastWriteTime":"2026-03-18T00:31:28+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/home#[.{fingerprint=1tkatawvq4}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/home.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j2hs9dheop","Integrity":"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/home.html","FileLength":553,"LastWriteTime":"2026-03-18T00:31:28+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"js/main#[.{fingerprint=gapopd6iwt}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/main.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"eoqnh43yw3","Integrity":"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/main.js","FileLength":499,"LastWriteTime":"2026-03-18T00:31:28+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"css/style#[.{fingerprint=zht5oisgp4}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/style.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"34cb359oqg","Integrity":"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/style.css","FileLength":1033,"LastWriteTime":"2026-03-18T00:31:28+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/douwco.css","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"css/douwco#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"hj6z4y4hul","Integrity":"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/douwco.css","FileLength":719,"LastWriteTime":"2026-02-11T22:17:01+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/style.css","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"css/style#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"zht5oisgp4","Integrity":"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/style.css","FileLength":3410,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/favicon.ico","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ad5rsjjdyd","Integrity":"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/favicon.ico","FileLength":15406,"LastWriteTime":"2026-02-07T22:33:02+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Montserrat-Bold.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"fonts/Montserrat-Bold#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0f68wwysiu","Integrity":"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Montserrat-Bold.ttf","FileLength":335788,"LastWriteTime":"2026-02-07T20:30:08+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Montserrat-Regular.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"fonts/Montserrat-Regular#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"x1juw6fwdo","Integrity":"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Montserrat-Regular.ttf","FileLength":330948,"LastWriteTime":"2026-02-07T20:30:08+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Righteous-Regular.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"fonts/Righteous-Regular#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"vov7vgyq3c","Integrity":"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Righteous-Regular.ttf","FileLength":43104,"LastWriteTime":"2026-02-07T20:30:08+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/alcove.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/alcove#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"l353dch9cq","Integrity":"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/alcove.png","FileLength":175803,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/douwco_logo.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/douwco_logo#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"1uvsuil67c","Integrity":"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/douwco_logo.png","FileLength":55552,"LastWriteTime":"2026-02-07T20:30:08+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/godot_addons.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/godot_addons#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"51o0o1kej0","Integrity":"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/godot_addons.png","FileLength":5770,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/devicegamepad2.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/icons/devicegamepad2#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"oag7kgbssd","Integrity":"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/devicegamepad2.png","FileLength":3405,"LastWriteTime":"2026-02-07T21:49:54+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/europe.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/icons/europe#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"emyxcyr7lm","Integrity":"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/europe.png","FileLength":3968,"LastWriteTime":"2026-02-07T21:15:44+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/projects_icon.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/icons/projects_icon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"7ny7t6og73","Integrity":"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/projects_icon.png","FileLength":8443,"LastWriteTime":"2026-02-07T21:44:49+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/user.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/icons/user#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"sd1j8sitba","Integrity":"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/user.png","FileLength":9241,"LastWriteTime":"2026-02-07T21:44:31+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/kingfisher.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/kingfisher#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"182d7hto9d","Integrity":"f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/kingfisher.png","FileLength":302695,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/ludum_dare.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/ludum_dare#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"5hazvwq61r","Integrity":"yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/ludum_dare.png","FileLength":4925,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/me_img.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/me_img#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"bosvnkg9xk","Integrity":"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/me_img.png","FileLength":334660,"LastWriteTime":"2026-02-12T01:38:08+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/rollability.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/rollability#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"98ow7jrzxd","Integrity":"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/rollability.png","FileLength":8471959,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/server_image.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/server_image#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"aekh8pde6e","Integrity":"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/server_image.png","FileLength":1007708,"LastWriteTime":"2026-02-12T00:08:50+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/thesis_tool.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/thesis_tool#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"hxh8m8nqqk","Integrity":"xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/thesis_tool.png","FileLength":14987,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/wizard_gloves.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"img/wizard_gloves#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"8lugtobkr9","Integrity":"JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/wizard_gloves.png","FileLength":126262,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/about_me.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"includes/about_me#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"6uj78r15jt","Integrity":"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/about_me.html","FileLength":6648,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/apps.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"includes/apps#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"lzakhpjgbx","Integrity":"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/apps.html","FileLength":100,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/games.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"includes/games#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"4rnn98hyqz","Integrity":"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/games.html","FileLength":97,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/home.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"includes/home#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"1tkatawvq4","Integrity":"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/home.html","FileLength":1257,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/index.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"index#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ew1mknl83p","Integrity":"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/index.html","FileLength":1779,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/index.js","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"js/index#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ga1fkhapv2","Integrity":"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/index.js","FileLength":1596,"LastWriteTime":"2026-02-11T23:59:47+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/main.js","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"js/main#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"gapopd6iwt","Integrity":"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/main.js","FileLength":1087,"LastWriteTime":"2026-02-12T00:00:01+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/vid/procedural_streets.mp4","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"vid/procedural_streets#[.{fingerprint}]?.mp4","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"7zwzofruh3","Integrity":"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/vid/procedural_streets.mp4","FileLength":6792833,"LastWriteTime":"2026-03-09T23:34:29+00:00"},{"Identity":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/vid/wizard_gloves.mp4","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","BasePath":"/","RelativePath":"vid/wizard_gloves#[.{fingerprint}]?.mp4","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ufmgdj2wiv","Integrity":"mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/vid/wizard_gloves.mp4","FileLength":51408017,"LastWriteTime":"2026-03-09T23:34:29+00:00"}],"Endpoints":[{"Route":"css/douwco.css","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.css","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 22:17:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="}]},{"Route":"css/douwco.css.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 22:17:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"}]},{"Route":"css/douwco.hj6z4y4hul.css.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="},{"Name":"label","Value":"css/douwco.css.gz"}]},{"Route":"css/style.css","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.css","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="}]},{"Route":"css/style.css.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"}]},{"Route":"css/style.zht5oisgp4.css.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="},{"Name":"label","Value":"css/style.css.gz"}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 22:33:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.ad5rsjjdyd.ico.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ico","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 22:33:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="}]},{"Route":"favicon.ico.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="}]},{"Route":"fonts/Montserrat-Bold.0f68wwysiu.ttf","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0f68wwysiu"},{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="},{"Name":"label","Value":"fonts/Montserrat-Bold.ttf"}]},{"Route":"fonts/Montserrat-Bold.ttf","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="}]},{"Route":"fonts/Montserrat-Regular.ttf","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="}]},{"Route":"fonts/Montserrat-Regular.x1juw6fwdo.ttf","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x1juw6fwdo"},{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="},{"Name":"label","Value":"fonts/Montserrat-Regular.ttf"}]},{"Route":"fonts/Righteous-Regular.ttf","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="}]},{"Route":"fonts/Righteous-Regular.vov7vgyq3c.ttf","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vov7vgyq3c"},{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="},{"Name":"label","Value":"fonts/Righteous-Regular.ttf"}]},{"Route":"img/alcove.l353dch9cq.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l353dch9cq"},{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="},{"Name":"label","Value":"img/alcove.png"}]},{"Route":"img/alcove.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="}]},{"Route":"img/douwco_logo.1uvsuil67c.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1uvsuil67c"},{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="},{"Name":"label","Value":"img/douwco_logo.png"}]},{"Route":"img/douwco_logo.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 20:30:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="}]},{"Route":"img/godot_addons.51o0o1kej0.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"51o0o1kej0"},{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="},{"Name":"label","Value":"img/godot_addons.png"}]},{"Route":"img/godot_addons.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="}]},{"Route":"img/icons/devicegamepad2.oag7kgbssd.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:49:54 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oag7kgbssd"},{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="},{"Name":"label","Value":"img/icons/devicegamepad2.png"}]},{"Route":"img/icons/devicegamepad2.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:49:54 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="}]},{"Route":"img/icons/europe.emyxcyr7lm.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:15:44 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"emyxcyr7lm"},{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="},{"Name":"label","Value":"img/icons/europe.png"}]},{"Route":"img/icons/europe.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:15:44 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="}]},{"Route":"img/icons/projects_icon.7ny7t6og73.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ny7t6og73"},{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="},{"Name":"label","Value":"img/icons/projects_icon.png"}]},{"Route":"img/icons/projects_icon.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="}]},{"Route":"img/icons/user.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="}]},{"Route":"img/icons/user.sd1j8sitba.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Sat, 07 Feb 2026 21:44:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sd1j8sitba"},{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="},{"Name":"label","Value":"img/icons/user.png"}]},{"Route":"img/kingfisher.182d7hto9d.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/kingfisher.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"302695"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"182d7hto9d"},{"Name":"integrity","Value":"sha256-f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ="},{"Name":"label","Value":"img/kingfisher.png"}]},{"Route":"img/kingfisher.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/kingfisher.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"302695"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-f5j2iAKEugD5dM+3BnPTWh7EXJS5HDzPo0x9Jvs3WWQ="}]},{"Route":"img/ludum_dare.5hazvwq61r.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/ludum_dare.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4925"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5hazvwq61r"},{"Name":"integrity","Value":"sha256-yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4="},{"Name":"label","Value":"img/ludum_dare.png"}]},{"Route":"img/ludum_dare.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/ludum_dare.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"4925"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yT7SCu8STP1eJsdPNv0TbRkznqGyeTZXeqq2svvLCY4="}]},{"Route":"img/me_img.bosvnkg9xk.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 01:38:08 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bosvnkg9xk"},{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="},{"Name":"label","Value":"img/me_img.png"}]},{"Route":"img/me_img.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 01:38:08 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="}]},{"Route":"img/rollability.98ow7jrzxd.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"98ow7jrzxd"},{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="},{"Name":"label","Value":"img/rollability.png"}]},{"Route":"img/rollability.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="}]},{"Route":"img/server_image.aekh8pde6e.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:08:50 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aekh8pde6e"},{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="},{"Name":"label","Value":"img/server_image.png"}]},{"Route":"img/server_image.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:08:50 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="}]},{"Route":"img/thesis_tool.hxh8m8nqqk.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/thesis_tool.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14987"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hxh8m8nqqk"},{"Name":"integrity","Value":"sha256-xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg="},{"Name":"label","Value":"img/thesis_tool.png"}]},{"Route":"img/thesis_tool.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/thesis_tool.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"14987"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xfJF5hA/qucUjAd6VE5N5PC83oVThf6wWsZ6SNhmJZg="}]},{"Route":"img/wizard_gloves.8lugtobkr9.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/wizard_gloves.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"126262"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8lugtobkr9"},{"Name":"integrity","Value":"sha256-JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk="},{"Name":"label","Value":"img/wizard_gloves.png"}]},{"Route":"img/wizard_gloves.png","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/img/wizard_gloves.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"126262"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JLQbNts5Z52lUp9fNFOY+yCFeTOrHuATMpO1NTLttdk="}]},{"Route":"includes/about_me.6uj78r15jt.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433087917"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uj78r15jt"},{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="},{"Name":"label","Value":"includes/about_me.html"},{"Name":"original-resource","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""}]},{"Route":"includes/about_me.6uj78r15jt.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6648"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uj78r15jt"},{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="},{"Name":"label","Value":"includes/about_me.html"}]},{"Route":"includes/about_me.6uj78r15jt.html.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6uj78r15jt"},{"Name":"integrity","Value":"sha256-7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo="},{"Name":"label","Value":"includes/about_me.html.gz"}]},{"Route":"includes/about_me.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000433087917"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="},{"Name":"original-resource","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""}]},{"Route":"includes/about_me.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6648"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0vsQs/V/Q23eb7IqpevidTDCje6MVSP9wz9FBD9B/eM="}]},{"Route":"includes/about_me.html.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2308"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7TED3KLidu21ap1ZjyrcYqG97EZwz+2RvlTvhOYL5Oo="}]},{"Route":"includes/apps.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="}]},{"Route":"includes/apps.html.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"}]},{"Route":"includes/apps.lzakhpjgbx.html.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="},{"Name":"label","Value":"includes/apps.html.gz"}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"}]},{"Route":"includes/games.4rnn98hyqz.html.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="},{"Name":"label","Value":"includes/games.html.gz"}]},{"Route":"includes/games.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="}]},{"Route":"includes/games.html.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"}]},{"Route":"includes/home.1tkatawvq4.html.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="},{"Name":"label","Value":"includes/home.html.gz"}]},{"Route":"includes/home.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="}]},{"Route":"includes/home.html.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="}]},{"Route":"index.ew1mknl83p.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.ew1mknl83p.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"}]},{"Route":"index.ew1mknl83p.html.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="},{"Name":"label","Value":"index.html.gz"}]},{"Route":"index.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.html","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="}]},{"Route":"index.html.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 23:59:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"}]},{"Route":"js/index.ga1fkhapv2.js.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="},{"Name":"label","Value":"js/index.js.gz"}]},{"Route":"js/index.js","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.js","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Wed, 11 Feb 2026 23:59:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="}]},{"Route":"js/index.js.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:00:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"}]},{"Route":"js/main.gapopd6iwt.js.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="},{"Name":"label","Value":"js/main.js.gz"}]},{"Route":"js/main.js","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.js","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 00:00:01 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="}]},{"Route":"js/main.js.gz","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Wed, 18 Mar 2026 00:31:28 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="}]},{"Route":"vid/procedural_streets.7zwzofruh3.mp4","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7zwzofruh3"},{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="},{"Name":"label","Value":"vid/procedural_streets.mp4"}]},{"Route":"vid/procedural_streets.mp4","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="}]},{"Route":"vid/wizard_gloves.mp4","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/vid/wizard_gloves.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"51408017"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4="}]},{"Route":"vid/wizard_gloves.ufmgdj2wiv.mp4","AssetFile":"/mnt/douwe/hdd/Projects/douwco_website/wwwroot/vid/wizard_gloves.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51408017"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4=\""},{"Name":"Last-Modified","Value":"Mon, 09 Mar 2026 23:34:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ufmgdj2wiv"},{"Name":"integrity","Value":"sha256-mk6Hq0oHHmUASoFfK0hMaRNHX42Lv2fu5xtCOrLX9p4="},{"Name":"label","Value":"vid/wizard_gloves.mp4"}]}]}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/staticwebassets.build.json.cache b/obj/Debug/net10.0/staticwebassets.build.json.cache
deleted file mode 100644
index df29b92..0000000
--- a/obj/Debug/net10.0/staticwebassets.build.json.cache
+++ /dev/null
@@ -1 +0,0 @@
-IcK+mDbByIxkncjDEUMC++sP5BD2aen9IdPCDqCix9U=
\ No newline at end of file
diff --git a/obj/Debug/net10.0/staticwebassets.development.json b/obj/Debug/net10.0/staticwebassets.development.json
deleted file mode 100644
index c404d2b..0000000
--- a/obj/Debug/net10.0/staticwebassets.development.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["/mnt/douwe/hdd/Projects/douwco_website/wwwroot/","/mnt/douwe/hdd/Projects/douwco_website/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"index.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz"},"Patterns":null},"css":{"Children":{"douwco.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/douwco.css"},"Patterns":null},"douwco.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz"},"Patterns":null},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/style.css"},"Patterns":null},"style.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"Montserrat-Bold.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Bold.ttf"},"Patterns":null},"Montserrat-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Regular.ttf"},"Patterns":null},"Righteous-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Righteous-Regular.ttf"},"Patterns":null}},"Asset":null,"Patterns":null},"img":{"Children":{"alcove.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/alcove.png"},"Patterns":null},"douwco_logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.png"},"Patterns":null},"godot_addons.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/godot_addons.png"},"Patterns":null},"kingfisher.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/kingfisher.png"},"Patterns":null},"ludum_dare.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/ludum_dare.png"},"Patterns":null},"me_img.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/me_img.png"},"Patterns":null},"rollability.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/rollability.png"},"Patterns":null},"server_image.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/server_image.png"},"Patterns":null},"thesis_tool.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/thesis_tool.png"},"Patterns":null},"wizard_gloves.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/wizard_gloves.png"},"Patterns":null},"icons":{"Children":{"devicegamepad2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/devicegamepad2.png"},"Patterns":null},"europe.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/europe.png"},"Patterns":null},"projects_icon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/projects_icon.png"},"Patterns":null},"user.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/user.png"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"includes":{"Children":{"about_me.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/about_me.html"},"Patterns":null},"about_me.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rqvxc4n2h7-{0}-6uj78r15jt-6uj78r15jt.gz"},"Patterns":null},"apps.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/apps.html"},"Patterns":null},"apps.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz"},"Patterns":null},"games.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/games.html"},"Patterns":null},"games.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz"},"Patterns":null},"home.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/home.html"},"Patterns":null},"home.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"index.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/index.js"},"Patterns":null},"index.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz"},"Patterns":null},"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null},"main.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"vid":{"Children":{"procedural_streets.mp4":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"vid/procedural_streets.mp4"},"Patterns":null},"wizard_gloves.mp4":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"vid/wizard_gloves.mp4"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/swae.build.ex.cache b/obj/Debug/net10.0/swae.build.ex.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/obj/DouwcoWebsite.csproj.nuget.dgspec.json b/obj/DouwcoWebsite.csproj.nuget.dgspec.json
deleted file mode 100644
index bb1fd60..0000000
--- a/obj/DouwcoWebsite.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,485 +0,0 @@
-{
- "format": 1,
- "restore": {
- "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj": {}
- },
- "projects": {
- "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj",
- "projectName": "DouwcoWebsite",
- "projectPath": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj",
- "packagesPath": "/home/douwe/.nuget/packages/",
- "outputPath": "/mnt/douwe/hdd/Projects/douwco_website/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/home/douwe/.nuget/NuGet/NuGet.Config"
- ],
- "originalTargetFrameworks": [
- "net10.0"
- ],
- "sources": {
- "/usr/lib/dotnet/library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net10.0": {
- "targetAlias": "net10.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "all"
- },
- "SdkAnalysisLevel": "10.0.100"
- },
- "frameworks": {
- "net10.0": {
- "targetAlias": "net10.0",
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.AspNetCore.App": {
- "privateAssets": "none"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/10.0.104/PortableRuntimeIdentifierGraph.json",
- "packagesToPrune": {
- "Microsoft.AspNetCore": "(,10.0.32767]",
- "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
- "Microsoft.AspNetCore.App": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
- "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
- "Microsoft.AspNetCore.Cors": "(,10.0.32767]",
- "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
- "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
- "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
- "Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
- "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
- "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
- "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
- "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
- "Microsoft.AspNetCore.Identity": "(,10.0.32767]",
- "Microsoft.AspNetCore.Localization": "(,10.0.32767]",
- "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
- "Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
- "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
- "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
- "Microsoft.AspNetCore.Razor": "(,10.0.32767]",
- "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
- "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
- "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
- "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
- "Microsoft.AspNetCore.Routing": "(,10.0.32767]",
- "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
- "Microsoft.AspNetCore.Session": "(,10.0.32767]",
- "Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
- "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
- "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
- "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
- "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
- "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
- "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
- "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
- "Microsoft.CSharp": "(,4.7.32767]",
- "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
- "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
- "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Features": "(,10.0.32767]",
- "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
- "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
- "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
- "Microsoft.Extensions.Hosting": "(,10.0.32767]",
- "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Http": "(,10.0.32767]",
- "Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
- "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
- "Microsoft.Extensions.Localization": "(,10.0.32767]",
- "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Logging": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
- "Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
- "Microsoft.Extensions.Options": "(,10.0.32767]",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
- "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
- "Microsoft.Extensions.Primitives": "(,10.0.32767]",
- "Microsoft.Extensions.Validation": "(,10.0.32767]",
- "Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
- "Microsoft.JSInterop": "(,10.0.32767]",
- "Microsoft.Net.Http.Headers": "(,10.0.32767]",
- "Microsoft.VisualBasic": "(,10.4.32767]",
- "Microsoft.Win32.Primitives": "(,4.3.32767]",
- "Microsoft.Win32.Registry": "(,5.0.32767]",
- "runtime.any.System.Collections": "(,4.3.32767]",
- "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
- "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
- "runtime.any.System.Globalization": "(,4.3.32767]",
- "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
- "runtime.any.System.IO": "(,4.3.32767]",
- "runtime.any.System.Reflection": "(,4.3.32767]",
- "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
- "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
- "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
- "runtime.any.System.Runtime": "(,4.3.32767]",
- "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
- "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
- "runtime.any.System.Text.Encoding": "(,4.3.32767]",
- "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
- "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
- "runtime.any.System.Threading.Timer": "(,4.3.32767]",
- "runtime.aot.System.Collections": "(,4.3.32767]",
- "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
- "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
- "runtime.aot.System.Globalization": "(,4.3.32767]",
- "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
- "runtime.aot.System.IO": "(,4.3.32767]",
- "runtime.aot.System.Reflection": "(,4.3.32767]",
- "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
- "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
- "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
- "runtime.aot.System.Runtime": "(,4.3.32767]",
- "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
- "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
- "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
- "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
- "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
- "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
- "runtime.unix.System.Console": "(,4.3.32767]",
- "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
- "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
- "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
- "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
- "runtime.unix.System.Private.Uri": "(,4.3.32767]",
- "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
- "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
- "runtime.win.System.Console": "(,4.3.32767]",
- "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
- "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
- "runtime.win.System.Net.Primitives": "(,4.3.32767]",
- "runtime.win.System.Net.Sockets": "(,4.3.32767]",
- "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
- "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win7.System.Private.Uri": "(,4.3.32767]",
- "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "System.AppContext": "(,4.3.32767]",
- "System.Buffers": "(,5.0.32767]",
- "System.Collections": "(,4.3.32767]",
- "System.Collections.Concurrent": "(,4.3.32767]",
- "System.Collections.Immutable": "(,10.0.32767]",
- "System.Collections.NonGeneric": "(,4.3.32767]",
- "System.Collections.Specialized": "(,4.3.32767]",
- "System.ComponentModel": "(,4.3.32767]",
- "System.ComponentModel.Annotations": "(,4.3.32767]",
- "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
- "System.ComponentModel.Primitives": "(,4.3.32767]",
- "System.ComponentModel.TypeConverter": "(,4.3.32767]",
- "System.Console": "(,4.3.32767]",
- "System.Data.Common": "(,4.3.32767]",
- "System.Data.DataSetExtensions": "(,4.4.32767]",
- "System.Diagnostics.Contracts": "(,4.3.32767]",
- "System.Diagnostics.Debug": "(,4.3.32767]",
- "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
- "System.Diagnostics.EventLog": "(,10.0.32767]",
- "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
- "System.Diagnostics.Process": "(,4.3.32767]",
- "System.Diagnostics.StackTrace": "(,4.3.32767]",
- "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
- "System.Diagnostics.Tools": "(,4.3.32767]",
- "System.Diagnostics.TraceSource": "(,4.3.32767]",
- "System.Diagnostics.Tracing": "(,4.3.32767]",
- "System.Drawing.Primitives": "(,4.3.32767]",
- "System.Dynamic.Runtime": "(,4.3.32767]",
- "System.Formats.Asn1": "(,10.0.32767]",
- "System.Formats.Cbor": "(,10.0.32767]",
- "System.Formats.Tar": "(,10.0.32767]",
- "System.Globalization": "(,4.3.32767]",
- "System.Globalization.Calendars": "(,4.3.32767]",
- "System.Globalization.Extensions": "(,4.3.32767]",
- "System.IO": "(,4.3.32767]",
- "System.IO.Compression": "(,4.3.32767]",
- "System.IO.Compression.ZipFile": "(,4.3.32767]",
- "System.IO.FileSystem": "(,4.3.32767]",
- "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
- "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
- "System.IO.FileSystem.Primitives": "(,4.3.32767]",
- "System.IO.FileSystem.Watcher": "(,4.3.32767]",
- "System.IO.IsolatedStorage": "(,4.3.32767]",
- "System.IO.MemoryMappedFiles": "(,4.3.32767]",
- "System.IO.Pipelines": "(,10.0.32767]",
- "System.IO.Pipes": "(,4.3.32767]",
- "System.IO.Pipes.AccessControl": "(,5.0.32767]",
- "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
- "System.Linq": "(,4.3.32767]",
- "System.Linq.AsyncEnumerable": "(,10.0.32767]",
- "System.Linq.Expressions": "(,4.3.32767]",
- "System.Linq.Parallel": "(,4.3.32767]",
- "System.Linq.Queryable": "(,4.3.32767]",
- "System.Memory": "(,5.0.32767]",
- "System.Net.Http": "(,4.3.32767]",
- "System.Net.Http.Json": "(,10.0.32767]",
- "System.Net.NameResolution": "(,4.3.32767]",
- "System.Net.NetworkInformation": "(,4.3.32767]",
- "System.Net.Ping": "(,4.3.32767]",
- "System.Net.Primitives": "(,4.3.32767]",
- "System.Net.Requests": "(,4.3.32767]",
- "System.Net.Security": "(,4.3.32767]",
- "System.Net.ServerSentEvents": "(,10.0.32767]",
- "System.Net.Sockets": "(,4.3.32767]",
- "System.Net.WebHeaderCollection": "(,4.3.32767]",
- "System.Net.WebSockets": "(,4.3.32767]",
- "System.Net.WebSockets.Client": "(,4.3.32767]",
- "System.Numerics.Vectors": "(,5.0.32767]",
- "System.ObjectModel": "(,4.3.32767]",
- "System.Private.DataContractSerialization": "(,4.3.32767]",
- "System.Private.Uri": "(,4.3.32767]",
- "System.Reflection": "(,4.3.32767]",
- "System.Reflection.DispatchProxy": "(,6.0.32767]",
- "System.Reflection.Emit": "(,4.7.32767]",
- "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
- "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
- "System.Reflection.Extensions": "(,4.3.32767]",
- "System.Reflection.Metadata": "(,10.0.32767]",
- "System.Reflection.Primitives": "(,4.3.32767]",
- "System.Reflection.TypeExtensions": "(,4.3.32767]",
- "System.Resources.Reader": "(,4.3.32767]",
- "System.Resources.ResourceManager": "(,4.3.32767]",
- "System.Resources.Writer": "(,4.3.32767]",
- "System.Runtime": "(,4.3.32767]",
- "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
- "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
- "System.Runtime.Extensions": "(,4.3.32767]",
- "System.Runtime.Handles": "(,4.3.32767]",
- "System.Runtime.InteropServices": "(,4.3.32767]",
- "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
- "System.Runtime.Loader": "(,4.3.32767]",
- "System.Runtime.Numerics": "(,4.3.32767]",
- "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
- "System.Runtime.Serialization.Json": "(,4.3.32767]",
- "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
- "System.Runtime.Serialization.Xml": "(,4.3.32767]",
- "System.Security.AccessControl": "(,6.0.32767]",
- "System.Security.Claims": "(,4.3.32767]",
- "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
- "System.Security.Cryptography.Cng": "(,5.0.32767]",
- "System.Security.Cryptography.Csp": "(,4.3.32767]",
- "System.Security.Cryptography.Encoding": "(,4.3.32767]",
- "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
- "System.Security.Cryptography.Primitives": "(,4.3.32767]",
- "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
- "System.Security.Cryptography.Xml": "(,10.0.32767]",
- "System.Security.Principal": "(,4.3.32767]",
- "System.Security.Principal.Windows": "(,5.0.32767]",
- "System.Security.SecureString": "(,4.3.32767]",
- "System.Text.Encoding": "(,4.3.32767]",
- "System.Text.Encoding.CodePages": "(,10.0.32767]",
- "System.Text.Encoding.Extensions": "(,4.3.32767]",
- "System.Text.Encodings.Web": "(,10.0.32767]",
- "System.Text.Json": "(,10.0.32767]",
- "System.Text.RegularExpressions": "(,4.3.32767]",
- "System.Threading": "(,4.3.32767]",
- "System.Threading.AccessControl": "(,10.0.32767]",
- "System.Threading.Channels": "(,10.0.32767]",
- "System.Threading.Overlapped": "(,4.3.32767]",
- "System.Threading.RateLimiting": "(,10.0.32767]",
- "System.Threading.Tasks": "(,4.3.32767]",
- "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
- "System.Threading.Tasks.Extensions": "(,5.0.32767]",
- "System.Threading.Tasks.Parallel": "(,4.3.32767]",
- "System.Threading.Thread": "(,4.3.32767]",
- "System.Threading.ThreadPool": "(,4.3.32767]",
- "System.Threading.Timer": "(,4.3.32767]",
- "System.ValueTuple": "(,4.5.32767]",
- "System.Xml.ReaderWriter": "(,4.3.32767]",
- "System.Xml.XDocument": "(,4.3.32767]",
- "System.Xml.XmlDocument": "(,4.3.32767]",
- "System.Xml.XmlSerializer": "(,4.3.32767]",
- "System.Xml.XPath": "(,4.3.32767]",
- "System.Xml.XPath.XDocument": "(,5.0.32767]"
- }
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/obj/DouwcoWebsite.csproj.nuget.g.props b/obj/DouwcoWebsite.csproj.nuget.g.props
deleted file mode 100644
index f21d13c..0000000
--- a/obj/DouwcoWebsite.csproj.nuget.g.props
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- /home/douwe/.nuget/packages/
- /home/douwe/.nuget/packages/
- PackageReference
- 7.0.0
-
-
-
-
-
\ No newline at end of file
diff --git a/obj/DouwcoWebsite.csproj.nuget.g.targets b/obj/DouwcoWebsite.csproj.nuget.g.targets
deleted file mode 100644
index 3dc06ef..0000000
--- a/obj/DouwcoWebsite.csproj.nuget.g.targets
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/obj/project.assets.json b/obj/project.assets.json
deleted file mode 100644
index 813e383..0000000
--- a/obj/project.assets.json
+++ /dev/null
@@ -1,490 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net10.0": {}
- },
- "libraries": {},
- "projectFileDependencyGroups": {
- "net10.0": []
- },
- "packageFolders": {
- "/home/douwe/.nuget/packages/": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj",
- "projectName": "DouwcoWebsite",
- "projectPath": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj",
- "packagesPath": "/home/douwe/.nuget/packages/",
- "outputPath": "/mnt/douwe/hdd/Projects/douwco_website/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/home/douwe/.nuget/NuGet/NuGet.Config"
- ],
- "originalTargetFrameworks": [
- "net10.0"
- ],
- "sources": {
- "/usr/lib/dotnet/library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net10.0": {
- "targetAlias": "net10.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "all"
- },
- "SdkAnalysisLevel": "10.0.100"
- },
- "frameworks": {
- "net10.0": {
- "targetAlias": "net10.0",
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.AspNetCore.App": {
- "privateAssets": "none"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/10.0.104/PortableRuntimeIdentifierGraph.json",
- "packagesToPrune": {
- "Microsoft.AspNetCore": "(,10.0.32767]",
- "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
- "Microsoft.AspNetCore.App": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
- "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
- "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
- "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
- "Microsoft.AspNetCore.Cors": "(,10.0.32767]",
- "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
- "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
- "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
- "Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
- "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
- "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
- "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
- "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
- "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
- "Microsoft.AspNetCore.Identity": "(,10.0.32767]",
- "Microsoft.AspNetCore.Localization": "(,10.0.32767]",
- "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
- "Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
- "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
- "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
- "Microsoft.AspNetCore.Razor": "(,10.0.32767]",
- "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
- "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
- "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
- "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
- "Microsoft.AspNetCore.Routing": "(,10.0.32767]",
- "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
- "Microsoft.AspNetCore.Session": "(,10.0.32767]",
- "Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
- "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
- "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
- "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
- "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
- "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
- "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
- "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
- "Microsoft.CSharp": "(,4.7.32767]",
- "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
- "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
- "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
- "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Features": "(,10.0.32767]",
- "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
- "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
- "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
- "Microsoft.Extensions.Hosting": "(,10.0.32767]",
- "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Http": "(,10.0.32767]",
- "Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
- "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
- "Microsoft.Extensions.Localization": "(,10.0.32767]",
- "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Logging": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
- "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
- "Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
- "Microsoft.Extensions.Options": "(,10.0.32767]",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
- "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
- "Microsoft.Extensions.Primitives": "(,10.0.32767]",
- "Microsoft.Extensions.Validation": "(,10.0.32767]",
- "Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
- "Microsoft.JSInterop": "(,10.0.32767]",
- "Microsoft.Net.Http.Headers": "(,10.0.32767]",
- "Microsoft.VisualBasic": "(,10.4.32767]",
- "Microsoft.Win32.Primitives": "(,4.3.32767]",
- "Microsoft.Win32.Registry": "(,5.0.32767]",
- "runtime.any.System.Collections": "(,4.3.32767]",
- "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
- "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
- "runtime.any.System.Globalization": "(,4.3.32767]",
- "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
- "runtime.any.System.IO": "(,4.3.32767]",
- "runtime.any.System.Reflection": "(,4.3.32767]",
- "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
- "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
- "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
- "runtime.any.System.Runtime": "(,4.3.32767]",
- "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
- "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
- "runtime.any.System.Text.Encoding": "(,4.3.32767]",
- "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
- "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
- "runtime.any.System.Threading.Timer": "(,4.3.32767]",
- "runtime.aot.System.Collections": "(,4.3.32767]",
- "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
- "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
- "runtime.aot.System.Globalization": "(,4.3.32767]",
- "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
- "runtime.aot.System.IO": "(,4.3.32767]",
- "runtime.aot.System.Reflection": "(,4.3.32767]",
- "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
- "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
- "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
- "runtime.aot.System.Runtime": "(,4.3.32767]",
- "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
- "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
- "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
- "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
- "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
- "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
- "runtime.unix.System.Console": "(,4.3.32767]",
- "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
- "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
- "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
- "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
- "runtime.unix.System.Private.Uri": "(,4.3.32767]",
- "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
- "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
- "runtime.win.System.Console": "(,4.3.32767]",
- "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
- "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
- "runtime.win.System.Net.Primitives": "(,4.3.32767]",
- "runtime.win.System.Net.Sockets": "(,4.3.32767]",
- "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
- "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win7.System.Private.Uri": "(,4.3.32767]",
- "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "System.AppContext": "(,4.3.32767]",
- "System.Buffers": "(,5.0.32767]",
- "System.Collections": "(,4.3.32767]",
- "System.Collections.Concurrent": "(,4.3.32767]",
- "System.Collections.Immutable": "(,10.0.32767]",
- "System.Collections.NonGeneric": "(,4.3.32767]",
- "System.Collections.Specialized": "(,4.3.32767]",
- "System.ComponentModel": "(,4.3.32767]",
- "System.ComponentModel.Annotations": "(,4.3.32767]",
- "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
- "System.ComponentModel.Primitives": "(,4.3.32767]",
- "System.ComponentModel.TypeConverter": "(,4.3.32767]",
- "System.Console": "(,4.3.32767]",
- "System.Data.Common": "(,4.3.32767]",
- "System.Data.DataSetExtensions": "(,4.4.32767]",
- "System.Diagnostics.Contracts": "(,4.3.32767]",
- "System.Diagnostics.Debug": "(,4.3.32767]",
- "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
- "System.Diagnostics.EventLog": "(,10.0.32767]",
- "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
- "System.Diagnostics.Process": "(,4.3.32767]",
- "System.Diagnostics.StackTrace": "(,4.3.32767]",
- "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
- "System.Diagnostics.Tools": "(,4.3.32767]",
- "System.Diagnostics.TraceSource": "(,4.3.32767]",
- "System.Diagnostics.Tracing": "(,4.3.32767]",
- "System.Drawing.Primitives": "(,4.3.32767]",
- "System.Dynamic.Runtime": "(,4.3.32767]",
- "System.Formats.Asn1": "(,10.0.32767]",
- "System.Formats.Cbor": "(,10.0.32767]",
- "System.Formats.Tar": "(,10.0.32767]",
- "System.Globalization": "(,4.3.32767]",
- "System.Globalization.Calendars": "(,4.3.32767]",
- "System.Globalization.Extensions": "(,4.3.32767]",
- "System.IO": "(,4.3.32767]",
- "System.IO.Compression": "(,4.3.32767]",
- "System.IO.Compression.ZipFile": "(,4.3.32767]",
- "System.IO.FileSystem": "(,4.3.32767]",
- "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
- "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
- "System.IO.FileSystem.Primitives": "(,4.3.32767]",
- "System.IO.FileSystem.Watcher": "(,4.3.32767]",
- "System.IO.IsolatedStorage": "(,4.3.32767]",
- "System.IO.MemoryMappedFiles": "(,4.3.32767]",
- "System.IO.Pipelines": "(,10.0.32767]",
- "System.IO.Pipes": "(,4.3.32767]",
- "System.IO.Pipes.AccessControl": "(,5.0.32767]",
- "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
- "System.Linq": "(,4.3.32767]",
- "System.Linq.AsyncEnumerable": "(,10.0.32767]",
- "System.Linq.Expressions": "(,4.3.32767]",
- "System.Linq.Parallel": "(,4.3.32767]",
- "System.Linq.Queryable": "(,4.3.32767]",
- "System.Memory": "(,5.0.32767]",
- "System.Net.Http": "(,4.3.32767]",
- "System.Net.Http.Json": "(,10.0.32767]",
- "System.Net.NameResolution": "(,4.3.32767]",
- "System.Net.NetworkInformation": "(,4.3.32767]",
- "System.Net.Ping": "(,4.3.32767]",
- "System.Net.Primitives": "(,4.3.32767]",
- "System.Net.Requests": "(,4.3.32767]",
- "System.Net.Security": "(,4.3.32767]",
- "System.Net.ServerSentEvents": "(,10.0.32767]",
- "System.Net.Sockets": "(,4.3.32767]",
- "System.Net.WebHeaderCollection": "(,4.3.32767]",
- "System.Net.WebSockets": "(,4.3.32767]",
- "System.Net.WebSockets.Client": "(,4.3.32767]",
- "System.Numerics.Vectors": "(,5.0.32767]",
- "System.ObjectModel": "(,4.3.32767]",
- "System.Private.DataContractSerialization": "(,4.3.32767]",
- "System.Private.Uri": "(,4.3.32767]",
- "System.Reflection": "(,4.3.32767]",
- "System.Reflection.DispatchProxy": "(,6.0.32767]",
- "System.Reflection.Emit": "(,4.7.32767]",
- "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
- "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
- "System.Reflection.Extensions": "(,4.3.32767]",
- "System.Reflection.Metadata": "(,10.0.32767]",
- "System.Reflection.Primitives": "(,4.3.32767]",
- "System.Reflection.TypeExtensions": "(,4.3.32767]",
- "System.Resources.Reader": "(,4.3.32767]",
- "System.Resources.ResourceManager": "(,4.3.32767]",
- "System.Resources.Writer": "(,4.3.32767]",
- "System.Runtime": "(,4.3.32767]",
- "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
- "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
- "System.Runtime.Extensions": "(,4.3.32767]",
- "System.Runtime.Handles": "(,4.3.32767]",
- "System.Runtime.InteropServices": "(,4.3.32767]",
- "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
- "System.Runtime.Loader": "(,4.3.32767]",
- "System.Runtime.Numerics": "(,4.3.32767]",
- "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
- "System.Runtime.Serialization.Json": "(,4.3.32767]",
- "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
- "System.Runtime.Serialization.Xml": "(,4.3.32767]",
- "System.Security.AccessControl": "(,6.0.32767]",
- "System.Security.Claims": "(,4.3.32767]",
- "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
- "System.Security.Cryptography.Cng": "(,5.0.32767]",
- "System.Security.Cryptography.Csp": "(,4.3.32767]",
- "System.Security.Cryptography.Encoding": "(,4.3.32767]",
- "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
- "System.Security.Cryptography.Primitives": "(,4.3.32767]",
- "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
- "System.Security.Cryptography.Xml": "(,10.0.32767]",
- "System.Security.Principal": "(,4.3.32767]",
- "System.Security.Principal.Windows": "(,5.0.32767]",
- "System.Security.SecureString": "(,4.3.32767]",
- "System.Text.Encoding": "(,4.3.32767]",
- "System.Text.Encoding.CodePages": "(,10.0.32767]",
- "System.Text.Encoding.Extensions": "(,4.3.32767]",
- "System.Text.Encodings.Web": "(,10.0.32767]",
- "System.Text.Json": "(,10.0.32767]",
- "System.Text.RegularExpressions": "(,4.3.32767]",
- "System.Threading": "(,4.3.32767]",
- "System.Threading.AccessControl": "(,10.0.32767]",
- "System.Threading.Channels": "(,10.0.32767]",
- "System.Threading.Overlapped": "(,4.3.32767]",
- "System.Threading.RateLimiting": "(,10.0.32767]",
- "System.Threading.Tasks": "(,4.3.32767]",
- "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
- "System.Threading.Tasks.Extensions": "(,5.0.32767]",
- "System.Threading.Tasks.Parallel": "(,4.3.32767]",
- "System.Threading.Thread": "(,4.3.32767]",
- "System.Threading.ThreadPool": "(,4.3.32767]",
- "System.Threading.Timer": "(,4.3.32767]",
- "System.ValueTuple": "(,4.5.32767]",
- "System.Xml.ReaderWriter": "(,4.3.32767]",
- "System.Xml.XDocument": "(,4.3.32767]",
- "System.Xml.XmlDocument": "(,4.3.32767]",
- "System.Xml.XmlSerializer": "(,4.3.32767]",
- "System.Xml.XPath": "(,4.3.32767]",
- "System.Xml.XPath.XDocument": "(,5.0.32767]"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
deleted file mode 100644
index ecc7d10..0000000
--- a/obj/project.nuget.cache
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "K7EZLIpqT8U=",
- "success": true,
- "projectFilePath": "/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.csproj",
- "expectedPackageFiles": [],
- "logs": []
-}
\ No newline at end of file
diff --git a/server/main.cpp b/server/main.cpp
new file mode 100644
index 0000000..ac1375f
--- /dev/null
+++ b/server/main.cpp
@@ -0,0 +1,6 @@
+#include
+
+int main(){
+ std::cout << "Hello World!" << std::endl;
+ return 0;
+}
\ No newline at end of file