commit 6aae28d210e3cd9455d676e349b3ee96d7fa3807 Author: Said Date: Wed Aug 5 21:16:01 2026 +0300 Initial commit - ECommerce.RCL diff --git a/Component1.razor b/Component1.razor new file mode 100644 index 0000000..82d50ac --- /dev/null +++ b/Component1.razor @@ -0,0 +1,3 @@ +
+ This component is defined in the AuthLib library. +
\ No newline at end of file diff --git a/Component1.razor.css b/Component1.razor.css new file mode 100644 index 0000000..c6afca4 --- /dev/null +++ b/Component1.razor.css @@ -0,0 +1,6 @@ +.my-component { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/Components/CategoryTreeSelect.razor b/Components/CategoryTreeSelect.razor new file mode 100644 index 0000000..1c373c4 --- /dev/null +++ b/Components/CategoryTreeSelect.razor @@ -0,0 +1,288 @@ +@using Commerce.Contracts.DTOs +@inject CategoryAPIConsumer CategoryService + +
+ + + @if (_isOpen) + { + +
+ +
+ +
+ + + @for (int i = 0; i < _path.Count; i++) + { + var index = i; + var step = _path[i]; +
+ + + + +
+ } +
+ + +
+ @if (_loading) + { +
+ + Loading categories... +
+ } + else if (!string.IsNullOrEmpty(_error)) + { +
+ + + + @_error + +
+ } + else if (_activeCategories == null || !_activeCategories.Any()) + { +
No categories found in this level
+ } + else + { +
+ @foreach (var cat in _activeCategories) + { +
+
+
+
+
+ @cat.Translations?.FirstOrDefault()?.Info?.Name + ?? string.Empty) + @if (cat.Id == Value) + { + Selected + } +
+
+ + @if (cat.ChildCategories?.Any() == true) + { + + } +
+ } +
+ } +
+ + +
+ Total: @(_tree.Count) roots +
+ + +
+
+
+ } +
+ + + +@code { + [Parameter] public Guid? Value { get; set; } + [Parameter] public EventCallback ValueChanged { get; set; } + [Parameter] public string Placeholder { get; set; } = "Select Category"; + [Parameter] public List? DisallowedIds { get; set; } + [Parameter] public bool ShowBundles { get; set; } = true; + + private List _tree = new(); + private List _path = new(); + private int _activeLevel = 0; + private bool _isOpen = false; + private bool _loading = true; + private string? _error; + + private List _activeCategories => GetCategoriesForLevel(_activeLevel); + + private CategoryVM? SelectedCategory; + + protected override async Task OnInitializedAsync() + { + await LoadTree(); + } + + protected override async Task OnParametersSetAsync() + { + await UpdateSelectedCategory(); + } + + private async Task LoadTree() + { + _loading = true; + _error = null; + try + { + _tree = await CategoryService.FetchCategoryTree(); + await UpdateSelectedCategory(); + } + catch (Exception ex) + { + _error = "Failed to load categories hierarchy."; + Console.WriteLine($"Error loading category tree: {ex.Message}"); + } + finally + { + _loading = false; + } + } + + private async Task UpdateSelectedCategory() + { + if (Value.HasValue) + { + SelectedCategory = FindInCategoryTree(_tree, Value.Value); + } + else + { + SelectedCategory = null; + } + } + + private CategoryVM? FindInCategoryTree(List categories, Guid id) + { + foreach (var cat in categories) + { + if (cat.Id == id) return cat; + if (cat.ChildCategories != null) + { + var found = FindInCategoryTree(cat.ChildCategories.ToList(), id); + if (found != null) return found; + } + } + return null; + } + + private List GetCategoriesForLevel(int level) + { + var cats = level == 0 ? _tree : _path[level - 1].ChildCategories?.ToList(); + + if (cats != null) + { + if (DisallowedIds != null) + { + cats = cats.Where(x => !DisallowedIds.Contains(x.Id ?? Guid.Empty)).ToList(); + } + + if (!ShowBundles) + { + cats = cats.Where(x => !x.IsBundle).ToList(); + } + } + + return cats ?? new List(); + } + + private void ToggleDropdown() => _isOpen = !_isOpen; + + private void SetLevel(int level) + { + _activeLevel = level; + if (level <= _path.Count) + { + _path = _path.Take(level).ToList(); + } + } + + private async Task SelectValue(CategoryVM category) + { + Value = category.Id; + await ValueChanged.InvokeAsync(Value); + SelectedCategory = category; + StateHasChanged(); + } + + private void DrillDown(CategoryVM category) + { + if (category.ChildCategories?.Any() == true) + { + _path.Add(category); + _activeLevel = _path.Count; + } + } + + private async Task ClearSelection() + { + Value = null; + await ValueChanged.InvokeAsync(Value); + SelectedCategory = null; + _path.Clear(); + _activeLevel = 0; + } +} \ No newline at end of file diff --git a/Components/Pages/Category/CategoryTreeItem.razor b/Components/Pages/Category/CategoryTreeItem.razor new file mode 100644 index 0000000..9499041 --- /dev/null +++ b/Components/Pages/Category/CategoryTreeItem.razor @@ -0,0 +1,94 @@ +@using Commerce.Contracts.DTOs + +
+ +
+ +
+ @if (Category.Photos?.Any() == true) + { + @Category.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) + } + else + { +
+ + + +
+ } +
+ + +
+
+ @Category.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) + @if (Category.IsBundle) + { + Bundle + } +
+ + +
+ @if (IsAdmin) + { + + } + else + { + + Visit + + } + + @if (Category.ChildCategories?.Any() == true) + { + + } + else + { +
@* Spacer to align cards *@ + } +
+
+
+ + + @if (_expanded && Category.ChildCategories?.Any() == true) + { +
+ @foreach (var child in Category.ChildCategories) + { + + } +
+ } +
+ +@code { + [Parameter] public CategoryVM Category { get; set; } = new(); + [Parameter] public EventCallback OnEdit { get; set; } + [Parameter] public bool IsAdmin { get; set; } = true; + + private bool _expanded = false; + + private void ToggleExpand() => _expanded = !_expanded; +} \ No newline at end of file diff --git a/Components/Pages/Category/ManageCategory.razor b/Components/Pages/Category/ManageCategory.razor new file mode 100644 index 0000000..d29eefe --- /dev/null +++ b/Components/Pages/Category/ManageCategory.razor @@ -0,0 +1,352 @@ +@page "/manage-category/{id?}" +@layout AdminLayout +@using Generic.Media.Components +@using Commerce.Contracts.DTOs +@inject CategoryAPIConsumer categoryAPIConsumer +@inject ISnackbar Snackbar + +
+
+

+ @(string.IsNullOrEmpty(Id) ? "Create Category" : "Edit Category") +

+ + +
+ @foreach (var lang in _languages) + { + + } +
+
+ + + + +
+ +
+
+
+
+
+ + + +
+

Configuration

+
+ + +
+ + + +
+ + +
+ +

Groups + multiple products

+
+
+
+ +
+ + +
+
+
+ +
+
+

+ Category Name +
@(_languages[_activeLang])
+

+
+ + +
+ + +
+

+ Description +
@(_languages[_activeLang])
+

+ + +
+ + +
+
+

+ Category Specifications +
@(_languages[_activeLang])
+

+ +
+ +
+ @if (!_technicalDetails.ContainsKey(_activeLang) || + !_technicalDetails[_activeLang].Any()) + { +
+

No specifications for + @(_languages[_activeLang])

+
+ } + else + { + @foreach (var item in _technicalDetails[_activeLang]) + { +
+
+ + +
+
+ +
+
+ +
+ +
+
+
+ } + } +
+
+
+
+ + +
+
+
+
+ + + +
+

Category Media

+
+ +
+
+ + +
+ + +
+
+
+
+
+ +@code { + + [Parameter] + public string? Id { get; set; } + + CategoryVM category = new(); + private EditContext? _editContext; + Media? mediaComponent; + Dictionary _names = new(); + Dictionary _descriptions = new(); + Dictionary> _technicalDetails = new(); + + private string _activeLang = "en"; + private readonly Dictionary _languages = new() + { + { "en", "English" }, + { "ar", "العربية" }, + { "es", "Español" }, + { "de", "Deutsch" } + }; + + protected override async Task OnInitializedAsync() + { + if (!string.IsNullOrEmpty(Id)) + { + category = await categoryAPIConsumer.GetCategory(Id); + } + + // Map from Translations to local dictionaries + foreach(var t in category.Translations ?? new()) + { + _names[t.Language] = t.Info.Name; + _descriptions[t.Language] = t.Info.Description; + _technicalDetails[t.Language] = t.Info.TechnicalDetails?.ToList() ?? new(); + } + + // Ensure supported cultures exist in dictionaries + foreach (var lang in _languages.Keys) + { + if (!_names.ContainsKey(lang)) _names[lang] = ""; + if (!_descriptions.ContainsKey(lang)) _descriptions[lang] = ""; + if (!_technicalDetails.ContainsKey(lang)) _technicalDetails[lang] = new(); + } + + category.Photos ??= Array.Empty(); + + SyncTranslations(); + _editContext = new EditContext(category); + } + + void SyncTranslations() + { + category.Translations = _languages.Keys.Select(lang => new CategoryTranslationVM + { + Language = lang, + Info = new CategoryInfoVM + { + Name = _names.GetValueOrDefault(lang, ""), + Description = _descriptions.GetValueOrDefault(lang, ""), + TechnicalDetails = _technicalDetails.GetValueOrDefault(lang, new()) + } + }).ToList(); + } + + async Task HandleSubmit() + { + SyncTranslations(); + if (_editContext != null && _editContext.Validate()) + { + await OnSubmit(); + } + } + + void AddTechnicalDetail() + { + if (!_technicalDetails.ContainsKey(_activeLang)) + { + _technicalDetails[_activeLang] = new List(); + } + _technicalDetails[_activeLang].Add(new TechnicalDetailVM()); + } + + void RemoveTechnicalDetail(TechnicalDetailVM item) + { + if (_technicalDetails.ContainsKey(_activeLang)) + { + _technicalDetails[_activeLang].Remove(item); + } + } + + async Task OnSubmit() + { + Console.WriteLine("OnSubmit started"); + try + { + if (mediaComponent != null) + { + Console.WriteLine("Starting ProcessUploadsAsync"); + var uploadResult = await mediaComponent.ProcessUploadsAsync(); + Console.WriteLine("ProcessUploadsAsync finished successfully"); + category.Photos = uploadResult.FinalUrls.ToArray(); + } + + SyncTranslations(); + + if (string.IsNullOrEmpty(Id)) + { + Console.WriteLine("Creating category..."); + await categoryAPIConsumer.CreateCategory(category); + ToastService.ShowToast("Category created successfully!", ToastLevel.Success); + ResetForm(); + } + else + { + Console.WriteLine("Updating category..."); + await categoryAPIConsumer.UpdateCategory(category); + ToastService.ShowToast("Category updated successfully!", ToastLevel.Success); + } + } + catch (Exception ex) + { + Console.WriteLine($"Caught exception in OnSubmit: {ex.Message}"); + ToastService.ShowToast($"Error: {ex.Message}", ToastLevel.Error); + } + } + + void ResetForm() + { + category = new(); + _names.Clear(); + _descriptions.Clear(); + _technicalDetails.Clear(); + foreach (var lang in _languages.Keys) + { + _names[lang] = ""; + _descriptions[lang] = ""; + _technicalDetails[lang] = new(); + } + SyncTranslations(); + _editContext = new EditContext(category); + if (mediaComponent != null) + { + mediaComponent.Clear(); + } + } +} \ No newline at end of file diff --git a/Components/Pages/Category/ViewCategories.razor b/Components/Pages/Category/ViewCategories.razor new file mode 100644 index 0000000..a493b76 --- /dev/null +++ b/Components/Pages/Category/ViewCategories.razor @@ -0,0 +1,308 @@ +@page "/admin/categories" +@layout AdminLayout +@using Generic + +@inject CategoryAPIConsumer categoryAPIConsumer +@inject ISnackbar Snackbar +@inject IJSRuntime JS +@inject NavigationManager nav + +
+ +
+
+

Categories

+
+ + +
+
+ + + + + Add Category + +
+ +
+
+
+ +
+ + +
+
+ +
+ + +
+ + +
+
+ + @if (_viewType == ViewType.Table) + { +
+ + + + + + + + + + + + @if (_loading) + { + + + + } + else if (categories == null || !categories.Any()) + { + + + + } + else + { + @foreach (var category in categories) + { + + + + + + + + } + } + +
PicNameTypeActions
+ +
No categories found.
+
+
+ @if (category.Photos != null && category.Photos.Any()) + { + Category image + } + else + { +
+ + + +
+ } +
+
+
@category.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) + @if (category.IsBundle) + { +
Bundle
+ } + else + { +
Category
+ } +
+ + Edit + + +
+
+ +
+ +
+ } + else + { +
+
+ @foreach (var root in _categoryTree) + { + + } +
+
+ } + +
+ +@code { + CategoryFilter categoryFilter = new(); + Pagination pagination = new() { PageSize = 10, CurrentPage = 1 }; + bool _loading = false; + + enum ViewType { Table, Tree } + ViewType _viewType = ViewType.Table; + + List categories = new(); + List _categoryTree = new(); + + protected override async Task OnInitializedAsync() + { + await LoadData(); + } + + async Task LoadData() + { + if (_viewType == ViewType.Table) await LoadCategories(); + else await LoadTree(); + } + + async Task SetView(ViewType type) + { + _viewType = type; + await LoadData(); + } + + async Task LoadCategories() + { + _loading = true; + + try + { + var result = await categoryAPIConsumer.FetchCategory(categoryFilter, pagination); + categories = result.Item1 ?? new List(); + pagination.ItemsCount = result.Item2; + } + catch (Exception ex) + { + Console.WriteLine($"Error loading categories: {ex.Message}"); + categories = new List(); + ToastService.ShowToast("Failed to load categories", ToastLevel.Error); + } + finally + { + _loading = false; + } + } + + async Task LoadTree() + { + _loading = true; + try + { + _categoryTree = await categoryAPIConsumer.FetchCategoryTree(); + } + catch (Exception ex) + { + Console.WriteLine($"Error loading tree: {ex.Message}"); + ToastService.ShowToast("Failed to load category tree", ToastLevel.Error); + } + finally + { + _loading = false; + } + } + + void NavigateToEdit(CategoryVM category) + { + nav.NavigateTo($"/manage-category/{category.Id}"); + } + + async Task HandlePageChange(int page) + { + pagination.CurrentPage = page; + await LoadCategories(); + } + + async Task HandleKeyUp(KeyboardEventArgs e) + { + if (e.Key == "Enter") + { + pagination.CurrentPage = 1; + await LoadCategories(); + } + } + + async Task OnIsBundleChanged(ChangeEventArgs e) + { + var val = e.Value?.ToString(); + if (string.IsNullOrEmpty(val)) categoryFilter.IsBundle = null; + else categoryFilter.IsBundle = bool.Parse(val); + + pagination.CurrentPage = 1; + await LoadCategories(); + } + + async Task ClearFilters() + { + categoryFilter = new(); + pagination.CurrentPage = 1; + await LoadCategories(); + } + + async Task Remove(CategoryVM category) + { + if (category.Id == null) return; + var confirmed = await JS.InvokeAsync("confirm", $"Are you sure you want to delete '{category.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty}'?"); + + if (confirmed) + { + try + { + var isSuccess = await categoryAPIConsumer.DeleteCategory(category.Id.Value.ToString()); + if (isSuccess) + { + ToastService.ShowToast("Category deleted successfully", ToastLevel.Success); + await LoadCategories(); // Reload to refresh list and pagination + } + else + { + ToastService.ShowToast("Failed to delete category", ToastLevel.Error); + } + } + catch (Exception ex) + { + ToastService.ShowToast($"Error: {ex.Message}", ToastLevel.Error); + } + } + } +} \ No newline at end of file diff --git a/Components/Pages/Home.razor b/Components/Pages/Home.razor new file mode 100644 index 0000000..fb33893 --- /dev/null +++ b/Components/Pages/Home.razor @@ -0,0 +1,128 @@ +@page "/" +@inject ProductAPIConsumer productService +@inject CategoryAPIConsumer categoryService + + + +
+ @if (CarouselData != null && CarouselData.Any()) + { + + } +
+ + + +
+ +

@Loc["Production_Lines"] +

+ +
+ @foreach (var bundle in RandomBundles) + { + + } +
+ + + +
+ + + + +
+ +

@Loc["Our_Categories"] +

+ +
+ @foreach (var category in RandomCategories.Take(4)) + { + + } +
+ + + +
+ + + +
+

@Loc["Our_Products"]

+ +
+ @foreach (var product in RandomProducts.Take(3)) + { + + } +
+ + + +
+ + + + + + +@code { + List RandomProducts = new(); + List RandomBundles = new(); + List RandomCategories = new(); + List<(string Text, string ImageUrl)> CarouselData = new(); + + protected override async Task OnInitializedAsync() + { + // Populate Carousel with Data + CarouselData = new List<(string Text, string ImageUrl)> +{ +(Loc["Welcome_to_Our_Shop"], "https://img.daisyui.com/images/stock/photo-1507358522600-9f71e620c44e.webp"), +(Loc["Best_Quality_Products"], "https://img.daisyui.com/images/stock/photo-1559181567-c3190ca9959b.webp"), +(Loc["Amazing_Deals"], "https://img.daisyui.com/images/stock/photo-1601004890684-d8cbf643f5f2.webp") +}; + + RandomProducts = (await productService.FetchProduct(new ProductFilter { Random = true }, new Pagination() + { + PageSize = 3, + CurrentPage = 1 + })).Item1; + + // Fetch real bundles + var bundleResult = (await productService.FetchProduct(new ProductFilter { IsBundle = true, Random = true }, new + Pagination + { + PageSize = 4, + CurrentPage = 1 + })).Item1; + RandomBundles = bundleResult; + + RandomCategories = (await categoryService.FetchCategory(new CategoryFilter { Random = true }, new Pagination() + { + CurrentPage = 1, + PageSize = 4 + })).Item1; + } +} \ No newline at end of file diff --git a/Components/Pages/Product/ManageProduct.razor b/Components/Pages/Product/ManageProduct.razor new file mode 100644 index 0000000..499de4d --- /dev/null +++ b/Components/Pages/Product/ManageProduct.razor @@ -0,0 +1,566 @@ +@page "/manage-product/{id?}" +@layout AdminLayout +@using Generic +@using Commerce.Contracts.DTOs +@inject ProductAPIConsumer productAPIConsumer +@inject CategoryAPIConsumer categoryAPIConsumer +@inject IToastService ToastService + +
+
+

+ @(string.IsNullOrEmpty(Id) ? "Add New Product" : "Edit Product") +

+ + +
+ @foreach (var lang in _languages) + { + + } +
+
+ + + + +
+ +
+ +
+
+
+
+ + + + +
+

Product Settings

+
+ + +
+ + + +
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ + +
+ +

Enable + to compose from other products

+
+
+
+ + +
+ + +
+ +
+
+ +
+
+

+ Product Name +
@(_languages[_activeLang])
+

+
+ + +
+ + +
+

+ Description +
@(_languages[_activeLang])
+

+ + +
+ + +
+
+

+ Product Specifications +
@(_languages[_activeLang])
+

+ +
+ +
+ @if (!_technicalDetails.ContainsKey(_activeLang) || + !_technicalDetails[_activeLang].Any()) + { +
+

No specifications for + @(_languages[_activeLang])

+
+ } + else + { + @foreach (var item in _technicalDetails[_activeLang]) + { +
+
+ + +
+
+ +
+
+ +
+ +
+
+
+ } + } +
+
+
+
+ + +
+
+
+
+ + + +
+

Product Media

+
+ +
+
+ + + @if (product.IsBundle) + { +
+
+

+ + + + Bundle Composition +

+
+
+ +
+

Included + Products (@(product.ChildProducts?.Count ?? 0))

+ @if (product.ChildProducts == null || !product.ChildProducts.Any()) + { +
+ + + + No products added. Search and add below. +
+ } + else + { +
+ @foreach (var item in product.ChildProducts) + { +
+
+
+ @if (item.Photos?.Any() == true) + { + + } +
+
+ @item.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) + @item.Price?.ToString("C") +
+
+ +
+ } +
+ } +
+ + +
+

Find & Add + Products

+
+
+ +
+ @if (_isSearching) + { + + } + else + { + + + + } +
+
+
+ +
+
+ + @if (_searchResults != null && _searchResults.Any()) + { +
+ @foreach (var res in _searchResults) + { +
+
+
+ @if (res.Photos?.Any() == true) + { + + } +
+
+ @res.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) + @res.Price?.ToString("C") +
+
+ +
+ } +
+ } +
+
+
+ } + + +
+ + +
+
+
+
+
+ +@code { + + [Parameter] + public string? Id { get; set; } + + ProductVM product = new(); + private EditContext? _editContext; + Media? mediaComponent; + + // Search state + ProductFilter searchFilter = new() { IsBundle = false }; + Dictionary _names = new(); + Dictionary _descriptions = new(); + Dictionary> _technicalDetails = new(); + + List _searchResults = new(); + bool _isSearching = false; + + private string _activeLang = "en"; + private readonly Dictionary _languages = new() +{ +{ "en", "English" }, +{ "ar", "العربية" }, +{ "es", "Español" }, +{ "de", "Deutsch" } +}; + + protected override async Task OnInitializedAsync() + { + if (!string.IsNullOrEmpty(Id)) + { + product = await productAPIConsumer.GetProduct(Id); + } + + // Map from Translations to local dictionaries + foreach (var t in product.Translations ?? new()) + { + _names[t.Language] = t.Info.Name; + _descriptions[t.Language] = t.Info.Description; + _technicalDetails[t.Language] = t.Info.TechnicalDetails?.ToList() ?? new(); + } + + // Ensure supported cultures exist in dictionaries + foreach (var lang in _languages.Keys) + { + if (!_names.ContainsKey(lang)) _names[lang] = ""; + if (!_descriptions.ContainsKey(lang)) _descriptions[lang] = ""; + if (!_technicalDetails.ContainsKey(lang)) _technicalDetails[lang] = new(); + } + + product.Photos ??= Array.Empty(); + product.ChildProducts ??= new List(); + + SyncTranslations(); + _editContext = new EditContext(product); + } + + void SyncTranslations() + { + product.Translations = _languages.Keys.Select(lang => new ProductTranslationVM + { + Language = lang, + Info = new ProductInfoVM + { + Name = _names.GetValueOrDefault(lang, ""), + Description = _descriptions.GetValueOrDefault(lang, ""), + TechnicalDetails = _technicalDetails.GetValueOrDefault(lang, new()) + } + }).ToList(); + } + + async Task HandleSubmit() + { + SyncTranslations(); + if (_editContext != null && _editContext.Validate()) + { + await OnSubmit(); + } + } + + + void AddTechnicalDetail() + { + if (!_technicalDetails.ContainsKey(_activeLang)) + { + _technicalDetails[_activeLang] = new List(); + } + _technicalDetails[_activeLang].Add(new TechnicalDetailVM()); + } + + void RemoveTechnicalDetail(TechnicalDetailVM item) + { + if (_technicalDetails.ContainsKey(_activeLang)) + { + _technicalDetails[_activeLang].Remove(item); + } + } + + async Task HandleSearchKeyUp() + { + await SearchProducts(); + } + + async Task SearchProducts() + { + if (string.IsNullOrWhiteSpace(searchFilter.Name) && !searchFilter.CategoryId.HasValue) + { + _searchResults.Clear(); + return; + } + + _isSearching = true; + try + { + var (results, _) = await productAPIConsumer.FetchProduct(searchFilter, new Pagination { PageSize = 10, CurrentPage = 1 }); + // Filter out the current product itself to avoid circular bundles if it already exists + _searchResults = results.Where(x => x.Id != product.Id).ToList(); + } + finally + { + _isSearching = false; + } + } + + void AddToBundle(ProductVM item) + { + if (product.ChildProducts == null) product.ChildProducts = new List(); + if (!product.ChildProducts.Any(x => x.Id == item.Id)) + { + product.ChildProducts.Add(item); + _searchResults.Clear(); + searchFilter.Name = ""; + } + } + + void RemoveFromBundle(ProductVM item) + { + if (product.ChildProducts != null) + { + product.ChildProducts.Remove(item); + } + } + + async Task OnSubmit() + { + Console.WriteLine("OnSubmit started"); + try + { + if (mediaComponent != null) + { + Console.WriteLine("Starting ProcessUploadsAsync"); + var uploadResult = await mediaComponent.ProcessUploadsAsync(); + Console.WriteLine("ProcessUploadsAsync finished successfully"); + product.Photos = uploadResult.FinalUrls.ToArray(); + } + + SyncTranslations(); + + if (string.IsNullOrEmpty(Id)) + { + Console.WriteLine("Creating product..."); + await productAPIConsumer.CreateProduct(product); + ToastService.ShowToast("Product added successfully!", ToastLevel.Success); + ResetForm(); + } + else + { + Console.WriteLine("Updating product..."); + await productAPIConsumer.UpdateProduct(product); + ToastService.ShowToast("Product updated successfully!", ToastLevel.Success); + } + } + catch (Exception ex) + { + Console.WriteLine($"Caught exception in OnSubmit: {ex.Message}"); + ToastService.ShowToast($"Error: {ex.Message}", ToastLevel.Error); + } + } + + void ResetForm() + { + product = new(); + _names.Clear(); + _descriptions.Clear(); + _technicalDetails.Clear(); + foreach (var lang in _languages.Keys) + { + _names[lang] = ""; + _descriptions[lang] = ""; + _technicalDetails[lang] = new(); + } + SyncTranslations(); + _editContext = new EditContext(product); + if (mediaComponent != null) + { + mediaComponent.Clear(); + } + } +} \ No newline at end of file diff --git a/Components/Pages/Product/ViewProducts.razor b/Components/Pages/Product/ViewProducts.razor new file mode 100644 index 0000000..0da365d --- /dev/null +++ b/Components/Pages/Product/ViewProducts.razor @@ -0,0 +1,196 @@ +@page "/admin/products" +@layout AdminLayout +@using Generic + +@inject ProductAPIConsumer productAPIConsumer +@inject ISnackbar Snackbar +@inject IJSRuntime JS + +
+ +
+

Manage Products

+ Add Product +
+ +
+
+
+ +
+ + +
+
+ + +
+
+ +
+ + + + + + + + + + + + @if (_loading) + { + + + + } + else if (products == null || !products.Any()) + { + + + + } + else + { + @foreach (var product in products) + { + + + + + + + + } + } + +
PicNamePriceActions
+ +
No products found.
+
+
+ @if (product.Photos != null && product.Photos.Any()) + { + Product image + } + else + { +
+ + + +
+ } +
+
+
@product.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty)@product.Price?.ToString("C") + + Edit + + +
+
+ +
+ +
+ +
+ +@code { + ProductFilter productFilter = new(); + Pagination pagination = new() { PageSize = 10, CurrentPage = 1 }; + bool _loading = false; + + List products = new(); + + protected override async Task OnInitializedAsync() + { + await LoadProducts(); + } + + async Task LoadProducts() + { + _loading = true; + + try + { + var result = await productAPIConsumer.FetchProduct(productFilter, pagination); + products = result.Item1 ?? new List(); + pagination.ItemsCount = result.Item2; + } + catch (Exception ex) + { + Console.WriteLine($"Error loading products: {ex.Message}"); + products = new List(); + ToastService.ShowToast("Failed to load products", ToastLevel.Error); + } + finally + { + _loading = false; + } + } + + async Task HandlePageChange(int page) + { + pagination.CurrentPage = page; + await LoadProducts(); + } + + async Task HandleKeyUp(KeyboardEventArgs e) + { + if (e.Key == "Enter") + { + pagination.CurrentPage = 1; + await LoadProducts(); + } + } + + async Task ClearFilters() + { + productFilter = new(); + pagination.CurrentPage = 1; + await LoadProducts(); + } + + async Task Remove(ProductVM product) + { + var confirmed = await JS.InvokeAsync("confirm", $"Are you sure you want to delete '{product.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty}'?"); + + if (confirmed) + { + if (product.Id == null) return; + try + { + var isSuccess = await productAPIConsumer.DeleteProduct(product.Id.Value.ToString()); + if (isSuccess) + { + ToastService.ShowToast("Product deleted successfully", ToastLevel.Success); + await LoadProducts(); // Reload to refresh list and pagination + } + else + { + ToastService.ShowToast("Failed to delete product", ToastLevel.Error); + } + } + catch (Exception ex) + { + ToastService.ShowToast($"Error: {ex.Message}", ToastLevel.Error); + } + } + } +} \ No newline at end of file diff --git a/Components/Pages/Shop/Components/BundleComp.razor b/Components/Pages/Shop/Components/BundleComp.razor new file mode 100644 index 0000000..fdc10f6 --- /dev/null +++ b/Components/Pages/Shop/Components/BundleComp.razor @@ -0,0 +1,17 @@ + + +
+
+

@Bundle.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty)

+

@Bundle.Translations?.FirstOrDefault()?.Info?.Description ?? string.Empty)

+
+
+@code { + + [Parameter] + public ProductVM Bundle { get; set; } + + + +} \ No newline at end of file diff --git a/Components/Pages/Shop/Components/CategoryComp.razor b/Components/Pages/Shop/Components/CategoryComp.razor new file mode 100644 index 0000000..55af489 --- /dev/null +++ b/Components/Pages/Shop/Components/CategoryComp.razor @@ -0,0 +1,54 @@ +@inject NavigationManager nav +@using ECommerceModule.Services +@inject ShopStateService ShopStateService + + + +@code { + + [Parameter] + public CategoryVM Category { get; set; } + + async Task NavTo() + { + await ShopStateService.SetCategoryId(Category.Id); + if (Category.IsBundle) + nav.NavigateTo("/bundles"); + else + nav.NavigateTo("/products"); + } + +} + +@* + + +
+
+

@Category.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty)

+

@Category.Translations?.FirstOrDefault()?.Info?.Description ?? string.Empty)

+
+
+@code{ + +[Parameter] +public Category Category {get; set;} + + +href="@(Category.IsBundle ? $"bundles?category={Category.Id}&pagesize=12¤tpage=1" : +$"products?category={Category.Id}&pagesize=12¤tpage=1")" + +} *@ \ No newline at end of file diff --git a/Components/Pages/Shop/Components/CategoryComp1.razor b/Components/Pages/Shop/Components/CategoryComp1.razor new file mode 100644 index 0000000..c839f02 --- /dev/null +++ b/Components/Pages/Shop/Components/CategoryComp1.razor @@ -0,0 +1,41 @@ +
+
+ Just a flower +
+
+
+

@Category.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty)

+
+ @* *@ +
+
+
+ + + + +

@Loc["4.5"]

+
+ @*
+ $@ProductModel.Price +
*@ +
+
+
+
+ +@code { + + [Parameter] + public CategoryVM Category { get; set; } + + + +} \ No newline at end of file diff --git a/Components/Pages/Shop/Components/CategoryComp2.razor b/Components/Pages/Shop/Components/CategoryComp2.razor new file mode 100644 index 0000000..de50d6a --- /dev/null +++ b/Components/Pages/Shop/Components/CategoryComp2.razor @@ -0,0 +1,19 @@ +@* @inject IStringLocalizer Loc *@ + + +
+
+

@Category.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty)

+

@Loc["Ui_kit"]

+
+
+ +@code { + + [Parameter] + public CategoryVM Category { get; set; } + + + +} \ No newline at end of file diff --git a/Components/Pages/Shop/Components/ProductComp2.razor b/Components/Pages/Shop/Components/ProductComp2.razor new file mode 100644 index 0000000..d7be35d --- /dev/null +++ b/Components/Pages/Shop/Components/ProductComp2.razor @@ -0,0 +1,78 @@ +@using ECommerceModule.Services +@inject ShopStateService ShopStateService + +
+
+ @ProductModel.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) +
+
+
+

@ProductModel.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty)

+
+ +
+
+
+ + + + +

@Loc["4.5"]

+
+ @*
+ $@ProductModel.Price +
*@ +
+
+
+
+ +@code { + + + [Parameter] + public ProductVM ProductModel { get; set; } + string favoriteClass = "text-white"; + + protected async override Task OnInitializedAsync() + { + await ShopStateService.InitializeAsync(); + UpdateFavoriteState(); + ShopStateService.OnChange += StateChanged; + } + + void StateChanged() + { + UpdateFavoriteState(); + StateHasChanged(); + } + + void UpdateFavoriteState() + { + if (ShopStateService.IsFavorite(ProductModel.Id.ToString())) + favoriteClass = "text-pink-500 fill-current"; + else + favoriteClass = "text-white"; + } + + public void Dispose() + { + ShopStateService.OnChange -= StateChanged; + } + + async Task ToggleFavorite() + { + await ShopStateService.ToggleFavorite(ProductModel.Id.ToString()); + } + + +} \ No newline at end of file diff --git a/Components/Pages/Shop/Components/ProductComp3.razor b/Components/Pages/Shop/Components/ProductComp3.razor new file mode 100644 index 0000000..fbcc9f6 --- /dev/null +++ b/Components/Pages/Shop/Components/ProductComp3.razor @@ -0,0 +1,40 @@ +
+
+ + + + + + + +
+
+ @Loc["Slack_API"] +

@Loc["Slack"]

+

@Loc["Email_collaboration_and"]

+
+ +
+ + + +@code { + + [Parameter] + public ProductVM Product { get; set; } +} \ No newline at end of file diff --git a/Components/Pages/Shop/Components/ProductComp4.razor b/Components/Pages/Shop/Components/ProductComp4.razor new file mode 100644 index 0000000..2a4b7b6 --- /dev/null +++ b/Components/Pages/Shop/Components/ProductComp4.razor @@ -0,0 +1,75 @@ +@if (Product == null) return; +
+ +
+ + @if (Product.IsBundle) + { +
+ + + + + Bundle + +
+ +
+ Value Pack +
+ } +
+ +
+
+ + @Product.CategoryName + + @if (Product.IsBundle && Product.ChildProducts?.Count > 0) + { +
@(Product.ChildProducts.Count) Items
+ } +
+ +

+ @Product.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) +

+ +

+ @Product.Translations?.FirstOrDefault()?.Info?.Description ?? string.Empty) +

+ +
+ @Product.Price?.ToString("C") + @if (Product.Discount > 0) + { + @((Product.Price * (1 + Product.Discount / + 100.0))?.ToString("C")) + } +
+
+ + +
+ + + +@code { + + [Parameter] + public ProductVM? Product { get; set; } +} \ No newline at end of file diff --git a/Components/Pages/Shop/Components/ProductComp5.razor b/Components/Pages/Shop/Components/ProductComp5.razor new file mode 100644 index 0000000..beb5a6d --- /dev/null +++ b/Components/Pages/Shop/Components/ProductComp5.razor @@ -0,0 +1,100 @@ + +
+ + @* Image Section with Hover Zoom *@ +
+ @if (Product.Photos != null && Product.Photos.Any()) + { + @Product.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) + } + else + { +
+ + + +
+ } + + @* Badges Layer (Glassmorphism) *@ +
+ @if (Product.IsBundle) + { + + + + + @Loc["Bundle"] + + } + @if (Product.Discount > 0) + { + + @Loc["Sale"] + + } +
+
+ + @* Content Section *@ +
+
+ + @Product.CategoryName + + + #@Product.CodeName + +
+ +

+ @Product.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) +

+ +

+ @Product.Translations?.FirstOrDefault()?.Info?.Description ?? string.Empty) +

+ + @* Price Section *@ +
+
+ @if (Product.Discount > 0) + { + $@Product.Price + $@GetDiscountedPrice() + } + else + { + $@Product.Price + } +
+ + + + + + +
+
+
+ +@code { + [Parameter] public ProductVM Product { get; set; } = new(); + + private double GetDiscountedPrice() + { + if (Product.Price == null) return 0; + var discount = Product.Discount ?? 0; + return Math.Round(Product.Price.Value * (1 - discount / 100.0), 2); + } +} \ No newline at end of file diff --git a/Components/Pages/Shop/ProductPage.razor b/Components/Pages/Shop/ProductPage.razor new file mode 100644 index 0000000..f14f929 --- /dev/null +++ b/Components/Pages/Shop/ProductPage.razor @@ -0,0 +1,232 @@ +@page "/product/{Id:guid}" +@inject ProductAPIConsumer ProductService + +
+ @if (_loading) + { +
+
+

@Loc["Loading_Product"]...

+
+ } + else if (_product == null) + { +
+
+ + + +
+

@Loc["Product_Not_Found"]

+ @Loc["Back_to_Shop"] +
+ } + else + { +
+ +
+ +
+ + +
+
+ @if (!string.IsNullOrEmpty(_product.CategoryName)) + { + + @_product.CategoryName + + } +

+ @(_product.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty)

+ +
+ + @(_product.Price * (1 - _product.Discount / 100)) $ + + @if (_product.Discount > 0) + { + @_product.Price $ + + -@_product.Discount% + + } +
+
+ +
+ + +
+ +
+ @if (_activeTab == "description") + { +
+

@(_product.Translations?.FirstOrDefault()?.Info?.Description ?? string.Empty)

+
+ } + else if (_activeTab == "technical") + { + + @if (_product.Translations?.FirstOrDefault()?.Info?.TechnicalDetails != null && + _product.Translations?.FirstOrDefault()?.Info?.TechnicalDetails?.Any() == true) + { +
+

+ + + + @Loc["Technical_Specifications"] +

+
+ @foreach (var detail in _product.Translations?.FirstOrDefault()?.Info?.TechnicalDetails ?? new()) + { +
+
@detail.Key
+
@detail.Value
+
+ } +
+
+ } + else + { +

@Loc["No_Technical_Details_Available"]

+ } + } +
+ +
+ + +
+
+
+ + @if (_product.IsBundle && _product.ChildProducts?.Any() == true) + { +
+
+
+

+
+ + + +
+ @Loc["Included_in_this_Bundle"] +

+
+ @Loc["Consisting_of"]: +
+ @(_product.ChildProducts.Count) @Loc["Items"]
+
+
+ +
+ @foreach (var child in _product.ChildProducts) + { +
+
+ @if (child.Photos?.Length > 0) + { + @(child.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) + } + else + { +
+ + + +
+ } +
+
+
+

+ @(child.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) +

+

+ @(child.Translations?.FirstOrDefault()?.Info?.Description ?? string.Empty)

+
+ + + @Loc["View_Details"] + + + + +
+
+ } +
+
+
+ } + } +
+ +@code { + [Parameter] public Guid Id { get; set; } + + private ProductVM? _product; + private bool _loading = true; + private string _activeTab = "description"; + + protected override async Task OnParametersSetAsync() + { + _loading = true; + try + { + _product = await ProductService.GetProduct(Id.ToString()); + } + catch (Exception ex) + { + Console.WriteLine($"Error fetching product: {ex.Message}"); + } + finally + { + _loading = false; + } + } +} \ No newline at end of file diff --git a/Components/Pages/Shop/Shop.razor b/Components/Pages/Shop/Shop.razor new file mode 100644 index 0000000..bd27d0d --- /dev/null +++ b/Components/Pages/Shop/Shop.razor @@ -0,0 +1,149 @@ +@page "/shop" +@inject ProductAPIConsumer productService +@inject CategoryAPIConsumer categoryService +@inject NavigationManager nav +@using Common + + +
+ +
+
+
+
+
+

Discover Premium Quality

+

Explore our curated collection of top-tier products + and exclusive bundles designed to elevate your lifestyle.

+
+
+ + + + +
+ +
+ +
+ + +
+
+ + +
+ + +
+ + +
+ + + + + + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ +
+
+
+ + + +
+ @foreach (var product in products) + { + + } +
+ + +
+ +@code { + public Pagination pagination { get; set; } = new() { CurrentPage = 1, PageSize = 15 }; + + public ProductFilter productFilter { get; set; } = new ProductFilter(); + + List products = new List(); + + + [Parameter, SupplyParameterFromQuery] + public string? CategoryId { get; set; } + + [Parameter, SupplyParameterFromQuery] + public bool? IsBundle { get; set; } + + protected async override Task OnParametersSetAsync() + { + bool changed = false; + if (!string.IsNullOrEmpty(CategoryId) && Guid.TryParse(CategoryId, out var categoryGuid)) + { + productFilter.CategoryId = categoryGuid; + changed = true; + } + + if (IsBundle.HasValue) + { + productFilter.IsBundle = IsBundle.Value; + changed = true; + } + + if (changed) + { + await OnSearchProduct(); + } + } + + protected async override Task OnInitializedAsync() + { + if (string.IsNullOrEmpty(CategoryId)) + { + await OnSearchProduct(); + } + } + + async Task OnSearchProduct(int pageNumber = 1) + { + pagination.CurrentPage = pageNumber; + + var result = await productService.FetchProduct(productFilter, pagination); + products = result.Item1; + pagination.ItemsCount = result.Item2; + } +} \ No newline at end of file diff --git a/Components/Pages/Shop/ViewBundle.razor b/Components/Pages/Shop/ViewBundle.razor new file mode 100644 index 0000000..8307ad5 --- /dev/null +++ b/Components/Pages/Shop/ViewBundle.razor @@ -0,0 +1,94 @@ +@page "/bundle/{productid}" +@inject ProductAPIConsumer ProductService +@inject NavigationManager nav + + +
+
+
+
+

@Loc["Bundle_Deal"]

+

@(Product.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty)

+ @if (!string.IsNullOrEmpty(Product.CodeName)) + { +

MODEL: @Product.CodeName

+ } + +

@(Product.Translations?.FirstOrDefault()?.Info?.Description ?? string.Empty)

+ +
+

@Loc["Included_in_Bundle"]: +

+
    + @if (Product.ChildProducts != null) + { + @foreach (var item in Product.ChildProducts) + { +
  • + + + + @(item.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) +
  • + } + } +
+
+ +
+
+ @if (Product.Discount > 0 && Product.Price.HasValue) + { + + $@((Product.Price.Value - (Product.Price.Value * (Product.Discount.Value / + 100))).ToString("N2")) + +
+ + $@Product.Price.Value.ToString("N2") + + + -@Product.Discount.Value.ToString("0")% + +
+ } + else + { + + $@(Product.Price.HasValue? Product.Price.Value.ToString("N2") : "N/A") + + } +
+ + +
+
+ + @(Product.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty) +
+
+
+ +@code { + + [Parameter] + public string ProductId { get; set; } + + ProductVM Product = new(); + protected async override Task OnInitializedAsync() + { + Product = await ProductService.GetProduct(ProductId); + } +} \ No newline at end of file diff --git a/Components/Pages/Shop/ViewBundles.razor b/Components/Pages/Shop/ViewBundles.razor new file mode 100644 index 0000000..e69de29 diff --git a/Components/Pages/Shop/ViewCategories.razor b/Components/Pages/Shop/ViewCategories.razor new file mode 100644 index 0000000..671f1a6 --- /dev/null +++ b/Components/Pages/Shop/ViewCategories.razor @@ -0,0 +1,70 @@ +@page "/shop/categories" +@inject CategoryAPIConsumer categoryService + + +
+
+
+
+

@Loc["Our_Categories"]

+

@Loc["Provident_cupiditate_voluptatem"]

+ +
+
+
+ + + +
+ @if (_loading) + { +
+ + Loading Categories... +
+ } + else if (categories == null || !categories.Any()) + { +
+ + + + No categories found. +
+ } + else + { +
+
+ @foreach (var category in categories) + { + + } +
+
+ } +
+ + +@code { + + List categories = new List(); + bool _loading = false; + + protected override async Task OnInitializedAsync() + { + _loading = true; + try + { + categories = await categoryService.FetchCategoryTree(); + } + finally + { + _loading = false; + } + } + +} \ No newline at end of file diff --git a/Components/Pages/Shop/ViewCategory.razor b/Components/Pages/Shop/ViewCategory.razor new file mode 100644 index 0000000..30a20c2 --- /dev/null +++ b/Components/Pages/Shop/ViewCategory.razor @@ -0,0 +1,54 @@ +@page "/shop/category/{id}" + +@inject ProductAPIConsumer productService +@inject CategoryAPIConsumer categoryService +@inject NavigationManager nav + +
+
+
+
+

@Loc["Hello_there"]

+

@Loc["Provident_cupiditate_voluptatem"]

+ +
+
+
+ + + +

Child Categories for @(category.Translations?.FirstOrDefault()?.Info?.Name ?? string.Empty)

+ +
+ @foreach (var cat in categories) + { + + } +
+ + +@code { + + [Parameter] + public string Id { get; set; } + + CategoryVM category = new(); + List categories = new(); + + protected override async Task OnInitializedAsync() + { + if (!string.IsNullOrEmpty(Id)) + { + category = await categoryService.GetCategory(Id); + // Assuming GetCategory response doesn't include ChildCategories populated depth? + // If ChildCategories exists on VM, use it. + // checking CategoryVM: yes it has ChildCategories. + if (category.ChildCategories != null) + { + categories = category.ChildCategories.ToList(); + } + } + } + +} \ No newline at end of file diff --git a/Components/Pages/Shop/ViewProduct.razor b/Components/Pages/Shop/ViewProduct.razor new file mode 100644 index 0000000..d85cb19 --- /dev/null +++ b/Components/Pages/Shop/ViewProduct.razor @@ -0,0 +1,102 @@ +@* @page "/productss" +@inject ProductAPIConsumer productService +@inject CategoryAPIConsumer categoryService + + +
+
+
+
+
+

@Loc["Hello_there"]

+

@Loc["Provident_cupiditate_voluptatem"]

+ +
+
+
+ + + + +
+ + +
+ + +
+ +
+ + + + + @foreach (var item in categories.Where(x => x.IsBundle == false).ToList()) + { + + } + + +
+ + + +
+
+ + + +
+ @foreach (var product in products) + { + + } +
+ + +
+ +@code { + + + public Pagination pagination { get; set; } = new() { CurrentPage = 1, PageSize = 15 }; + + public ProductFilter productFilter { get; set; } = new ProductFilter(); + + + List products = new List(); + + List categories = new List(); + + + SortModel sortModel = new SortModel(); + + + + + protected async override Task OnInitializedAsync() + { + var categoryResult = await categoryService.FetchCategory(new CategoryFilter(), new Pagination + { + PageSize = 100, + CurrentPage = 1 + }); + categories = categoryResult.Item1; + + await OnSearchProduct(); + } + + async Task OnSearchProduct(int pageNumber = 1) + { + pagination.CurrentPage = pageNumber; + var result = await productService.FetchProduct(productFilter, pagination); + products = result.Item1; + pagination.ItemsCount = result.Item2; + } + +} *@ \ No newline at end of file diff --git a/Components/Shared/MultiLangInput.razor b/Components/Shared/MultiLangInput.razor new file mode 100644 index 0000000..7844b11 --- /dev/null +++ b/Components/Shared/MultiLangInput.razor @@ -0,0 +1,85 @@ +@using System.Globalization + +
+ @if (!HideTabs) + { +
+ @foreach (var culture in SupportedCultures) + { + + } +
+ } + +
+ @if (IsTextArea) + { + + } + else + { + + } +
+ + @if (Value != null && Value.ContainsKey(ActiveCulture)) + { +
+ Chars: @Value[ActiveCulture].Length +
+ } +
+ +@code { + [Parameter] public Dictionary Value { get; set; } = new(); + [Parameter] public EventCallback> ValueChanged { get; set; } + [Parameter] public string Placeholder { get; set; } = ""; + [Parameter] public bool IsTextArea { get; set; } = false; + + [Parameter] public string ActiveCulture { get; set; } = "en"; + [Parameter] public EventCallback ActiveCultureChanged { get; set; } + [Parameter] public bool HideTabs { get; set; } = false; + + private static readonly Dictionary SupportedCultures = new() +{ +{ "en", "English" }, +{ "ar", "العربية" }, +{ "es", "Español" }, +{ "de", "Deutsch" } +}; + + protected override void OnInitialized() + { + if (string.IsNullOrEmpty(ActiveCulture)) + { + // Default to current culture if supported, otherwise en + var current = CultureInfo.CurrentUICulture.TwoLetterISOLanguageName; + if (SupportedCultures.ContainsKey(current)) + { + ActiveCulture = current; + } + } + } + + private string CurrentValue + { + get => Value != null && Value.TryGetValue(ActiveCulture, out var v) ? v : ""; + set + { + if (Value == null) Value = new(); + Value[ActiveCulture] = value; + ValueChanged.InvokeAsync(Value); + } + } + + private async Task SelectCulture(string culture) + { + ActiveCulture = culture; + await ActiveCultureChanged.InvokeAsync(culture); + } +} \ No newline at end of file diff --git a/Config/RegisterServices.cs b/Config/RegisterServices.cs new file mode 100644 index 0000000..428e329 --- /dev/null +++ b/Config/RegisterServices.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using ECommerceModule.Services; +using Microsoft.Extensions.DependencyInjection; + +namespace ECommerceModule.Config +{ + public static class RegisterServices + { + public static IServiceCollection ECommerceModuleServices(this IServiceCollection services) + { + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + + return services; + } + } +} \ No newline at end of file diff --git a/ECommerce.RCL.csproj b/ECommerce.RCL.csproj new file mode 100644 index 0000000..0a3212b --- /dev/null +++ b/ECommerce.RCL.csproj @@ -0,0 +1,37 @@ + + + + net10.0 + enable + enable + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ExampleJsInterop.cs b/ExampleJsInterop.cs new file mode 100644 index 0000000..82d5c20 --- /dev/null +++ b/ExampleJsInterop.cs @@ -0,0 +1,36 @@ +using Microsoft.JSInterop; + +namespace ECommerceModule; + +// This class provides an example of how JavaScript functionality can be wrapped +// in a .NET class for easy consumption. The associated JavaScript module is +// loaded on demand when first needed. +// +// This class can be registered as scoped DI service and then injected into Blazor +// components for use. + +public class ExampleJsInterop : IAsyncDisposable +{ + private readonly Lazy> moduleTask; + + public ExampleJsInterop(IJSRuntime jsRuntime) + { + moduleTask = new (() => jsRuntime.InvokeAsync( + "import", "./_content/AuthLib/exampleJsInterop.js").AsTask()); + } + + public async ValueTask Prompt(string message) + { + var module = await moduleTask.Value; + return await module.InvokeAsync("showPrompt", message); + } + + public async ValueTask DisposeAsync() + { + if (moduleTask.IsValueCreated) + { + var module = await moduleTask.Value; + await module.DisposeAsync(); + } + } +} diff --git a/Services/Category/CategoryAPIConsumer.cs b/Services/Category/CategoryAPIConsumer.cs new file mode 100644 index 0000000..68157f7 --- /dev/null +++ b/Services/Category/CategoryAPIConsumer.cs @@ -0,0 +1,141 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Net.Http.Json; +using System.Text.Json; +using System.Threading.Tasks; +using Commerce.Contracts.DTOs; +using Generic.Contracts.Generics; +using Generic.Services; +using Microsoft.Extensions.Http; + +namespace ECommerceModule.Services; + +public class CategoryAPIConsumer +{ + private readonly HttpClient client; + + public CategoryAPIConsumer(IHttpClientFactory httpClientFactory) + { + this.client = httpClientFactory.CreateClient("Commerce"); + } + + public async Task GetCategory(string id) + { + try + { + var culture = CultureInfo.CurrentUICulture.TwoLetterISOLanguageName ?? "ar"; + + var response = await client.GetFromJsonAsync($"category/{id}"); + return response!; + } + catch (HttpRequestException) + { + // _logger.LogError(ex, "GET request failed for endpoint: {Endpoint}", endpoint); + throw; + } + } + + public async Task<(List, int)> FetchCategory(CategoryFilter filter, Pagination pagination) + { + try + { + var culture = CultureInfo.CurrentUICulture.TwoLetterISOLanguageName ?? "ar"; + + var filterWithCulture = new CategoryFilter + { + Name = filter?.Name, + IsBundle = filter?.IsBundle, + Random = filter?.Random, + Language = culture + }; + + var query = new AdvancedQueryBuilder() + .AddPreText("categories?") + .AddModels(filterWithCulture, pagination) + .ToString(); + + var categories = new List(); + var response = await client.GetAsync(query); + var itemsCount = 0; + if (response.IsSuccessStatusCode) + { + if (response.Headers.TryGetValues("x-pagination", out var values)) + { + itemsCount = int.Parse(values.First()); + } + categories = await response.Content.ReadFromJsonAsync>(); + } + + return (categories ?? new List(), itemsCount); + } + catch (HttpRequestException) + { + throw; + } + } + + public async Task> FetchCategoryTree() + { + try + { + var response = await client.GetFromJsonAsync>("categories/tree"); + return response ?? new List(); + } + catch (HttpRequestException) + { + throw; + } + } + + + public async Task CreateCategory(CategoryVM category) + { + try + { + var response = await client.PostAsJsonAsync( + "category", + category, + new JsonSerializerOptions { PropertyNameCaseInsensitive = true } + ); + return response.IsSuccessStatusCode; + } + catch (HttpRequestException) + { + throw; + } + } + + public async Task UpdateCategory(CategoryVM category) + { + try + { + var response = await client.PutAsJsonAsync( + "category", + category, + new JsonSerializerOptions { PropertyNameCaseInsensitive = true } + ); + return response.IsSuccessStatusCode; + } + catch (HttpRequestException) + { + // _logger.LogError(ex, "GET request failed for endpoint: Endpoint", endpoint); + throw; + } + } + + public async Task DeleteCategory(string id) + { + try + { + var response = await client.DeleteAsync($"category/{id}"); + return response.IsSuccessStatusCode; + } + catch (HttpRequestException) + { + // _logger.LogError(ex, "GET request failed for endpoint: Endpoint", endpoint); + throw; + } + } +} diff --git a/Services/Product/ProductAPIConsumer.cs b/Services/Product/ProductAPIConsumer.cs new file mode 100644 index 0000000..509d293 --- /dev/null +++ b/Services/Product/ProductAPIConsumer.cs @@ -0,0 +1,144 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Net.Http.Json; +using System.Text.Json; +using System.Threading.Tasks; +using Commerce.Contracts.DTOs; +using Generic.Contracts.Generics; +using Generic.Services; + +namespace ECommerceModule.Services; + +public class ProductAPIConsumer +{ + private readonly HttpClient client; + + public ProductAPIConsumer(IHttpClientFactory httpClientFactory) + { + this.client = httpClientFactory.CreateClient("Commerce"); + } + + public virtual async Task GetProduct(string id) + { + try + { + var culture = CultureInfo.CurrentUICulture.TwoLetterISOLanguageName ?? "ar"; + + var response = await client.GetFromJsonAsync($"product/{id}"); + return response!; + } + catch (HttpRequestException) + { + // _logger.LogError(ex, "GET request failed for endpoint: {Endpoint}", endpoint); + throw; + } + } + + public virtual async Task<(List, int)> FetchProduct(ProductFilter filter, Pagination pagination) + { + try + { + var culture = CultureInfo.CurrentUICulture.TwoLetterISOLanguageName ?? "ar"; + + var filterWithCulture = new ProductFilter + { + Name = filter?.Name, + Price = filter?.Price, + Discount = filter?.Discount, + IsBundle = filter?.IsBundle, + CategoryId = filter?.CategoryId, + Random = filter?.Random, + Language = culture + }; + + var query = new AdvancedQueryBuilder() + .AddPreText("products?") + .AddModels(filterWithCulture, pagination) + .ToString(); + + var products = new List(); + var response = await client.GetAsync(query); + var itemsCount = 0; + if (response.IsSuccessStatusCode) + { + if (response.Headers.TryGetValues("x-pagination", out var values)) + { + itemsCount = int.Parse(values.First()); + } + products = await response.Content.ReadFromJsonAsync>(); + } + + return (products ?? new List(), itemsCount); + } + catch (HttpRequestException) + { + throw; + } + } + + // public virtual async Task> GetRandomProducts() + // { + // try + // { + // var response = await client.GetFromJsonAsync>($"product/random"); + // return response; + // } + // catch (HttpRequestException ex) + // { + // // _logger.LogError(ex, "GET request failed for endpoint: {Endpoint}", endpoint); + // throw; + // } + // } + + public virtual async Task UpdateProduct(ProductVM product) + { + try + { + var response = await client.PutAsJsonAsync( + "product", + product, + new JsonSerializerOptions { PropertyNameCaseInsensitive = true } + ); + return response.IsSuccessStatusCode; + } + catch (HttpRequestException) + { + // _logger.LogError(ex, "GET request failed for endpoint: Endpoint", endpoint); + throw; + } + } + + public virtual async Task CreateProduct(ProductVM product) + { + try + { + var response = await client.PostAsJsonAsync( + "product", + product, + new JsonSerializerOptions { PropertyNameCaseInsensitive = true } + ); + return response.IsSuccessStatusCode; + } + catch (HttpRequestException) + { + // _logger.LogError(ex, "GET request failed for endpoint: {Endpoint}", endpoint); + throw; + } + } + + public virtual async Task DeleteProduct(string id) + { + try + { + var response = await client.DeleteAsync($"product/{id}"); + return response.IsSuccessStatusCode; + } + catch (HttpRequestException) + { + // _logger.LogError(ex, "GET request failed for endpoint: {Endpoint}", endpoint); + throw; + } + } +} diff --git a/Services/ShopStateService.cs b/Services/ShopStateService.cs new file mode 100644 index 0000000..e840f9d --- /dev/null +++ b/Services/ShopStateService.cs @@ -0,0 +1,59 @@ +using Blazored.LocalStorage; + +namespace ECommerceModule.Services; + +public class ShopStateService +{ + private readonly ILocalStorageService _localStorage; + + // keys + private const string FavoritesKey = "shop_favorites"; + private const string CategoryIdKey = "shop_category_id"; + + // events + public event Action? OnChange; + + public ShopStateService(ILocalStorageService localStorage) + { + _localStorage = localStorage; + } + + public List Favorites { get; private set; } = new(); + public Guid? CategoryId { get; private set; } + + public async Task InitializeAsync() + { + Favorites = await _localStorage.GetItemAsync>(FavoritesKey) ?? new List(); + CategoryId = await _localStorage.GetItemAsync(CategoryIdKey); + NotifyStateChanged(); + } + + public async Task ToggleFavorite(string productId) + { + if (Favorites.Contains(productId)) + { + Favorites.Remove(productId); + } + else + { + Favorites.Add(productId); + } + + await _localStorage.SetItemAsync(FavoritesKey, Favorites); + NotifyStateChanged(); + } + + public bool IsFavorite(string productId) + { + return Favorites.Contains(productId); + } + + public async Task SetCategoryId(Guid? categoryId) + { + CategoryId = categoryId; + await _localStorage.SetItemAsync(CategoryIdKey, CategoryId); + NotifyStateChanged(); + } + + private void NotifyStateChanged() => OnChange?.Invoke(); +} diff --git a/SharedRes.cs b/SharedRes.cs new file mode 100644 index 0000000..53b012e --- /dev/null +++ b/SharedRes.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace ECommerce.RCL; + +public class SharedRes +{ + +} diff --git a/_Imports.razor b/_Imports.razor new file mode 100644 index 0000000..461711b --- /dev/null +++ b/_Imports.razor @@ -0,0 +1,17 @@ +@using Microsoft.AspNetCore.Components.Web +@using Blazored.FluentValidation +@using Commerce.Contracts.DTOs +@using ECommerceModule.Services +@using System.Globalization +@using Generic.Contracts.Generics +@using Microsoft.AspNetCore.Components.Forms; +@using Microsoft.Extensions.Localization +@* @using SoloX.BlazorJsonLocalization *@ +@using Generic +@using Generic.Media.Components +@using MudBlazor.Services +@inject IStringLocalizer Loc +@using Microsoft.JSInterop +@using Common +@using Generic.ImageViewer +@using LayoutLib diff --git a/bin/Debug/net10.0/Carousel.dll b/bin/Debug/net10.0/Carousel.dll new file mode 100644 index 0000000..594f498 Binary files /dev/null and b/bin/Debug/net10.0/Carousel.dll differ diff --git a/bin/Debug/net10.0/Carousel.pdb b/bin/Debug/net10.0/Carousel.pdb new file mode 100644 index 0000000..03c8144 Binary files /dev/null and b/bin/Debug/net10.0/Carousel.pdb differ diff --git a/bin/Debug/net10.0/Carousel.staticwebassets.endpoints.json b/bin/Debug/net10.0/Carousel.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/bin/Debug/net10.0/Carousel.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/bin/Debug/net10.0/Common.dll b/bin/Debug/net10.0/Common.dll new file mode 100644 index 0000000..f77f062 Binary files /dev/null and b/bin/Debug/net10.0/Common.dll differ diff --git a/bin/Debug/net10.0/Common.pdb b/bin/Debug/net10.0/Common.pdb new file mode 100644 index 0000000..da13bb3 Binary files /dev/null and b/bin/Debug/net10.0/Common.pdb differ diff --git a/bin/Debug/net10.0/Common.staticwebassets.endpoints.json b/bin/Debug/net10.0/Common.staticwebassets.endpoints.json new file mode 100644 index 0000000..e305568 --- /dev/null +++ b/bin/Debug/net10.0/Common.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Common.dyev8wf6eo.styles.css","AssetFile":"Common.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.styles.css"},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"Common.dyev8wf6eo.styles.css","AssetFile":"Common.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.styles.css"}]},{"Route":"Common.dyev8wf6eo.styles.css.gz","AssetFile":"Common.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="},{"Name":"label","Value":"Common.styles.css.gz"}]},{"Route":"Common.styles.css","AssetFile":"Common.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"Common.styles.css","AssetFile":"Common.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"Common.styles.css.gz","AssetFile":"Common.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="}]},{"Route":"background.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"css/carousal.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"}]},{"Route":"css/carousal.vnhftjewbd.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"css/carousal.js.gz"}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]}]} \ No newline at end of file diff --git a/bin/Debug/net10.0/Common.staticwebassets.runtime.json b/bin/Debug/net10.0/Common.staticwebassets.runtime.json new file mode 100644 index 0000000..47e92e3 --- /dev/null +++ b/bin/Debug/net10.0/Common.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/bundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"Common.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Common.styles.css"},"Patterns":null},"Common.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz"},"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/ECommerce.Contracts.dll b/bin/Debug/net10.0/ECommerce.Contracts.dll new file mode 100644 index 0000000..2392c84 Binary files /dev/null and b/bin/Debug/net10.0/ECommerce.Contracts.dll differ diff --git a/bin/Debug/net10.0/ECommerce.Contracts.pdb b/bin/Debug/net10.0/ECommerce.Contracts.pdb new file mode 100644 index 0000000..7fda164 Binary files /dev/null and b/bin/Debug/net10.0/ECommerce.Contracts.pdb differ diff --git a/bin/Debug/net10.0/ECommerceModule.deps.json b/bin/Debug/net10.0/ECommerceModule.deps.json new file mode 100644 index 0000000..164cb02 --- /dev/null +++ b/bin/Debug/net10.0/ECommerceModule.deps.json @@ -0,0 +1,653 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "ECommerceModule/1.0.0": { + "dependencies": { + "Blazored.FluentValidation": "2.2.0", + "Blazored.LocalStorage": "4.5.0", + "Carousel": "1.0.0", + "Common": "1.0.0", + "ECommerce.Contracts": "1.0.0", + "Generic": "1.0.0", + "ImageViewer": "1.0.0", + "LayoutLib": "1.0.0", + "Media": "1.0.0", + "Microsoft.AspNetCore.Components.Web": "10.0.1", + "Microsoft.Extensions.Localization": "10.0.1" + }, + "runtime": { + "ECommerceModule.dll": {} + } + }, + "Blazored.FluentValidation/2.2.0": { + "dependencies": { + "FluentValidation": "12.1.1", + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "runtime": { + "lib/net8.0/Blazored.FluentValidation.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Blazored.LocalStorage/4.5.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "runtime": { + "lib/net8.0/Blazored.LocalStorage.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "FluentValidation/12.1.1": { + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.1.1.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Components.Authorization/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Authorization.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.Extensions.Validation": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.AspNetCore.Components.Forms": "10.0.1", + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1", + "Microsoft.JSInterop": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Http/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Localization/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Localization.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Logging/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Options/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.Binder": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Validation/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.JSInterop/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "MudBlazor/8.9.0": { + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.AspNetCore.Components.Web": "10.0.1", + "Microsoft.Extensions.Localization": "10.0.1" + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "assemblyVersion": "8.9.0.0", + "fileVersion": "8.9.0.0" + } + } + }, + "Carousel/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "runtime": { + "Carousel.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Common/1.0.0": { + "dependencies": { + "Generic": "1.0.0", + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "runtime": { + "Common.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "ECommerce.Contracts/1.0.0": { + "dependencies": { + "FluentValidation": "12.1.1" + }, + "runtime": { + "ECommerce.Contracts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Generic/1.0.0": { + "runtime": { + "Generic.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "ImageViewer/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "runtime": { + "ImageViewer.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "LayoutLib/1.0.0": { + "dependencies": { + "Common": "1.0.0", + "Microsoft.AspNetCore.Components.Web": "10.0.1", + "MudBlazor": "8.9.0" + }, + "runtime": { + "LayoutLib.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Media/1.0.0": { + "dependencies": { + "Blazored.LocalStorage": "4.5.0", + "Microsoft.AspNetCore.Components.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components.Web": "10.0.1", + "Microsoft.Extensions.Http": "10.0.1", + "Microsoft.Extensions.Localization": "10.0.1" + }, + "runtime": { + "Media.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "ECommerceModule/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Blazored.FluentValidation/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lBSHW7faCJqwn7KtZt6vqHSiyGvTL5McpS4sQUW3RLu2R5eMmf4oolFeufZfcAB8TV8iI+/PYouz7sn773E8Og==", + "path": "blazored.fluentvalidation/2.2.0", + "hashPath": "blazored.fluentvalidation.2.2.0.nupkg.sha512" + }, + "Blazored.LocalStorage/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6nZuJwA7zNIKx83IsObiHXZb09ponJOpCClU3en+hI8ZFvrOKXeOw+H7TegQZQrvdR1n9fkrVkEBQZg8vx6ZTw==", + "path": "blazored.localstorage/4.5.0", + "hashPath": "blazored.localstorage.4.5.0.nupkg.sha512" + }, + "FluentValidation/12.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==", + "path": "fluentvalidation/12.1.1", + "hashPath": "fluentvalidation.12.1.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y9QE0gH4Q4cR7ZRToFju47c1MoeqxaLHdpzOviqD2TmnGGAeDMT9AV56j2BOVm5CsJAVyI/USxLYrkk2NVinZA==", + "path": "microsoft.aspnetcore.authorization/10.0.1", + "hashPath": "microsoft.aspnetcore.authorization.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SbABcQ7soM9jC/HvPKrg/smQxsMD2gW9iHBRFtBiYTMSs5Vqh7+i47BTOe3OM3IGzly2FiOmeNHJhMYK7YFGWA==", + "path": "microsoft.aspnetcore.components/10.0.1", + "hashPath": "microsoft.aspnetcore.components.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Authorization/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ahez1F0EfsPqIT/X/TcdJCDYjVACHJwIPgZSof33wqLXaENUJNDnzphkmXOiBY1tvok/ZIUVEpeFLWdkLh0IyA==", + "path": "microsoft.aspnetcore.components.authorization/10.0.1", + "hashPath": "microsoft.aspnetcore.components.authorization.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aWUpLOz749gwMMaKe81tet+INC8nfskbauF2VO5Qr3lspj/l8S24zNLr95Bl8EwAizvBCNqwb8fPFU1dnn3WbA==", + "path": "microsoft.aspnetcore.components.forms/10.0.1", + "hashPath": "microsoft.aspnetcore.components.forms.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hX74ijqAiUfIo6WpvLWignGYp7tkrRR3KRVBErwFSAcsiHeaCxGM81fYRXd9rf+gkFUNoKvcSxYyVZc2vFJVXg==", + "path": "microsoft.aspnetcore.components.web/10.0.1", + "hashPath": "microsoft.aspnetcore.components.web.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6JrG03xROuR4mQIHGcT8OnaKVBoPLLbto5RicKQIUV3JIU7cZYKIWDAnk0SQcl7ziQr6R327D6QBOo+PbYnnrw==", + "path": "microsoft.aspnetcore.metadata/10.0.1", + "hashPath": "microsoft.aspnetcore.metadata.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-njoRekyMIK+smav8B6KL2YgIfUtlsRNuT7wvurpLW+m/hoRKVnoELk2YxnUnWRGScCd1rukLMxShwLqEOKowDg==", + "path": "microsoft.extensions.configuration/10.0.1", + "hashPath": "microsoft.extensions.configuration.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kPlU11hql+L9RjrN2N9/0GcRcRcZrNFlLLjadasFWeBORT6pL6OE+RYRk90GGCyVGSxTK+e1/f3dsMj5zpFFiQ==", + "path": "microsoft.extensions.configuration.abstractions/10.0.1", + "hashPath": "microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lp4CZIuTVXtlvkAnTq6QvMSW7+H62gX2cU2vdFxHQUxvrWTpi7LwYI3X+YAyIS0r12/p7gaosco7efIxL4yFNw==", + "path": "microsoft.extensions.configuration.binder/10.0.1", + "hashPath": "microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zerXV0GAR9LCSXoSIApbWn+Dq1/T+6vbXMHGduq1LoVQRHT0BXsGQEau0jeLUBUcsoF/NaUT8ADPu8b+eNcIyg==", + "path": "microsoft.extensions.dependencyinjection/10.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oIy8fQxxbUsSrrOvgBqlVgOeCtDmrcynnTG+FQufcUWBrwyPfwlUkCDB2vaiBeYPyT+20u9/HeuHeBf+H4F/8g==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YaocqxscJLxLit0F5yq2XyB+9C7rSRfeTL7MJIl7XwaOoUO3i0EqfO2kmtjiRduYWw7yjcSINEApYZbzjau2gQ==", + "path": "microsoft.extensions.diagnostics/10.0.1", + "hashPath": "microsoft.extensions.diagnostics.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QMoMrkNpnQym5mpfdxfxpRDuqLpsOuztguFvzH9p+Ex+do+uLFoi7UkAsBO4e9/tNR3eMFraFf2fOAi2cp3jjA==", + "path": "microsoft.extensions.diagnostics.abstractions/10.0.1", + "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Http/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZXJup9ReE1Ot3M8jqcw1b/lnc8USxyYS3cyLsssU39u04TES9JNGviWUGIvP3K7mMU3TF7kQl2aS0SmVwegflw==", + "path": "microsoft.extensions.http/10.0.1", + "hashPath": "microsoft.extensions.http.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Localization/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yJBI3IRm9uTRu7cPc7i90/8+CuiiJJ5M4khj6iWQcYnq6VrG+H2U5GzpRLtkVCsgxc1LjtkNMEbSDatfBA+z5g==", + "path": "microsoft.extensions.localization/10.0.1", + "hashPath": "microsoft.extensions.localization.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TQSQWF+iZdtGNgPiu7gKUqrTEeRD/mhk7KeYiuEwmTUPbawsYfPSNzSvOOeueJ0nU1697X8HZ2vCp2ByHNHkZg==", + "path": "microsoft.extensions.localization.abstractions/10.0.1", + "hashPath": "microsoft.extensions.localization.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ItMpMLFZFJFqCuHLLbR3LiA4ahA8dMtYuXpXl2YamSDWZhYS9BruPprkftY0tYi2bQ0slNrixdFm+4kpz1g5w==", + "path": "microsoft.extensions.logging/10.0.1", + "hashPath": "microsoft.extensions.logging.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YkmyiPIWAXVb+lPIrM0LE5bbtLOJkCiRTFiHpkVOvhI7uTvCfoOHLEN0LcsY56GpSD7NqX3gJNpsaDe87/B3zg==", + "path": "microsoft.extensions.logging.abstractions/10.0.1", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G6VVwywpJI4XIobetGHwg7wDOYC2L2XBYdtskxLaKF/Ynb5QBwLl7Q//wxAR2aVCLkMpoQrjSP9VoORkyddsNQ==", + "path": "microsoft.extensions.options/10.0.1", + "hashPath": "microsoft.extensions.options.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pL78/Im7O3WmxHzlKUsWTYchKL881udU7E26gCD3T0+/tPhWVfjPwMzfN/MRKU7aoFYcOiqcG2k1QTlH5woWow==", + "path": "microsoft.extensions.options.configurationextensions/10.0.1", + "hashPath": "microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DO8XrJkp5x4PddDuc/CH37yDBCs9BYN6ijlKyR3vMb55BP1Vwh90vOX8bNfnKxr5B2qEI3D8bvbY1fFbDveDHQ==", + "path": "microsoft.extensions.primitives/10.0.1", + "hashPath": "microsoft.extensions.primitives.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Validation/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5bcu9zWhgY8AZUN1ERNH0BQKFh10xlx4UrCh+0cDn7wB01QkrK4S6Jh45fCgEqmWJWVGqBS2g8MN0Lu/99Zgdg==", + "path": "microsoft.extensions.validation/10.0.1", + "hashPath": "microsoft.extensions.validation.10.0.1.nupkg.sha512" + }, + "Microsoft.JSInterop/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTfoYBjs7HKmTEk9cNWcSySdTKT8USjviLgmMaSs/YA0+oONufKy9hqqZ5EE4CNy9y24SDDc9lerXfV7aiVfWA==", + "path": "microsoft.jsinterop/10.0.1", + "hashPath": "microsoft.jsinterop.10.0.1.nupkg.sha512" + }, + "MudBlazor/8.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KdjXMXiSvl6uNr+S2YDhGI1aX/TULMQejQSniMlp6QTss35NKFrJyrMAmN082HNvOObuKdnTtLpntJ7rM5Op/A==", + "path": "mudblazor/8.9.0", + "hashPath": "mudblazor.8.9.0.nupkg.sha512" + }, + "Carousel/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ECommerce.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Generic/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ImageViewer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "LayoutLib/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Media/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net10.0/ECommerceModule.dll b/bin/Debug/net10.0/ECommerceModule.dll new file mode 100644 index 0000000..e977a03 Binary files /dev/null and b/bin/Debug/net10.0/ECommerceModule.dll differ diff --git a/bin/Debug/net10.0/ECommerceModule.pdb b/bin/Debug/net10.0/ECommerceModule.pdb new file mode 100644 index 0000000..91cd40f Binary files /dev/null and b/bin/Debug/net10.0/ECommerceModule.pdb differ diff --git a/bin/Debug/net10.0/ECommerceModule.staticwebassets.endpoints.json b/bin/Debug/net10.0/ECommerceModule.staticwebassets.endpoints.json new file mode 100644 index 0000000..a44bb33 --- /dev/null +++ b/bin/Debug/net10.0/ECommerceModule.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"ECommerceModule.5b8rchxmj9.styles.css","AssetFile":"ECommerceModule.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004255319149"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5b8rchxmj9"},{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="},{"Name":"label","Value":"ECommerceModule.styles.css"},{"Name":"original-resource","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""}]},{"Route":"ECommerceModule.5b8rchxmj9.styles.css","AssetFile":"ECommerceModule.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5b8rchxmj9"},{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="},{"Name":"label","Value":"ECommerceModule.styles.css"}]},{"Route":"ECommerceModule.5b8rchxmj9.styles.css.gz","AssetFile":"ECommerceModule.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5b8rchxmj9"},{"Name":"integrity","Value":"sha256-fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc="},{"Name":"label","Value":"ECommerceModule.styles.css.gz"}]},{"Route":"ECommerceModule.styles.css","AssetFile":"ECommerceModule.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004255319149"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="},{"Name":"original-resource","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""}]},{"Route":"ECommerceModule.styles.css","AssetFile":"ECommerceModule.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="}]},{"Route":"ECommerceModule.styles.css.gz","AssetFile":"ECommerceModule.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc="}]},{"Route":"_content/Common/Common.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"_content/Common/Common.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"_content/Common/Common.bundle.scp.css.gz","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css"},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css"}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css.gz"}]},{"Route":"_content/Common/background.png","AssetFile":"_content/Common/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"_content/Common/background.x2rx4ajns0.png","AssetFile":"_content/Common/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"_content/Common/background.png"}]},{"Route":"_content/Common/css/carousal.js","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"_content/Common/css/carousal.js","AssetFile":"_content/Common/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"_content/Common/css/carousal.js.gz","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"_content/Common/css/carousal.js"},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js","AssetFile":"_content/Common/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"_content/Common/css/carousal.js"}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js.gz","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"_content/Common/css/carousal.js.gz"}]},{"Route":"_content/Common/exampleJsInterop.js","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/Common/exampleJsInterop.js","AssetFile":"_content/Common/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"_content/Common/exampleJsInterop.js.gz","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js","AssetFile":"_content/Common/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js"}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js.gz","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js.gz"}]},{"Route":"_content/LayoutLib/LayoutLib.bundle.scp.css","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005882352941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="},{"Name":"original-resource","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""}]},{"Route":"_content/LayoutLib/LayoutLib.bundle.scp.css","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"195"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="}]},{"Route":"_content/LayoutLib/LayoutLib.bundle.scp.css.gz","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo="}]},{"Route":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005882352941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wql9u47zkx"},{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="},{"Name":"label","Value":"_content/LayoutLib/LayoutLib.bundle.scp.css"},{"Name":"original-resource","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""}]},{"Route":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"195"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wql9u47zkx"},{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="},{"Name":"label","Value":"_content/LayoutLib/LayoutLib.bundle.scp.css"}]},{"Route":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css.gz","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wql9u47zkx"},{"Name":"integrity","Value":"sha256-76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo="},{"Name":"label","Value":"_content/LayoutLib/LayoutLib.bundle.scp.css.gz"}]},{"Route":"_content/LayoutLib/background.png","AssetFile":"_content/LayoutLib/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"_content/LayoutLib/background.x2rx4ajns0.png","AssetFile":"_content/LayoutLib/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"_content/LayoutLib/background.png"}]},{"Route":"_content/LayoutLib/exampleJsInterop.js","AssetFile":"_content/LayoutLib/exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/LayoutLib/exampleJsInterop.js","AssetFile":"_content/LayoutLib/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"_content/LayoutLib/exampleJsInterop.js.gz","AssetFile":"_content/LayoutLib/exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"_content/LayoutLib/exampleJsInterop.luzdqbu196.js","AssetFile":"_content/LayoutLib/exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/LayoutLib/exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/LayoutLib/exampleJsInterop.luzdqbu196.js","AssetFile":"_content/LayoutLib/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/LayoutLib/exampleJsInterop.js"}]},{"Route":"_content/LayoutLib/exampleJsInterop.luzdqbu196.js.gz","AssetFile":"_content/LayoutLib/exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"_content/LayoutLib/exampleJsInterop.js.gz"}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.json","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005208333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"original-resource","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.json","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"258"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 14:44:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.json.gz","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg="}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.w52k902j3l.json","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005208333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.ar.json"},{"Name":"original-resource","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.w52k902j3l.json","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"258"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 14:44:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.ar.json"}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.w52k902j3l.json.gz","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.ar.json.gz"}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.json","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008333333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"original-resource","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.json","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"204"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""},{"Name":"Last-Modified","Value":"Sat, 24 Jan 2026 19:32:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.json.gz","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0="}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.z8qc8wrh10.json","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008333333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.en.json"},{"Name":"original-resource","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.z8qc8wrh10.json","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"204"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""},{"Name":"Last-Modified","Value":"Sat, 24 Jan 2026 19:32:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.en.json"}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.z8qc8wrh10.json.gz","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.en.json.gz"}]},{"Route":"_content/Media/css/cropper.min.css","AssetFile":"_content/Media/css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"_content/Media/css/cropper.min.css","AssetFile":"_content/Media/css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"_content/Media/css/cropper.min.css.gz","AssetFile":"_content/Media/css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="}]},{"Route":"_content/Media/css/cropper.min.ozxrxjrq84.css","AssetFile":"_content/Media/css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"_content/Media/css/cropper.min.css"},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"_content/Media/css/cropper.min.ozxrxjrq84.css","AssetFile":"_content/Media/css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"_content/Media/css/cropper.min.css"}]},{"Route":"_content/Media/css/cropper.min.ozxrxjrq84.css.gz","AssetFile":"_content/Media/css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="},{"Name":"label","Value":"_content/Media/css/cropper.min.css.gz"}]},{"Route":"_content/Media/js/crop.js","AssetFile":"_content/Media/js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"_content/Media/js/crop.js","AssetFile":"_content/Media/js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"_content/Media/js/crop.js.gz","AssetFile":"_content/Media/js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="}]},{"Route":"_content/Media/js/crop.rzaytjouo0.js","AssetFile":"_content/Media/js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"_content/Media/js/crop.js"},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"_content/Media/js/crop.rzaytjouo0.js","AssetFile":"_content/Media/js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"_content/Media/js/crop.js"}]},{"Route":"_content/Media/js/crop.rzaytjouo0.js.gz","AssetFile":"_content/Media/js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="},{"Name":"label","Value":"_content/Media/js/crop.js.gz"}]},{"Route":"_content/Media/js/cropper.min.js","AssetFile":"_content/Media/js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"_content/Media/js/cropper.min.js","AssetFile":"_content/Media/js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"_content/Media/js/cropper.min.js.gz","AssetFile":"_content/Media/js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="}]},{"Route":"_content/Media/js/cropper.min.llc9n82qda.js","AssetFile":"_content/Media/js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"_content/Media/js/cropper.min.js"},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"_content/Media/js/cropper.min.llc9n82qda.js","AssetFile":"_content/Media/js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"_content/Media/js/cropper.min.js"}]},{"Route":"_content/Media/js/cropper.min.llc9n82qda.js.gz","AssetFile":"_content/Media/js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="},{"Name":"label","Value":"_content/Media/js/cropper.min.js.gz"}]},{"Route":"_content/Media/js/mediaInterop.j3t2utpur3.js","AssetFile":"_content/Media/js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"_content/Media/js/mediaInterop.js"},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"_content/Media/js/mediaInterop.j3t2utpur3.js","AssetFile":"_content/Media/js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"_content/Media/js/mediaInterop.js"}]},{"Route":"_content/Media/js/mediaInterop.j3t2utpur3.js.gz","AssetFile":"_content/Media/js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="},{"Name":"label","Value":"_content/Media/js/mediaInterop.js.gz"}]},{"Route":"_content/Media/js/mediaInterop.js","AssetFile":"_content/Media/js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"_content/Media/js/mediaInterop.js","AssetFile":"_content/Media/js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"_content/Media/js/mediaInterop.js.gz","AssetFile":"_content/Media/js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="}]},{"Route":"_content/Media/lib/cropper.min.9ydfkw1ttr.js","AssetFile":"_content/Media/lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"_content/Media/lib/cropper.min.js"},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"_content/Media/lib/cropper.min.9ydfkw1ttr.js","AssetFile":"_content/Media/lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"_content/Media/lib/cropper.min.js"}]},{"Route":"_content/Media/lib/cropper.min.9ydfkw1ttr.js.gz","AssetFile":"_content/Media/lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="},{"Name":"label","Value":"_content/Media/lib/cropper.min.js.gz"}]},{"Route":"_content/Media/lib/cropper.min.css","AssetFile":"_content/Media/lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"_content/Media/lib/cropper.min.css","AssetFile":"_content/Media/lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"_content/Media/lib/cropper.min.css.gz","AssetFile":"_content/Media/lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="}]},{"Route":"_content/Media/lib/cropper.min.js","AssetFile":"_content/Media/lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"_content/Media/lib/cropper.min.js","AssetFile":"_content/Media/lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"_content/Media/lib/cropper.min.js.gz","AssetFile":"_content/Media/lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="}]},{"Route":"_content/Media/lib/cropper.min.tef8z25zm7.css","AssetFile":"_content/Media/lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"_content/Media/lib/cropper.min.css"},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"_content/Media/lib/cropper.min.tef8z25zm7.css","AssetFile":"_content/Media/lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"_content/Media/lib/cropper.min.css"}]},{"Route":"_content/Media/lib/cropper.min.tef8z25zm7.css.gz","AssetFile":"_content/Media/lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="},{"Name":"label","Value":"_content/Media/lib/cropper.min.css.gz"}]},{"Route":"_content/MudBlazor/MudBlazor.min.b8x8f7e52z.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73366"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b8x8f7e52z"},{"Name":"integrity","Value":"sha256-O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606059"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73366"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8="}]},{"Route":"_content/MudBlazor/MudBlazor.min.sowobu9fea.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606059"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sowobu9fea"},{"Name":"integrity","Value":"sha256-fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"background.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]},{"Route":"resources/SharedRes.48a6awhjzd.json","AssetFile":"resources/SharedRes.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.043478260870"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"48a6awhjzd"},{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="},{"Name":"label","Value":"resources/SharedRes.json"},{"Name":"original-resource","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""}]},{"Route":"resources/SharedRes.48a6awhjzd.json","AssetFile":"resources/SharedRes.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 05:30:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"48a6awhjzd"},{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="},{"Name":"label","Value":"resources/SharedRes.json"}]},{"Route":"resources/SharedRes.48a6awhjzd.json.gz","AssetFile":"resources/SharedRes.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"48a6awhjzd"},{"Name":"integrity","Value":"sha256-c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw="},{"Name":"label","Value":"resources/SharedRes.json.gz"}]},{"Route":"resources/SharedRes.ar.6ep70s2n95.json","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.011627906977"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6ep70s2n95"},{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="},{"Name":"label","Value":"resources/SharedRes.ar.json"},{"Name":"original-resource","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""}]},{"Route":"resources/SharedRes.ar.6ep70s2n95.json","AssetFile":"resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"74"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:01:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6ep70s2n95"},{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="},{"Name":"label","Value":"resources/SharedRes.ar.json"}]},{"Route":"resources/SharedRes.ar.6ep70s2n95.json.gz","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6ep70s2n95"},{"Name":"integrity","Value":"sha256-jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE="},{"Name":"label","Value":"resources/SharedRes.ar.json.gz"}]},{"Route":"resources/SharedRes.ar.json","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.011627906977"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="},{"Name":"original-resource","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""}]},{"Route":"resources/SharedRes.ar.json","AssetFile":"resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"74"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:01:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="}]},{"Route":"resources/SharedRes.ar.json.gz","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE="}]},{"Route":"resources/SharedRes.json","AssetFile":"resources/SharedRes.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.043478260870"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="},{"Name":"original-resource","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""}]},{"Route":"resources/SharedRes.json","AssetFile":"resources/SharedRes.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 05:30:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="}]},{"Route":"resources/SharedRes.json.gz","AssetFile":"resources/SharedRes.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw="}]}]} \ No newline at end of file diff --git a/bin/Debug/net10.0/ECommerceModule.staticwebassets.runtime.json b/bin/Debug/net10.0/ECommerceModule.staticwebassets.runtime.json new file mode 100644 index 0000000..14dbb8d --- /dev/null +++ b/bin/Debug/net10.0/ECommerceModule.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/projectbundle/","/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"ECommerceModule.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ECommerceModule.styles.css"},"Patterns":null},"ECommerceModule.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"resources":{"Children":{"SharedRes.ar.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"resources/SharedRes.ar.json"},"Patterns":null},"SharedRes.ar.json.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz"},"Patterns":null},"SharedRes.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"resources/SharedRes.json"},"Patterns":null},"SharedRes.json.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Common":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"background.png"},"Patterns":null},"Common.dyev8wf6eo.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Common.bundle.scp.css"},"Patterns":null},"Common.dyev8wf6eo.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":3,"Pattern":"**","Depth":2}]},"LayoutLib":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"background.png"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"j230ay6ibu-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"LayoutLib.wql9u47zkx.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"LayoutLib.bundle.scp.css"},"Patterns":null},"LayoutLib.wql9u47zkx.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"s5p096awx1-{0}-wql9u47zkx-wql9u47zkx.gz"},"Patterns":null},"resources":{"Children":{"SharedRes.ar.json":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"resources/SharedRes.ar.json"},"Patterns":null},"SharedRes.ar.json.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"rx6wnqzng0-{0}-w52k902j3l-w52k902j3l.gz"},"Patterns":null},"SharedRes.en.json":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"resources/SharedRes.en.json"},"Patterns":null},"SharedRes.en.json.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"zamg5qeycn-{0}-z8qc8wrh10-z8qc8wrh10.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":6,"Pattern":"**","Depth":2}]},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":9,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":9,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Media":{"Children":{"css":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"css/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"crop.js":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"js/crop.js"},"Patterns":null},"crop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"js/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz"},"Patterns":null},"mediaInterop.js":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"js/mediaInterop.js"},"Patterns":null},"mediaInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"lib/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"lib/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":10,"Pattern":"**","Depth":2}]}},"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/Generic.dll b/bin/Debug/net10.0/Generic.dll new file mode 100644 index 0000000..3eae051 Binary files /dev/null and b/bin/Debug/net10.0/Generic.dll differ diff --git a/bin/Debug/net10.0/Generic.pdb b/bin/Debug/net10.0/Generic.pdb new file mode 100644 index 0000000..a71b682 Binary files /dev/null and b/bin/Debug/net10.0/Generic.pdb differ diff --git a/bin/Debug/net10.0/ImageViewer.dll b/bin/Debug/net10.0/ImageViewer.dll new file mode 100644 index 0000000..82eadd0 Binary files /dev/null and b/bin/Debug/net10.0/ImageViewer.dll differ diff --git a/bin/Debug/net10.0/ImageViewer.pdb b/bin/Debug/net10.0/ImageViewer.pdb new file mode 100644 index 0000000..cc86a0d Binary files /dev/null and b/bin/Debug/net10.0/ImageViewer.pdb differ diff --git a/bin/Debug/net10.0/ImageViewer.staticwebassets.endpoints.json b/bin/Debug/net10.0/ImageViewer.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/bin/Debug/net10.0/ImageViewer.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/bin/Debug/net10.0/LayoutLib.dll b/bin/Debug/net10.0/LayoutLib.dll new file mode 100644 index 0000000..6e8ffef Binary files /dev/null and b/bin/Debug/net10.0/LayoutLib.dll differ diff --git a/bin/Debug/net10.0/LayoutLib.pdb b/bin/Debug/net10.0/LayoutLib.pdb new file mode 100644 index 0000000..7835519 Binary files /dev/null and b/bin/Debug/net10.0/LayoutLib.pdb differ diff --git a/bin/Debug/net10.0/LayoutLib.staticwebassets.endpoints.json b/bin/Debug/net10.0/LayoutLib.staticwebassets.endpoints.json new file mode 100644 index 0000000..ce155ac --- /dev/null +++ b/bin/Debug/net10.0/LayoutLib.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"LayoutLib.5phnxoj3fu.styles.css","AssetFile":"LayoutLib.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004830917874"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"206"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+dxkny5ZFAgZ56PZlJ8EgxZBQGtV73Ns0gaQ7aYwag=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5phnxoj3fu"},{"Name":"integrity","Value":"sha256-Wcp9TTHhr8IPh3i8F5NmUdKWXAppDctlH7Szax/QI0s="},{"Name":"label","Value":"LayoutLib.styles.css"},{"Name":"original-resource","Value":"\"Wcp9TTHhr8IPh3i8F5NmUdKWXAppDctlH7Szax/QI0s=\""}]},{"Route":"LayoutLib.5phnxoj3fu.styles.css","AssetFile":"LayoutLib.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Wcp9TTHhr8IPh3i8F5NmUdKWXAppDctlH7Szax/QI0s=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5phnxoj3fu"},{"Name":"integrity","Value":"sha256-Wcp9TTHhr8IPh3i8F5NmUdKWXAppDctlH7Szax/QI0s="},{"Name":"label","Value":"LayoutLib.styles.css"}]},{"Route":"LayoutLib.5phnxoj3fu.styles.css.gz","AssetFile":"LayoutLib.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"206"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+dxkny5ZFAgZ56PZlJ8EgxZBQGtV73Ns0gaQ7aYwag=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5phnxoj3fu"},{"Name":"integrity","Value":"sha256-h+dxkny5ZFAgZ56PZlJ8EgxZBQGtV73Ns0gaQ7aYwag="},{"Name":"label","Value":"LayoutLib.styles.css.gz"}]},{"Route":"LayoutLib.styles.css","AssetFile":"LayoutLib.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004830917874"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"206"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+dxkny5ZFAgZ56PZlJ8EgxZBQGtV73Ns0gaQ7aYwag=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wcp9TTHhr8IPh3i8F5NmUdKWXAppDctlH7Szax/QI0s="},{"Name":"original-resource","Value":"\"Wcp9TTHhr8IPh3i8F5NmUdKWXAppDctlH7Szax/QI0s=\""}]},{"Route":"LayoutLib.styles.css","AssetFile":"LayoutLib.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"256"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Wcp9TTHhr8IPh3i8F5NmUdKWXAppDctlH7Szax/QI0s=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wcp9TTHhr8IPh3i8F5NmUdKWXAppDctlH7Szax/QI0s="}]},{"Route":"LayoutLib.styles.css.gz","AssetFile":"LayoutLib.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"206"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+dxkny5ZFAgZ56PZlJ8EgxZBQGtV73Ns0gaQ7aYwag=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h+dxkny5ZFAgZ56PZlJ8EgxZBQGtV73Ns0gaQ7aYwag="}]},{"Route":"_content/Common/Common.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"_content/Common/Common.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"_content/Common/Common.bundle.scp.css.gz","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css"},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css"}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css.gz"}]},{"Route":"_content/Common/background.png","AssetFile":"_content/Common/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"_content/Common/background.x2rx4ajns0.png","AssetFile":"_content/Common/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"_content/Common/background.png"}]},{"Route":"_content/Common/css/carousal.js","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"_content/Common/css/carousal.js","AssetFile":"_content/Common/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"_content/Common/css/carousal.js.gz","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"_content/Common/css/carousal.js"},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js","AssetFile":"_content/Common/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"_content/Common/css/carousal.js"}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js.gz","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"_content/Common/css/carousal.js.gz"}]},{"Route":"_content/Common/exampleJsInterop.js","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/Common/exampleJsInterop.js","AssetFile":"_content/Common/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"_content/Common/exampleJsInterop.js.gz","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js","AssetFile":"_content/Common/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js"}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js.gz","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js.gz"}]},{"Route":"_content/MudBlazor/MudBlazor.min.b8x8f7e52z.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73366"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b8x8f7e52z"},{"Name":"integrity","Value":"sha256-O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606059"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73366"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8="}]},{"Route":"_content/MudBlazor/MudBlazor.min.sowobu9fea.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606059"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sowobu9fea"},{"Name":"integrity","Value":"sha256-fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"background.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]},{"Route":"resources/SharedRes.ar.json","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005208333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"original-resource","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""}]},{"Route":"resources/SharedRes.ar.json","AssetFile":"resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"258"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 14:44:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="}]},{"Route":"resources/SharedRes.ar.json.gz","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg="}]},{"Route":"resources/SharedRes.ar.w52k902j3l.json","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005208333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"label","Value":"resources/SharedRes.ar.json"},{"Name":"original-resource","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""}]},{"Route":"resources/SharedRes.ar.w52k902j3l.json","AssetFile":"resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"258"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 14:44:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"label","Value":"resources/SharedRes.ar.json"}]},{"Route":"resources/SharedRes.ar.w52k902j3l.json.gz","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg="},{"Name":"label","Value":"resources/SharedRes.ar.json.gz"}]},{"Route":"resources/SharedRes.en.json","AssetFile":"resources/SharedRes.en.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008333333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"original-resource","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""}]},{"Route":"resources/SharedRes.en.json","AssetFile":"resources/SharedRes.en.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"204"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""},{"Name":"Last-Modified","Value":"Sat, 24 Jan 2026 19:32:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="}]},{"Route":"resources/SharedRes.en.json.gz","AssetFile":"resources/SharedRes.en.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0="}]},{"Route":"resources/SharedRes.en.z8qc8wrh10.json","AssetFile":"resources/SharedRes.en.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008333333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"label","Value":"resources/SharedRes.en.json"},{"Name":"original-resource","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""}]},{"Route":"resources/SharedRes.en.z8qc8wrh10.json","AssetFile":"resources/SharedRes.en.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"204"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""},{"Name":"Last-Modified","Value":"Sat, 24 Jan 2026 19:32:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"label","Value":"resources/SharedRes.en.json"}]},{"Route":"resources/SharedRes.en.z8qc8wrh10.json.gz","AssetFile":"resources/SharedRes.en.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0="},{"Name":"label","Value":"resources/SharedRes.en.json.gz"}]}]} \ No newline at end of file diff --git a/bin/Debug/net10.0/LayoutLib.staticwebassets.runtime.json b/bin/Debug/net10.0/LayoutLib.staticwebassets.runtime.json new file mode 100644 index 0000000..3716b40 --- /dev/null +++ b/bin/Debug/net10.0/LayoutLib.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/bundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/","/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"j230ay6ibu-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"LayoutLib.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"LayoutLib.styles.css"},"Patterns":null},"LayoutLib.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o5dp2pr57p-{0}-5phnxoj3fu-5phnxoj3fu.gz"},"Patterns":null},"resources":{"Children":{"SharedRes.ar.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"resources/SharedRes.ar.json"},"Patterns":null},"SharedRes.ar.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rx6wnqzng0-{0}-w52k902j3l-w52k902j3l.gz"},"Patterns":null},"SharedRes.en.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"resources/SharedRes.en.json"},"Patterns":null},"SharedRes.en.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zamg5qeycn-{0}-z8qc8wrh10-z8qc8wrh10.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Common":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"background.png"},"Patterns":null},"Common.dyev8wf6eo.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Common.bundle.scp.css"},"Patterns":null},"Common.dyev8wf6eo.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":3,"Pattern":"**","Depth":2}]},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/bin/Debug/net10.0/Media.dll b/bin/Debug/net10.0/Media.dll new file mode 100644 index 0000000..909b24e Binary files /dev/null and b/bin/Debug/net10.0/Media.dll differ diff --git a/bin/Debug/net10.0/Media.pdb b/bin/Debug/net10.0/Media.pdb new file mode 100644 index 0000000..9e33f61 Binary files /dev/null and b/bin/Debug/net10.0/Media.pdb differ diff --git a/bin/Debug/net10.0/Media.staticwebassets.endpoints.json b/bin/Debug/net10.0/Media.staticwebassets.endpoints.json new file mode 100644 index 0000000..be77358 --- /dev/null +++ b/bin/Debug/net10.0/Media.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"css/cropper.min.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"}]},{"Route":"css/cropper.min.ozxrxjrq84.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="},{"Name":"label","Value":"css/cropper.min.css.gz"}]},{"Route":"js/crop.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"js/crop.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"js/crop.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"}]},{"Route":"js/crop.rzaytjouo0.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="},{"Name":"label","Value":"js/crop.js.gz"}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"js/cropper.min.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"}]},{"Route":"js/cropper.min.llc9n82qda.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="},{"Name":"label","Value":"js/cropper.min.js.gz"}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"}]},{"Route":"js/mediaInterop.j3t2utpur3.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="},{"Name":"label","Value":"js/mediaInterop.js.gz"}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"js/mediaInterop.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="},{"Name":"label","Value":"lib/cropper.min.js.gz"}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"lib/cropper.min.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"lib/cropper.min.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"}]},{"Route":"lib/cropper.min.tef8z25zm7.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="},{"Name":"label","Value":"lib/cropper.min.css.gz"}]}]} \ No newline at end of file diff --git a/bin/Debug/net10.0/Media.staticwebassets.runtime.json b/bin/Debug/net10.0/Media.staticwebassets.runtime.json new file mode 100644 index 0000000..aca8c1f --- /dev/null +++ b/bin/Debug/net10.0/Media.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"css":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"crop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/crop.js"},"Patterns":null},"crop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz"},"Patterns":null},"mediaInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mediaInterop.js"},"Patterns":null},"mediaInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz"},"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/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/obj/Debug/net10.0/ECommerc.06AD4821.Up2Date b/obj/Debug/net10.0/ECommerc.06AD4821.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net10.0/ECommerce.RCL.AssemblyInfo.cs b/obj/Debug/net10.0/ECommerce.RCL.AssemblyInfo.cs new file mode 100644 index 0000000..9350d84 --- /dev/null +++ b/obj/Debug/net10.0/ECommerce.RCL.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ECommerce.RCL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+206dfeabd74212fb6442b2ac195b5904b0472cb7")] +[assembly: System.Reflection.AssemblyProductAttribute("ECommerce.RCL")] +[assembly: System.Reflection.AssemblyTitleAttribute("ECommerce.RCL")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net10.0/ECommerce.RCL.AssemblyInfoInputs.cache b/obj/Debug/net10.0/ECommerce.RCL.AssemblyInfoInputs.cache new file mode 100644 index 0000000..714db45 --- /dev/null +++ b/obj/Debug/net10.0/ECommerce.RCL.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +88a547e071b4f6170fc19519969be83e055ed907fb1534669ae3a3292853f528 diff --git a/obj/Debug/net10.0/ECommerce.RCL.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net10.0/ECommerce.RCL.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b667ed8 --- /dev/null +++ b/obj/Debug/net10.0/ECommerce.RCL.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,126 @@ +is_global = true +build_property.MudDebugAnalyzer = +build_property.MudAllowedAttributePattern = +build_property.MudAllowedAttributeList = +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows,browser +build_property.RootNamespace = ECommerce.RCL +build_property.RootNamespace = ECommerce.RCL +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/CategoryTreeSelect.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9DYXRlZ29yeVRyZWVTZWxlY3QucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Category/CategoryTreeItem.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9DYXRlZ29yeS9DYXRlZ29yeVRyZWVJdGVtLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Category/ManageCategory.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9DYXRlZ29yeS9NYW5hZ2VDYXRlZ29yeS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Category/ViewCategories.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9DYXRlZ29yeS9WaWV3Q2F0ZWdvcmllcy5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Home.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Ib21lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Product/ManageProduct.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Qcm9kdWN0L01hbmFnZVByb2R1Y3QucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Product/ViewProducts.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Qcm9kdWN0L1ZpZXdQcm9kdWN0cy5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/Components/BundleComp.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvQnVuZGxlQ29tcC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/Components/CategoryComp.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvQ2F0ZWdvcnlDb21wLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/Components/CategoryComp1.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvQ2F0ZWdvcnlDb21wMS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/Components/CategoryComp2.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvQ2F0ZWdvcnlDb21wMi5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/Components/ProductComp2.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvUHJvZHVjdENvbXAyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/Components/ProductComp3.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvUHJvZHVjdENvbXAzLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/Components/ProductComp4.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvUHJvZHVjdENvbXA0LnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/Components/ProductComp5.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvUHJvZHVjdENvbXA1LnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/ProductPage.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1Byb2R1Y3RQYWdlLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/Shop.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1Nob3AucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/ViewBundle.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1ZpZXdCdW5kbGUucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/ViewBundles.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1ZpZXdCdW5kbGVzLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/ViewCategories.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1ZpZXdDYXRlZ29yaWVzLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/ViewCategory.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1ZpZXdDYXRlZ29yeS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Pages/Shop/ViewProduct.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1ZpZXdQcm9kdWN0LnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Components/Shared/MultiLangInput.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9TaGFyZWQvTXVsdGlMYW5nSW5wdXQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/Component1.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50MS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-fqoqvstwic diff --git a/obj/Debug/net10.0/ECommerce.RCL.GlobalUsings.g.cs b/obj/Debug/net10.0/ECommerce.RCL.GlobalUsings.g.cs new file mode 100644 index 0000000..a32ec4a --- /dev/null +++ b/obj/Debug/net10.0/ECommerce.RCL.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using Microsoft.Extensions.Validation.Embedded; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Debug/net10.0/ECommerce.RCL.assets.cache b/obj/Debug/net10.0/ECommerce.RCL.assets.cache new file mode 100644 index 0000000..e2fdd9e Binary files /dev/null and b/obj/Debug/net10.0/ECommerce.RCL.assets.cache differ diff --git a/obj/Debug/net10.0/ECommerce.RCL.csproj.AssemblyReference.cache b/obj/Debug/net10.0/ECommerce.RCL.csproj.AssemblyReference.cache new file mode 100644 index 0000000..c30e98a Binary files /dev/null and b/obj/Debug/net10.0/ECommerce.RCL.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net10.0/ECommerce.RCL.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0/ECommerce.RCL.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e6644dd --- /dev/null +++ b/obj/Debug/net10.0/ECommerce.RCL.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +854835199c49d19cb3e9e3d1a6147d820f33d7241afb6456061c259957a90687 diff --git a/obj/Debug/net10.0/ECommerce.RCL.csproj.FileListAbsolute.txt b/obj/Debug/net10.0/ECommerce.RCL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..b3853ab --- /dev/null +++ b/obj/Debug/net10.0/ECommerce.RCL.csproj.FileListAbsolute.txt @@ -0,0 +1,8 @@ +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/obj/Debug/net10.0/EmbeddedAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/obj/Debug/net10.0/ECommerce.RCL.csproj.AssemblyReference.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/obj/Debug/net10.0/ECommerce.RCL.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/obj/Debug/net10.0/ECommerce.RCL.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/obj/Debug/net10.0/ECommerce.RCL.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/obj/Debug/net10.0/ECommerce.RCL.csproj.CoreCompileInputs.cache diff --git a/obj/Debug/net10.0/ECommerceModule.AssemblyInfo.cs b/obj/Debug/net10.0/ECommerceModule.AssemblyInfo.cs new file mode 100644 index 0000000..3861946 --- /dev/null +++ b/obj/Debug/net10.0/ECommerceModule.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ECommerceModule")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+89d8c7f2868cdc25655d2a003c6dc8ab9e106e46")] +[assembly: System.Reflection.AssemblyProductAttribute("ECommerceModule")] +[assembly: System.Reflection.AssemblyTitleAttribute("ECommerceModule")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net10.0/ECommerceModule.AssemblyInfoInputs.cache b/obj/Debug/net10.0/ECommerceModule.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f3839c0 --- /dev/null +++ b/obj/Debug/net10.0/ECommerceModule.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +00cf96c7996630619aa8b79404a13d3c4dbe5a34ccf1f19854e2e20eee67ec74 diff --git a/obj/Debug/net10.0/ECommerceModule.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net10.0/ECommerceModule.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..435438c --- /dev/null +++ b/obj/Debug/net10.0/ECommerceModule.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,123 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows,browser +build_property.RootNamespace = ECommerceModule +build_property.RootNamespace = ECommerceModule +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/CategoryTreeSelect.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9DYXRlZ29yeVRyZWVTZWxlY3QucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Category/CategoryTreeItem.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9DYXRlZ29yeS9DYXRlZ29yeVRyZWVJdGVtLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Category/ManageCategory.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9DYXRlZ29yeS9NYW5hZ2VDYXRlZ29yeS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Category/ViewCategories.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9DYXRlZ29yeS9WaWV3Q2F0ZWdvcmllcy5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Home.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Ib21lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Product/ManageProduct.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Qcm9kdWN0L01hbmFnZVByb2R1Y3QucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Product/ViewProducts.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Qcm9kdWN0L1ZpZXdQcm9kdWN0cy5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/Components/BundleComp.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvQnVuZGxlQ29tcC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/Components/CategoryComp.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvQ2F0ZWdvcnlDb21wLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/Components/CategoryComp1.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvQ2F0ZWdvcnlDb21wMS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/Components/CategoryComp2.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvQ2F0ZWdvcnlDb21wMi5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/Components/ProductComp2.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvUHJvZHVjdENvbXAyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/Components/ProductComp3.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvUHJvZHVjdENvbXAzLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/Components/ProductComp4.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvUHJvZHVjdENvbXA0LnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/Components/ProductComp5.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL0NvbXBvbmVudHMvUHJvZHVjdENvbXA1LnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/ProductPage.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1Byb2R1Y3RQYWdlLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/Shop.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1Nob3AucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/ViewBundle.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1ZpZXdCdW5kbGUucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/ViewBundles.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1ZpZXdCdW5kbGVzLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/ViewCategories.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1ZpZXdDYXRlZ29yaWVzLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/ViewCategory.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1ZpZXdDYXRlZ29yeS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Pages/Shop/ViewProduct.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TaG9wL1ZpZXdQcm9kdWN0LnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Components/Shared/MultiLangInput.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9TaGFyZWQvTXVsdGlMYW5nSW5wdXQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/Component1.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50MS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-6ee00tha8c diff --git a/obj/Debug/net10.0/ECommerceModule.GlobalUsings.g.cs b/obj/Debug/net10.0/ECommerceModule.GlobalUsings.g.cs new file mode 100644 index 0000000..a32ec4a --- /dev/null +++ b/obj/Debug/net10.0/ECommerceModule.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using Microsoft.Extensions.Validation.Embedded; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Debug/net10.0/ECommerceModule.assets.cache b/obj/Debug/net10.0/ECommerceModule.assets.cache new file mode 100644 index 0000000..2e508c3 Binary files /dev/null and b/obj/Debug/net10.0/ECommerceModule.assets.cache differ diff --git a/obj/Debug/net10.0/ECommerceModule.csproj.AssemblyReference.cache b/obj/Debug/net10.0/ECommerceModule.csproj.AssemblyReference.cache new file mode 100644 index 0000000..129c0e5 Binary files /dev/null and b/obj/Debug/net10.0/ECommerceModule.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net10.0/ECommerceModule.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0/ECommerceModule.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..33f8656 --- /dev/null +++ b/obj/Debug/net10.0/ECommerceModule.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +904d1a4e79bc8c7876ee14132d429744c01c4d5eda0ff6ee1d84c6728ed5a18a diff --git a/obj/Debug/net10.0/ECommerceModule.csproj.FileListAbsolute.txt b/obj/Debug/net10.0/ECommerceModule.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e2a8af7 --- /dev/null +++ b/obj/Debug/net10.0/ECommerceModule.csproj.FileListAbsolute.txt @@ -0,0 +1,62 @@ +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Common.staticwebassets.runtime.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Common.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Carousel.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Media.staticwebassets.runtime.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Media.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/ImageViewer.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/LayoutLib.staticwebassets.runtime.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/LayoutLib.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/ECommerceModule.staticwebassets.runtime.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/ECommerceModule.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/ECommerceModule.deps.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/ECommerceModule.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/ECommerceModule.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Carousel.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Common.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/ECommerce.Contracts.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Generic.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/ImageViewer.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/LayoutLib.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Media.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Generic.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Common.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Carousel.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/Media.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/ImageViewer.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/LayoutLib.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/bin/Debug/net10.0/ECommerce.Contracts.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/EmbeddedAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/ECommerceModule.csproj.AssemblyReference.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/ECommerceModule.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/ECommerceModule.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/ECommerceModule.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/ECommerceModule.csproj.CoreCompileInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/40h8xxbt01-{0}-pg7bw5f13f-pg7bw5f13f.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/staticwebassets.build.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/staticwebassets.development.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/swae.build.ex.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/staticwebassets/msbuild.ECommerceModule.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/staticwebassets/msbuild.ECommerceModule.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/staticwebassets/msbuild.build.ECommerceModule.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ECommerceModule.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ECommerceModule.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/staticwebassets.pack.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/ECommerc.06AD4821.Up2Date +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/ECommerceModule.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/refint/ECommerceModule.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/ECommerceModule.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/ref/ECommerceModule.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz diff --git a/obj/Debug/net10.0/ECommerceModule.dll b/obj/Debug/net10.0/ECommerceModule.dll new file mode 100644 index 0000000..e977a03 Binary files /dev/null and b/obj/Debug/net10.0/ECommerceModule.dll differ diff --git a/obj/Debug/net10.0/ECommerceModule.pdb b/obj/Debug/net10.0/ECommerceModule.pdb new file mode 100644 index 0000000..91cd40f Binary files /dev/null and b/obj/Debug/net10.0/ECommerceModule.pdb differ diff --git a/obj/Debug/net10.0/EmbeddedAttribute.cs b/obj/Debug/net10.0/EmbeddedAttribute.cs new file mode 100644 index 0000000..1931537 --- /dev/null +++ b/obj/Debug/net10.0/EmbeddedAttribute.cs @@ -0,0 +1,7 @@ +// +namespace Microsoft.CodeAnalysis +{ +internal sealed partial class EmbeddedAttribute : global::System.Attribute +{ +} +} diff --git a/obj/Debug/net10.0/ValidatableTypeAttribute.cs b/obj/Debug/net10.0/ValidatableTypeAttribute.cs new file mode 100644 index 0000000..26eb880 --- /dev/null +++ b/obj/Debug/net10.0/ValidatableTypeAttribute.cs @@ -0,0 +1,9 @@ +// +namespace Microsoft.Extensions.Validation.Embedded +{ +[global::Microsoft.CodeAnalysis.EmbeddedAttribute] +[global::System.AttributeUsage(global::System.AttributeTargets.Class)] +internal sealed class ValidatableTypeAttribute : global::System.Attribute +{ +} +} diff --git a/obj/Debug/net10.0/compressed/0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz b/obj/Debug/net10.0/compressed/0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz new file mode 100644 index 0000000..e9e5a38 Binary files /dev/null and b/obj/Debug/net10.0/compressed/0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz differ diff --git a/obj/Debug/net10.0/compressed/40h8xxbt01-{0}-pg7bw5f13f-pg7bw5f13f.gz b/obj/Debug/net10.0/compressed/40h8xxbt01-{0}-pg7bw5f13f-pg7bw5f13f.gz new file mode 100644 index 0000000..d639f3e Binary files /dev/null and b/obj/Debug/net10.0/compressed/40h8xxbt01-{0}-pg7bw5f13f-pg7bw5f13f.gz differ diff --git a/obj/Debug/net10.0/compressed/co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz b/obj/Debug/net10.0/compressed/co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz new file mode 100644 index 0000000..f6855b0 Binary files /dev/null and b/obj/Debug/net10.0/compressed/co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz differ diff --git a/obj/Debug/net10.0/compressed/lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz b/obj/Debug/net10.0/compressed/lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz new file mode 100644 index 0000000..457c180 Binary files /dev/null and b/obj/Debug/net10.0/compressed/lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz differ diff --git a/obj/Debug/net10.0/compressed/r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz b/obj/Debug/net10.0/compressed/r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz new file mode 100644 index 0000000..5b7a99f Binary files /dev/null and b/obj/Debug/net10.0/compressed/r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz differ diff --git a/obj/Debug/net10.0/rbcswa.dswa.cache.json b/obj/Debug/net10.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..adb9c3c --- /dev/null +++ b/obj/Debug/net10.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["iku/bJgHOcHhm9KesP\u002BG7kBSbZBiZUVhrt3hkrW61g4=","e7pJlN\u002BUTKpSDGdGzRupdBrdnUPLivwZjNMjc2UcXoQ=","c8DlISrQ3O9VaIqaT53lBrOFndg6PKxHiqyPNtm7uso=","UygugArZ0j1kLCV\u002BSN56Y/uKqw5gjQAmJzqBgsCo\u002B5M=","cFDkMJf/8E32PnrEIX\u002BcAchxzgm4945nkM1y88tJsGY="],"CachedAssets":{"iku/bJgHOcHhm9KesP\u002BG7kBSbZBiZUVhrt3hkrW61g4=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz","SourceId":"ECommerceModule","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","BasePath":"_content/ECommerceModule","RelativePath":"exampleJsInterop#[.{fingerprint=luzdqbu196}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/exampleJsInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0plubunr1s","Integrity":"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/exampleJsInterop.js","FileLength":183,"LastWriteTime":"2026-02-01T13:14:51.1902669+00:00"},"c8DlISrQ3O9VaIqaT53lBrOFndg6PKxHiqyPNtm7uso=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz","SourceId":"ECommerceModule","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","BasePath":"_content/ECommerceModule","RelativePath":"resources/SharedRes.ar#[.{fingerprint=6ep70s2n95}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.ar.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hf2tbu84aa","Integrity":"jVRRSyZr3/V/gIij0DCowJqk/\u002BcdZFHf4rLmVWqSATE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.ar.json","FileLength":85,"LastWriteTime":"2026-02-01T14:03:51.8066098+00:00"},"e7pJlN\u002BUTKpSDGdGzRupdBrdnUPLivwZjNMjc2UcXoQ=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz","SourceId":"ECommerceModule","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","BasePath":"_content/ECommerceModule","RelativePath":"resources/SharedRes#[.{fingerprint=48a6awhjzd}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ph1co5gix9","Integrity":"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.json","FileLength":22,"LastWriteTime":"2026-02-01T13:14:51.1902669+00:00"},"UygugArZ0j1kLCV\u002BSN56Y/uKqw5gjQAmJzqBgsCo\u002B5M=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz","SourceId":"ECommerceModule","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","BasePath":"_content/ECommerceModule","RelativePath":"ECommerceModule#[.{fingerprint=5b8rchxmj9}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tsjljf7ujf","Integrity":"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css","FileLength":234,"LastWriteTime":"2026-02-01T13:14:51.1902669+00:00"},"cFDkMJf/8E32PnrEIX\u002BcAchxzgm4945nkM1y88tJsGY=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/40h8xxbt01-{0}-pg7bw5f13f-pg7bw5f13f.gz","SourceId":"ECommerceModule","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","BasePath":"_content/ECommerceModule","RelativePath":"ECommerceModule#[.{fingerprint=pg7bw5f13f}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"i42tyi17u3","Integrity":"AmqItgSC6x5CSo\u002BzUIVGIHLsoSNzjQH3KUh4ezdF148=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css","FileLength":173,"LastWriteTime":"2026-02-01T13:14:51.1902669+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/ref/ECommerceModule.dll b/obj/Debug/net10.0/ref/ECommerceModule.dll new file mode 100644 index 0000000..9e5a2cb Binary files /dev/null and b/obj/Debug/net10.0/ref/ECommerceModule.dll differ diff --git a/obj/Debug/net10.0/refint/ECommerceModule.dll b/obj/Debug/net10.0/refint/ECommerceModule.dll new file mode 100644 index 0000000..9e5a2cb Binary files /dev/null and b/obj/Debug/net10.0/refint/ECommerceModule.dll differ diff --git a/obj/Debug/net10.0/rjimswa.dswa.cache.json b/obj/Debug/net10.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..a33cce5 --- /dev/null +++ b/obj/Debug/net10.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"t7j9ne3qaZND66iKxq3JsXzwvzHu0P1vAY9ejjYNRew=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["IJekhR97QYrjuc/fsta77U7cdNeZk5J91eW4Xtzm/4Q=","l/NhsyYXIlcdnWR2JDDdbeImhaXBkrYo2T2pqRlZEdw=","WoIGbZ3vv53HsR5qjqvNTcmqET/HlYpMk5nCexsYHqI=","4hfTBerzyYOG9WDDF0toTSJb61kiwtIdWV00m0etQTE="],"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 new file mode 100644 index 0000000..1ca89a5 --- /dev/null +++ b/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"umV1dpECn5naURCbOPDF3iZlwuLRSXGrwgwtmzGbY6I=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["goLMQYJP9n8jdgWHeCkDWEw/TmJmozX5qRvaoT9gtoQ=","bWO8kKsufVHitC3iNwjFwhBp59L/4FSu1OCS7CfjAOg=","nUFsD55evtq9qNu5UkIu4EjLZWeV7w4zjU0CN6Ru6Wg=","sW/R5G6p38\u002BqjBEI9RJAIJhxasYSwd6FroH9ro26\u002BjU=","fn\u002BYvZ3xwkd43L12nuuxo3nKWVEkldxm\u002Bq3PMQDtI6c=","6sGOWKPI/WGut3LlJMxL3\u002B2gBKNgZKctEbYJ6wo25Zw=","ifjGiYpJYau7MCgMtqwAfraUXVhIKlRTo1NPtvAbESQ=","4Qa3r2ADzdxexhtGKtgrhM042EPmDvyRxijWk5j6vlM=","CLYw58It24TQgh9CsgjZpOOMKcPG8rdHmBbDCfuBNGE=","qdJWjBkLd/dr94r9xu27Dgp0qxyIiOJOAmJLiZHoBXs=","V\u002BSX4j2pOaNF5OvsJE9nAziR6Y2P\u002BjDmH0Pe3654K2w=","vDlF/YRcrrQSFnS/zbcFbFjY38daADAhzfyOdlRL8Ag=","KLesfmk9NWYgS1SX0Jm3dd8PXoyQQYf4VqDW9A2lepY=","r4l1Ll3W6CV/PGZ1IDsfX9Kd6g2\u002B8H\u002Bu1zt0HdW\u002Bn6Y=","36ys3dRvA1jdJesDn/KcBZQfFZiXiLWrzP\u002B1yeUe2aY=","Lq/PAYREFZl3FI81glidtSx2WxmYVZJ2Ou0iZH4qJW0=","DUzpKe1tvZEqNx7Wtko\u002BcntDQ4A1XDfCe\u002B1eymggAVE=","SBoeTla5gbGxZm2ajzj3ZO58VEPNjhU0haxUkGQwJBk=","T7piZbomNTETaniK4plhcs27ZyqR4Q/VNdU97bjnGMU=","1ngT56x50l72tjYE6Au9vXwUSiThCyl7dgIGp8WoyTg=","Uh/bSAQo1wajsBrUo5mANOqj8oY2spotwZ08\u002BzA5Kb8=","VUZ7xNgl1HZGTH8weqitiXhGWDmFUJZPQ9Lkxt6PqYA=","cXDSfbNqNQmskR6RBorh2Ka6NmXF0xzaPRtaaan8GbI=","tGepipQzPXh9WhDjZArj3hYuk8LIBGu9WNQm/G0Dnrg=","tIOSkUsP1JWEGB2iWUIaYGker5xJks8mBk2kKKNPX3I=","czj5bZcFsGRn5C4a1/lMTo8aqUWQDb\u002BlE7rZu8IvUK0=","aNpl7hv9TMHmdQRvOzlrMExHR\u002B\u002BEGn8ru4iBZ1Cmh4o=","PsQT5HTJWcki03Sabb113GlhLUVyZPXbjylTwOvGsug=","ZsFr681KxHA89OzZzPr6mStE3kEKTwgaWsHUtKu7ZJ8=","ixlS7bNGDW3iqGfFX4gAirg47GxJ9QM7TrhW2YKFgJw="],"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 new file mode 100644 index 0000000..8c21935 --- /dev/null +++ b/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"GHlgwabJI+rd2SLRU9t8wwjYe8loepRNHh5Jl+533ZA=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["goLMQYJP9n8jdgWHeCkDWEw/TmJmozX5qRvaoT9gtoQ=","bWO8kKsufVHitC3iNwjFwhBp59L/4FSu1OCS7CfjAOg=","nUFsD55evtq9qNu5UkIu4EjLZWeV7w4zjU0CN6Ru6Wg=","sW/R5G6p38\u002BqjBEI9RJAIJhxasYSwd6FroH9ro26\u002BjU=","fn\u002BYvZ3xwkd43L12nuuxo3nKWVEkldxm\u002Bq3PMQDtI6c=","6sGOWKPI/WGut3LlJMxL3\u002B2gBKNgZKctEbYJ6wo25Zw=","ifjGiYpJYau7MCgMtqwAfraUXVhIKlRTo1NPtvAbESQ=","4Qa3r2ADzdxexhtGKtgrhM042EPmDvyRxijWk5j6vlM=","CLYw58It24TQgh9CsgjZpOOMKcPG8rdHmBbDCfuBNGE=","qdJWjBkLd/dr94r9xu27Dgp0qxyIiOJOAmJLiZHoBXs=","V\u002BSX4j2pOaNF5OvsJE9nAziR6Y2P\u002BjDmH0Pe3654K2w=","vDlF/YRcrrQSFnS/zbcFbFjY38daADAhzfyOdlRL8Ag=","KLesfmk9NWYgS1SX0Jm3dd8PXoyQQYf4VqDW9A2lepY=","r4l1Ll3W6CV/PGZ1IDsfX9Kd6g2\u002B8H\u002Bu1zt0HdW\u002Bn6Y=","36ys3dRvA1jdJesDn/KcBZQfFZiXiLWrzP\u002B1yeUe2aY=","Lq/PAYREFZl3FI81glidtSx2WxmYVZJ2Ou0iZH4qJW0=","DUzpKe1tvZEqNx7Wtko\u002BcntDQ4A1XDfCe\u002B1eymggAVE=","SBoeTla5gbGxZm2ajzj3ZO58VEPNjhU0haxUkGQwJBk=","T7piZbomNTETaniK4plhcs27ZyqR4Q/VNdU97bjnGMU=","1ngT56x50l72tjYE6Au9vXwUSiThCyl7dgIGp8WoyTg=","Uh/bSAQo1wajsBrUo5mANOqj8oY2spotwZ08\u002BzA5Kb8=","VUZ7xNgl1HZGTH8weqitiXhGWDmFUJZPQ9Lkxt6PqYA=","cXDSfbNqNQmskR6RBorh2Ka6NmXF0xzaPRtaaan8GbI=","tGepipQzPXh9WhDjZArj3hYuk8LIBGu9WNQm/G0Dnrg=","tIOSkUsP1JWEGB2iWUIaYGker5xJks8mBk2kKKNPX3I=","czj5bZcFsGRn5C4a1/lMTo8aqUWQDb\u002BlE7rZu8IvUK0=","aNpl7hv9TMHmdQRvOzlrMExHR\u002B\u002BEGn8ru4iBZ1Cmh4o=","PsQT5HTJWcki03Sabb113GlhLUVyZPXbjylTwOvGsug=","ZsFr681KxHA89OzZzPr6mStE3kEKTwgaWsHUtKu7ZJ8=","ixlS7bNGDW3iqGfFX4gAirg47GxJ9QM7TrhW2YKFgJw="],"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 new file mode 100644 index 0000000..1174e4c --- /dev/null +++ b/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"+F4sRT7ClQLFCQpgydg+2cmf/21le87w6L2F7ml21cM=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["ofmK1rWLWHfUaYn5fEN9OHyIvxNB/xXAcRgPz7OEees=","ohwkVO4UR12m/xlmkCNOys8clIIfnEciEvdwDYgn2yc=","OcC0bg7lM15npOyNx\u002Bc3fL139vkYPOuTuuR0WrogsYk=","RBEAUoYZeO3hyB5PipaZd5y\u002BE1/LGdWD\u002Bg4WSLI775c=","8LbwlgqPCeGEwNVn2u1tm/eeNXrc2c3P1VKIPslkhJ0=","RXOqzx/B2iOFJzkeO\u002BUc/yv4wO\u002BHV9tk\u002BNmKuaeQcZ8=","eYAjdipqHx7zAlGIkiMq5cBJ9NQjJejzuJYYBPN6kXU=","ogFh//L6rpDjVJ13MD7LLOQMNSRTRwBi\u002B1hMzvAqlXs=","fK9u8uAWo21A5MSxZnm04F/BwRM/4z0SgczJr6Vs6GA=","nsrxNAdfH6vTRHfSlHCZ6EIzYsSQZhvdE3qwTpLw8hU=","IPnS62H96kYf8D0/V7l9K683N/wc7WdqSMFzGxotOR8=","wAjqujFf7gWRxH4zQrpelmHHuyMT\u002BibmP/KM9MHC8Oc=","gbNexX/aIFcGaUDD4sh8eCol2DTwEIlWlrJ3NdHmn\u002BQ=","OQ1AXWuYnIdEAzrYCfrCb\u002Ba8GVzV2lXh54GiL7G5LEw=","CpRcJZ2HFHeWy0nL4c9Du9xx\u002Bj4ia8jsJRai4NdSJI0=","\u002Brr29mswLttti8nP0l7D2gvmEi8/6SCguzhRFYxnqhQ=","YyQZuWtw5mQIy3StKlRpfBBLNV0zcKOveHdtk/hC0DI=","axOw\u002BTUdiygDe77LZxXMUEO4pRmk5Wo4\u002BZ8rPjqIzu4=","AfJZYUIknFpbMOL9FHToa19gmVASWitOtyENZWuYS38=","SDAdTra1ViWX55/a9EgXrDPYKNf9b\u002ByUe26WR0DfcgE=","6tRwDnX9dcqS9LjrdJmgAa/2/M/uCbmVeHlwmugNF5I=","cEs4lZeWb03AVJQ2Jt82uQ5GI6ZQlSP1KSxSkDW7AVA=","fUL9cb9gEUUa638xhmSD0l\u002BCWh4R30MbI2K\u002BiF5Icak=","kNuSUmbQlqtojSoNUw9ltr/a2H68TBJLxphLu7\u002B\u002B9\u002Bk=","RZrhduh0Gq8MOP7K\u002BunSllx1fnhr\u002BbHaOowLvjkkp/s=","6oNOPayDKfcEDfN\u002B02y44nzzu4CLE6ddws2ahRO2TH8=","d5rCg\u002BIy3x4F0HsHwexGcrFXtZcZGVWWAMHYiMTeUh4=","llSAWYqTMeIV2SKUmlos5FskOqfgwfWNsyb5SsGGEyM=","T4pvmsCmI3RkO5ypS4VftUESt0mFLzrWsHE0HXH29DU="],"CachedAssets":{"ofmK1rWLWHfUaYn5fEN9OHyIvxNB/xXAcRgPz7OEees=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/wwwroot/background.png","SourceId":"ECommerce.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/wwwroot/","BasePath":"_content/ECommerce.RCL","RelativePath":"background#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"x2rx4ajns0","Integrity":"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/background.png","FileLength":378,"LastWriteTime":"2025-09-30T09:24:51.3422964+00:00"},"ohwkVO4UR12m/xlmkCNOys8clIIfnEciEvdwDYgn2yc=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/wwwroot/exampleJsInterop.js","SourceId":"ECommerce.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/wwwroot/","BasePath":"_content/ECommerce.RCL","RelativePath":"exampleJsInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"luzdqbu196","Integrity":"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/exampleJsInterop.js","FileLength":241,"LastWriteTime":"2025-09-30T09:24:51.3429172+00:00"},"OcC0bg7lM15npOyNx\u002Bc3fL139vkYPOuTuuR0WrogsYk=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/wwwroot/resources/SharedRes.ar.json","SourceId":"ECommerce.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/wwwroot/","BasePath":"_content/ECommerce.RCL","RelativePath":"resources/SharedRes.ar#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"6ep70s2n95","Integrity":"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/resources/SharedRes.ar.json","FileLength":74,"LastWriteTime":"2026-02-01T14:01:41.0041735+00:00"},"RBEAUoYZeO3hyB5PipaZd5y\u002BE1/LGdWD\u002Bg4WSLI775c=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/wwwroot/resources/SharedRes.json","SourceId":"ECommerce.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/wwwroot/","BasePath":"_content/ECommerce.RCL","RelativePath":"resources/SharedRes#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"48a6awhjzd","Integrity":"RBNvo1WzZ4oRRq0W9\u002BhknpT7T8If536DEMBg9hyq/4o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/resources/SharedRes.json","FileLength":2,"LastWriteTime":"2025-12-21T05:30:24.1538271+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css b/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css new file mode 100644 index 0000000..56ed049 --- /dev/null +++ b/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css @@ -0,0 +1,6 @@ +.my-component[b-6ee00tha8c] { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css b/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css new file mode 100644 index 0000000..3e6ed74 --- /dev/null +++ b/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css @@ -0,0 +1,10 @@ +@import '_content/Common/Common.dyev8wf6eo.bundle.scp.css'; +@import '_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css'; + +/* _content/ECommerceModule/Component1.razor.rz.scp.css */ +.my-component[b-6ee00tha8c] { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css b/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css new file mode 100644 index 0000000..a6a3dd5 --- /dev/null +++ b/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css @@ -0,0 +1,7 @@ +/* _content/ECommerceModule/Component1.razor.rz.scp.css */ +.my-component[b-6ee00tha8c] { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..a44bb33 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"ECommerceModule.5b8rchxmj9.styles.css","AssetFile":"ECommerceModule.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004255319149"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5b8rchxmj9"},{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="},{"Name":"label","Value":"ECommerceModule.styles.css"},{"Name":"original-resource","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""}]},{"Route":"ECommerceModule.5b8rchxmj9.styles.css","AssetFile":"ECommerceModule.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5b8rchxmj9"},{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="},{"Name":"label","Value":"ECommerceModule.styles.css"}]},{"Route":"ECommerceModule.5b8rchxmj9.styles.css.gz","AssetFile":"ECommerceModule.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5b8rchxmj9"},{"Name":"integrity","Value":"sha256-fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc="},{"Name":"label","Value":"ECommerceModule.styles.css.gz"}]},{"Route":"ECommerceModule.styles.css","AssetFile":"ECommerceModule.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004255319149"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="},{"Name":"original-resource","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""}]},{"Route":"ECommerceModule.styles.css","AssetFile":"ECommerceModule.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="}]},{"Route":"ECommerceModule.styles.css.gz","AssetFile":"ECommerceModule.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc="}]},{"Route":"_content/Common/Common.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"_content/Common/Common.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"_content/Common/Common.bundle.scp.css.gz","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css"},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css"}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","AssetFile":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css.gz"}]},{"Route":"_content/Common/background.png","AssetFile":"_content/Common/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"_content/Common/background.x2rx4ajns0.png","AssetFile":"_content/Common/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"_content/Common/background.png"}]},{"Route":"_content/Common/css/carousal.js","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"_content/Common/css/carousal.js","AssetFile":"_content/Common/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"_content/Common/css/carousal.js.gz","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"_content/Common/css/carousal.js"},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js","AssetFile":"_content/Common/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"_content/Common/css/carousal.js"}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js.gz","AssetFile":"_content/Common/css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"_content/Common/css/carousal.js.gz"}]},{"Route":"_content/Common/exampleJsInterop.js","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/Common/exampleJsInterop.js","AssetFile":"_content/Common/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"_content/Common/exampleJsInterop.js.gz","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js","AssetFile":"_content/Common/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js"}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js.gz","AssetFile":"_content/Common/exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js.gz"}]},{"Route":"_content/LayoutLib/LayoutLib.bundle.scp.css","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005882352941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="},{"Name":"original-resource","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""}]},{"Route":"_content/LayoutLib/LayoutLib.bundle.scp.css","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"195"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="}]},{"Route":"_content/LayoutLib/LayoutLib.bundle.scp.css.gz","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo="}]},{"Route":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005882352941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wql9u47zkx"},{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="},{"Name":"label","Value":"_content/LayoutLib/LayoutLib.bundle.scp.css"},{"Name":"original-resource","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""}]},{"Route":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"195"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wql9u47zkx"},{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="},{"Name":"label","Value":"_content/LayoutLib/LayoutLib.bundle.scp.css"}]},{"Route":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css.gz","AssetFile":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wql9u47zkx"},{"Name":"integrity","Value":"sha256-76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo="},{"Name":"label","Value":"_content/LayoutLib/LayoutLib.bundle.scp.css.gz"}]},{"Route":"_content/LayoutLib/background.png","AssetFile":"_content/LayoutLib/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"_content/LayoutLib/background.x2rx4ajns0.png","AssetFile":"_content/LayoutLib/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"_content/LayoutLib/background.png"}]},{"Route":"_content/LayoutLib/exampleJsInterop.js","AssetFile":"_content/LayoutLib/exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/LayoutLib/exampleJsInterop.js","AssetFile":"_content/LayoutLib/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"_content/LayoutLib/exampleJsInterop.js.gz","AssetFile":"_content/LayoutLib/exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"_content/LayoutLib/exampleJsInterop.luzdqbu196.js","AssetFile":"_content/LayoutLib/exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/LayoutLib/exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/LayoutLib/exampleJsInterop.luzdqbu196.js","AssetFile":"_content/LayoutLib/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/LayoutLib/exampleJsInterop.js"}]},{"Route":"_content/LayoutLib/exampleJsInterop.luzdqbu196.js.gz","AssetFile":"_content/LayoutLib/exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"_content/LayoutLib/exampleJsInterop.js.gz"}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.json","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005208333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"original-resource","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.json","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"258"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 14:44:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.json.gz","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg="}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.w52k902j3l.json","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005208333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.ar.json"},{"Name":"original-resource","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.w52k902j3l.json","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"258"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 14:44:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.ar.json"}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.w52k902j3l.json.gz","AssetFile":"_content/LayoutLib/resources/SharedRes.ar.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.ar.json.gz"}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.json","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008333333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"original-resource","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.json","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"204"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""},{"Name":"Last-Modified","Value":"Sat, 24 Jan 2026 19:32:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.json.gz","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0="}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.z8qc8wrh10.json","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008333333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.en.json"},{"Name":"original-resource","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.z8qc8wrh10.json","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"204"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""},{"Name":"Last-Modified","Value":"Sat, 24 Jan 2026 19:32:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.en.json"}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.z8qc8wrh10.json.gz","AssetFile":"_content/LayoutLib/resources/SharedRes.en.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.en.json.gz"}]},{"Route":"_content/Media/css/cropper.min.css","AssetFile":"_content/Media/css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"_content/Media/css/cropper.min.css","AssetFile":"_content/Media/css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"_content/Media/css/cropper.min.css.gz","AssetFile":"_content/Media/css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="}]},{"Route":"_content/Media/css/cropper.min.ozxrxjrq84.css","AssetFile":"_content/Media/css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"_content/Media/css/cropper.min.css"},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"_content/Media/css/cropper.min.ozxrxjrq84.css","AssetFile":"_content/Media/css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"_content/Media/css/cropper.min.css"}]},{"Route":"_content/Media/css/cropper.min.ozxrxjrq84.css.gz","AssetFile":"_content/Media/css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="},{"Name":"label","Value":"_content/Media/css/cropper.min.css.gz"}]},{"Route":"_content/Media/js/crop.js","AssetFile":"_content/Media/js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"_content/Media/js/crop.js","AssetFile":"_content/Media/js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"_content/Media/js/crop.js.gz","AssetFile":"_content/Media/js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="}]},{"Route":"_content/Media/js/crop.rzaytjouo0.js","AssetFile":"_content/Media/js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"_content/Media/js/crop.js"},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"_content/Media/js/crop.rzaytjouo0.js","AssetFile":"_content/Media/js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"_content/Media/js/crop.js"}]},{"Route":"_content/Media/js/crop.rzaytjouo0.js.gz","AssetFile":"_content/Media/js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="},{"Name":"label","Value":"_content/Media/js/crop.js.gz"}]},{"Route":"_content/Media/js/cropper.min.js","AssetFile":"_content/Media/js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"_content/Media/js/cropper.min.js","AssetFile":"_content/Media/js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"_content/Media/js/cropper.min.js.gz","AssetFile":"_content/Media/js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="}]},{"Route":"_content/Media/js/cropper.min.llc9n82qda.js","AssetFile":"_content/Media/js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"_content/Media/js/cropper.min.js"},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"_content/Media/js/cropper.min.llc9n82qda.js","AssetFile":"_content/Media/js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"_content/Media/js/cropper.min.js"}]},{"Route":"_content/Media/js/cropper.min.llc9n82qda.js.gz","AssetFile":"_content/Media/js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="},{"Name":"label","Value":"_content/Media/js/cropper.min.js.gz"}]},{"Route":"_content/Media/js/mediaInterop.j3t2utpur3.js","AssetFile":"_content/Media/js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"_content/Media/js/mediaInterop.js"},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"_content/Media/js/mediaInterop.j3t2utpur3.js","AssetFile":"_content/Media/js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"_content/Media/js/mediaInterop.js"}]},{"Route":"_content/Media/js/mediaInterop.j3t2utpur3.js.gz","AssetFile":"_content/Media/js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="},{"Name":"label","Value":"_content/Media/js/mediaInterop.js.gz"}]},{"Route":"_content/Media/js/mediaInterop.js","AssetFile":"_content/Media/js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"_content/Media/js/mediaInterop.js","AssetFile":"_content/Media/js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"_content/Media/js/mediaInterop.js.gz","AssetFile":"_content/Media/js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="}]},{"Route":"_content/Media/lib/cropper.min.9ydfkw1ttr.js","AssetFile":"_content/Media/lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"_content/Media/lib/cropper.min.js"},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"_content/Media/lib/cropper.min.9ydfkw1ttr.js","AssetFile":"_content/Media/lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"_content/Media/lib/cropper.min.js"}]},{"Route":"_content/Media/lib/cropper.min.9ydfkw1ttr.js.gz","AssetFile":"_content/Media/lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="},{"Name":"label","Value":"_content/Media/lib/cropper.min.js.gz"}]},{"Route":"_content/Media/lib/cropper.min.css","AssetFile":"_content/Media/lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"_content/Media/lib/cropper.min.css","AssetFile":"_content/Media/lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"_content/Media/lib/cropper.min.css.gz","AssetFile":"_content/Media/lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="}]},{"Route":"_content/Media/lib/cropper.min.js","AssetFile":"_content/Media/lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"_content/Media/lib/cropper.min.js","AssetFile":"_content/Media/lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"_content/Media/lib/cropper.min.js.gz","AssetFile":"_content/Media/lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="}]},{"Route":"_content/Media/lib/cropper.min.tef8z25zm7.css","AssetFile":"_content/Media/lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"_content/Media/lib/cropper.min.css"},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"_content/Media/lib/cropper.min.tef8z25zm7.css","AssetFile":"_content/Media/lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"_content/Media/lib/cropper.min.css"}]},{"Route":"_content/Media/lib/cropper.min.tef8z25zm7.css.gz","AssetFile":"_content/Media/lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="},{"Name":"label","Value":"_content/Media/lib/cropper.min.css.gz"}]},{"Route":"_content/MudBlazor/MudBlazor.min.b8x8f7e52z.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73366"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b8x8f7e52z"},{"Name":"integrity","Value":"sha256-O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606059"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73366"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8="}]},{"Route":"_content/MudBlazor/MudBlazor.min.sowobu9fea.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606059"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sowobu9fea"},{"Name":"integrity","Value":"sha256-fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"background.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]},{"Route":"resources/SharedRes.48a6awhjzd.json","AssetFile":"resources/SharedRes.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.043478260870"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"48a6awhjzd"},{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="},{"Name":"label","Value":"resources/SharedRes.json"},{"Name":"original-resource","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""}]},{"Route":"resources/SharedRes.48a6awhjzd.json","AssetFile":"resources/SharedRes.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 05:30:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"48a6awhjzd"},{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="},{"Name":"label","Value":"resources/SharedRes.json"}]},{"Route":"resources/SharedRes.48a6awhjzd.json.gz","AssetFile":"resources/SharedRes.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"48a6awhjzd"},{"Name":"integrity","Value":"sha256-c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw="},{"Name":"label","Value":"resources/SharedRes.json.gz"}]},{"Route":"resources/SharedRes.ar.6ep70s2n95.json","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.011627906977"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6ep70s2n95"},{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="},{"Name":"label","Value":"resources/SharedRes.ar.json"},{"Name":"original-resource","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""}]},{"Route":"resources/SharedRes.ar.6ep70s2n95.json","AssetFile":"resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"74"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:01:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6ep70s2n95"},{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="},{"Name":"label","Value":"resources/SharedRes.ar.json"}]},{"Route":"resources/SharedRes.ar.6ep70s2n95.json.gz","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6ep70s2n95"},{"Name":"integrity","Value":"sha256-jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE="},{"Name":"label","Value":"resources/SharedRes.ar.json.gz"}]},{"Route":"resources/SharedRes.ar.json","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.011627906977"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="},{"Name":"original-resource","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""}]},{"Route":"resources/SharedRes.ar.json","AssetFile":"resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"74"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:01:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="}]},{"Route":"resources/SharedRes.ar.json.gz","AssetFile":"resources/SharedRes.ar.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE="}]},{"Route":"resources/SharedRes.json","AssetFile":"resources/SharedRes.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.043478260870"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="},{"Name":"original-resource","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""}]},{"Route":"resources/SharedRes.json","AssetFile":"resources/SharedRes.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 05:30:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="}]},{"Route":"resources/SharedRes.json.gz","AssetFile":"resources/SharedRes.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw="}]}]} \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets.build.json b/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..283bec3 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"I+zMLUCiiROPW62nnQTM4J7pc2HDlMIKR30RIDBj5bc=","Source":"ECommerceModule","BasePath":"_content/ECommerceModule","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj","Version":2,"Source":"Carousel","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"","AdditionalPublishPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"","AdditionalBuildPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj","Version":2,"Source":"Common","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"","AdditionalPublishPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"","AdditionalBuildPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.csproj","Version":2,"Source":"ImageViewer","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"","AdditionalPublishPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"","AdditionalBuildPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.csproj","Version":2,"Source":"Media","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"","AdditionalPublishPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"","AdditionalBuildPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.csproj","Version":2,"Source":"LayoutLib","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"","AdditionalPublishPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"","AdditionalBuildPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained"}],"DiscoveryPatterns":[{"Name":"Common/wwwroot","Source":"Common","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","BasePath":"_content/Common","Pattern":"**"},{"Name":"ECommerceModule/wwwroot","Source":"ECommerceModule","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/","BasePath":"_content/ECommerceModule","Pattern":"**"},{"Name":"LayoutLib/wwwroot","Source":"LayoutLib","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/","BasePath":"_content/LayoutLib","Pattern":"**"},{"Name":"Media/wwwroot","Source":"Media","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","Pattern":"**"}],"Assets":[{"Identity":"/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/MudBlazor.min.css","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"sowobu9fea","Integrity":"fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/MudBlazor.min.css","FileLength":606059,"LastWriteTime":"2025-07-01T21:24:18+00:00"},{"Identity":"/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/MudBlazor.min.js","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"b8x8f7e52z","Integrity":"O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/MudBlazor.min.js","FileLength":73366,"LastWriteTime":"2025-07-01T21:24:18+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz","SourceId":"Common","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/","BasePath":"_content/Common","RelativePath":"exampleJsInterop#[.{fingerprint=luzdqbu196}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0plubunr1s","Integrity":"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","FileLength":183,"LastWriteTime":"2026-02-01T13:14:48+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz","SourceId":"Common","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/","BasePath":"_content/Common","RelativePath":"Common#[.{fingerprint=dyev8wf6eo}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/Common.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ev5quxslia","Integrity":"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/Common.bundle.scp.css","FileLength":165,"LastWriteTime":"2026-02-01T13:14:48+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz","SourceId":"Common","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/","BasePath":"_content/Common","RelativePath":"css/carousal#[.{fingerprint=vnhftjewbd}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bbx64jg9ax","Integrity":"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","FileLength":1155,"LastWriteTime":"2026-02-01T13:14:48+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/Common.bundle.scp.css","SourceId":"Common","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/","BasePath":"_content/Common","RelativePath":"Common#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"dyev8wf6eo","Integrity":"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/Common.bundle.scp.css","FileLength":192,"LastWriteTime":"2026-02-01T13:14:48+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/background.png","SourceId":"Common","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","BasePath":"_content/Common","RelativePath":"background#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"x2rx4ajns0","Integrity":"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/background.png","FileLength":378,"LastWriteTime":"2025-08-23T11:32:56+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","SourceId":"Common","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","BasePath":"_content/Common","RelativePath":"css/carousal#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"vnhftjewbd","Integrity":"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/carousal.js","FileLength":3499,"LastWriteTime":"2026-01-14T15:07:36+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","SourceId":"Common","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","BasePath":"_content/Common","RelativePath":"exampleJsInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"luzdqbu196","Integrity":"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/exampleJsInterop.js","FileLength":241,"LastWriteTime":"2025-08-23T11:32:56+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint=tef8z25zm7}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"36bdfox6nl","Integrity":"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","FileLength":1267,"LastWriteTime":"2026-02-01T13:14:47+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/","BasePath":"_content/Media","RelativePath":"css/cropper.min#[.{fingerprint=ozxrxjrq84}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u8tf0v9vye","Integrity":"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","FileLength":1334,"LastWriteTime":"2026-02-01T13:14:47+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/","BasePath":"_content/Media","RelativePath":"js/mediaInterop#[.{fingerprint=j3t2utpur3}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lr5mqwekj4","Integrity":"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","FileLength":545,"LastWriteTime":"2026-02-01T13:14:47+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/","BasePath":"_content/Media","RelativePath":"js/crop#[.{fingerprint=rzaytjouo0}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"oa685rju99","Integrity":"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","FileLength":918,"LastWriteTime":"2026-02-01T13:14:47+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/","BasePath":"_content/Media","RelativePath":"js/cropper.min#[.{fingerprint=llc9n82qda}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"in7fmyx85p","Integrity":"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","FileLength":6396,"LastWriteTime":"2026-02-01T13:14:47+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint=9ydfkw1ttr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mo4tr6x4yf","Integrity":"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","FileLength":12224,"LastWriteTime":"2026-02-01T13:14:47+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"css/cropper.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ozxrxjrq84","Integrity":"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/cropper.min.css","FileLength":4947,"LastWriteTime":"2025-12-21T15:00:39+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"js/crop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"rzaytjouo0","Integrity":"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/crop.js","FileLength":2474,"LastWriteTime":"2025-12-23T11:59:06+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"js/cropper.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"llc9n82qda","Integrity":"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/cropper.min.js","FileLength":22252,"LastWriteTime":"2025-12-21T18:23:00+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"js/mediaInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"j3t2utpur3","Integrity":"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/mediaInterop.js","FileLength":2220,"LastWriteTime":"2025-12-24T09:42:14+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tef8z25zm7","Integrity":"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/cropper.min.css","FileLength":3804,"LastWriteTime":"2025-08-11T12:38:41+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","SourceId":"Media","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"9ydfkw1ttr","Integrity":"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/cropper.min.js","FileLength":37035,"LastWriteTime":"2025-08-11T12:38:41+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/j230ay6ibu-{0}-luzdqbu196-luzdqbu196.gz","SourceId":"LayoutLib","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/","BasePath":"_content/LayoutLib","RelativePath":"exampleJsInterop#[.{fingerprint=luzdqbu196}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/exampleJsInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0plubunr1s","Integrity":"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/exampleJsInterop.js","FileLength":183,"LastWriteTime":"2026-02-01T13:14:49+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/rx6wnqzng0-{0}-w52k902j3l-w52k902j3l.gz","SourceId":"LayoutLib","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/","BasePath":"_content/LayoutLib","RelativePath":"resources/SharedRes.ar#[.{fingerprint=w52k902j3l}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/resources/SharedRes.ar.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ufz0tcsp3o","Integrity":"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/resources/SharedRes.ar.json","FileLength":191,"LastWriteTime":"2026-02-01T13:14:49+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/s5p096awx1-{0}-wql9u47zkx-wql9u47zkx.gz","SourceId":"LayoutLib","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/","BasePath":"_content/LayoutLib","RelativePath":"LayoutLib#[.{fingerprint=wql9u47zkx}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/projectbundle/LayoutLib.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jfg7xf47l2","Integrity":"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/projectbundle/LayoutLib.bundle.scp.css","FileLength":169,"LastWriteTime":"2026-02-01T13:14:49+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/zamg5qeycn-{0}-z8qc8wrh10-z8qc8wrh10.gz","SourceId":"LayoutLib","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/","BasePath":"_content/LayoutLib","RelativePath":"resources/SharedRes.en#[.{fingerprint=z8qc8wrh10}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/resources/SharedRes.en.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"551ikd409r","Integrity":"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/resources/SharedRes.en.json","FileLength":119,"LastWriteTime":"2026-02-01T13:14:49+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/projectbundle/LayoutLib.bundle.scp.css","SourceId":"LayoutLib","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/projectbundle/","BasePath":"_content/LayoutLib","RelativePath":"LayoutLib#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"wql9u47zkx","Integrity":"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/projectbundle/LayoutLib.bundle.scp.css","FileLength":195,"LastWriteTime":"2026-02-01T13:14:49+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/background.png","SourceId":"LayoutLib","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/","BasePath":"_content/LayoutLib","RelativePath":"background#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"x2rx4ajns0","Integrity":"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/background.png","FileLength":378,"LastWriteTime":"2025-08-23T11:32:12+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/exampleJsInterop.js","SourceId":"LayoutLib","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/","BasePath":"_content/LayoutLib","RelativePath":"exampleJsInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"luzdqbu196","Integrity":"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/exampleJsInterop.js","FileLength":241,"LastWriteTime":"2025-08-23T11:32:12+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/resources/SharedRes.ar.json","SourceId":"LayoutLib","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/","BasePath":"_content/LayoutLib","RelativePath":"resources/SharedRes.ar#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"w52k902j3l","Integrity":"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/resources/SharedRes.ar.json","FileLength":258,"LastWriteTime":"2026-01-21T14:44:12+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/resources/SharedRes.en.json","SourceId":"LayoutLib","SourceType":"Project","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/","BasePath":"_content/LayoutLib","RelativePath":"resources/SharedRes.en#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z8qc8wrh10","Integrity":"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/resources/SharedRes.en.json","FileLength":204,"LastWriteTime":"2026-01-24T19:32:51+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz","SourceId":"ECommerceModule","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","BasePath":"_content/ECommerceModule","RelativePath":"resources/SharedRes#[.{fingerprint=48a6awhjzd}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ph1co5gix9","Integrity":"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.json","FileLength":22,"LastWriteTime":"2026-02-01T13:14:51+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/40h8xxbt01-{0}-pg7bw5f13f-pg7bw5f13f.gz","SourceId":"ECommerceModule","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","BasePath":"_content/ECommerceModule","RelativePath":"ECommerceModule#[.{fingerprint=pg7bw5f13f}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"i42tyi17u3","Integrity":"AmqItgSC6x5CSo+zUIVGIHLsoSNzjQH3KUh4ezdF148=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css","FileLength":173,"LastWriteTime":"2026-02-01T13:14:51+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz","SourceId":"ECommerceModule","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","BasePath":"_content/ECommerceModule","RelativePath":"ECommerceModule#[.{fingerprint=5b8rchxmj9}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"tsjljf7ujf","Integrity":"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css","FileLength":234,"LastWriteTime":"2026-02-01T13:14:51+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz","SourceId":"ECommerceModule","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","BasePath":"_content/ECommerceModule","RelativePath":"exampleJsInterop#[.{fingerprint=luzdqbu196}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/exampleJsInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0plubunr1s","Integrity":"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/exampleJsInterop.js","FileLength":183,"LastWriteTime":"2026-02-01T13:14:51+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz","SourceId":"ECommerceModule","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","BasePath":"_content/ECommerceModule","RelativePath":"resources/SharedRes.ar#[.{fingerprint=6ep70s2n95}]?.json.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.ar.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hf2tbu84aa","Integrity":"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.ar.json","FileLength":85,"LastWriteTime":"2026-02-01T14:03:51+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css","SourceId":"ECommerceModule","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/","BasePath":"_content/ECommerceModule","RelativePath":"ECommerceModule#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"5b8rchxmj9","Integrity":"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css","FileLength":328,"LastWriteTime":"2026-02-01T13:14:51+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css","SourceId":"ECommerceModule","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/projectbundle/","BasePath":"_content/ECommerceModule","RelativePath":"ECommerceModule#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"pg7bw5f13f","Integrity":"iX5QgViS5FtT1PgBlP3dcUVWlJiBYHLEUxIqsE7/QmI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css","FileLength":201,"LastWriteTime":"2026-02-01T13:14:51+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/background.png","SourceId":"ECommerceModule","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/","BasePath":"_content/ECommerceModule","RelativePath":"background#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"x2rx4ajns0","Integrity":"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/background.png","FileLength":378,"LastWriteTime":"2025-09-30T09:24:51+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/exampleJsInterop.js","SourceId":"ECommerceModule","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/","BasePath":"_content/ECommerceModule","RelativePath":"exampleJsInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"luzdqbu196","Integrity":"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/exampleJsInterop.js","FileLength":241,"LastWriteTime":"2025-09-30T09:24:51+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.ar.json","SourceId":"ECommerceModule","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/","BasePath":"_content/ECommerceModule","RelativePath":"resources/SharedRes.ar#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"6ep70s2n95","Integrity":"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/resources/SharedRes.ar.json","FileLength":74,"LastWriteTime":"2026-02-01T14:01:41+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.json","SourceId":"ECommerceModule","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/","BasePath":"_content/ECommerceModule","RelativePath":"resources/SharedRes#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"48a6awhjzd","Integrity":"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/resources/SharedRes.json","FileLength":2,"LastWriteTime":"2025-12-21T05:30:24+00:00"}],"Endpoints":[{"Route":"ECommerceModule.5b8rchxmj9.styles.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004255319149"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5b8rchxmj9"},{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="},{"Name":"label","Value":"ECommerceModule.styles.css"},{"Name":"original-resource","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""}]},{"Route":"ECommerceModule.5b8rchxmj9.styles.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5b8rchxmj9"},{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="},{"Name":"label","Value":"ECommerceModule.styles.css"}]},{"Route":"ECommerceModule.5b8rchxmj9.styles.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5b8rchxmj9"},{"Name":"integrity","Value":"sha256-fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc="},{"Name":"label","Value":"ECommerceModule.styles.css.gz"}]},{"Route":"ECommerceModule.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/40h8xxbt01-{0}-pg7bw5f13f-pg7bw5f13f.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005747126437"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"173"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"AmqItgSC6x5CSo+zUIVGIHLsoSNzjQH3KUh4ezdF148=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iX5QgViS5FtT1PgBlP3dcUVWlJiBYHLEUxIqsE7/QmI="},{"Name":"original-resource","Value":"\"iX5QgViS5FtT1PgBlP3dcUVWlJiBYHLEUxIqsE7/QmI=\""}]},{"Route":"ECommerceModule.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"201"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iX5QgViS5FtT1PgBlP3dcUVWlJiBYHLEUxIqsE7/QmI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iX5QgViS5FtT1PgBlP3dcUVWlJiBYHLEUxIqsE7/QmI="}]},{"Route":"ECommerceModule.bundle.scp.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/40h8xxbt01-{0}-pg7bw5f13f-pg7bw5f13f.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"173"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"AmqItgSC6x5CSo+zUIVGIHLsoSNzjQH3KUh4ezdF148=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AmqItgSC6x5CSo+zUIVGIHLsoSNzjQH3KUh4ezdF148="}]},{"Route":"ECommerceModule.pg7bw5f13f.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/40h8xxbt01-{0}-pg7bw5f13f-pg7bw5f13f.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005747126437"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"173"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"AmqItgSC6x5CSo+zUIVGIHLsoSNzjQH3KUh4ezdF148=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pg7bw5f13f"},{"Name":"integrity","Value":"sha256-iX5QgViS5FtT1PgBlP3dcUVWlJiBYHLEUxIqsE7/QmI="},{"Name":"label","Value":"ECommerceModule.bundle.scp.css"},{"Name":"original-resource","Value":"\"iX5QgViS5FtT1PgBlP3dcUVWlJiBYHLEUxIqsE7/QmI=\""}]},{"Route":"ECommerceModule.pg7bw5f13f.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"201"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iX5QgViS5FtT1PgBlP3dcUVWlJiBYHLEUxIqsE7/QmI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pg7bw5f13f"},{"Name":"integrity","Value":"sha256-iX5QgViS5FtT1PgBlP3dcUVWlJiBYHLEUxIqsE7/QmI="},{"Name":"label","Value":"ECommerceModule.bundle.scp.css"}]},{"Route":"ECommerceModule.pg7bw5f13f.bundle.scp.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/40h8xxbt01-{0}-pg7bw5f13f-pg7bw5f13f.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"173"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"AmqItgSC6x5CSo+zUIVGIHLsoSNzjQH3KUh4ezdF148=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pg7bw5f13f"},{"Name":"integrity","Value":"sha256-AmqItgSC6x5CSo+zUIVGIHLsoSNzjQH3KUh4ezdF148="},{"Name":"label","Value":"ECommerceModule.bundle.scp.css.gz"}]},{"Route":"ECommerceModule.styles.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004255319149"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="},{"Name":"original-resource","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""}]},{"Route":"ECommerceModule.styles.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/ECommerceModule.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Link","Value":"<_content/Common/Common.dyev8wf6eo.bundle.scp.css>; rel=\"preload\"; as=\"style\", <_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0WL9uRN9o6E63k0c4esMGYkPijxC+x1duLs4EnYz2ck="}]},{"Route":"ECommerceModule.styles.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"234"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fdYpHJgYVSFEgLKjFRh7hcWmJloDx/0WQ78Ju8Faihc="}]},{"Route":"_content/Common/Common.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"_content/Common/Common.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/Common.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"_content/Common/Common.bundle.scp.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css"},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/Common.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css"}]},{"Route":"_content/Common/Common.dyev8wf6eo.bundle.scp.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="},{"Name":"label","Value":"_content/Common/Common.bundle.scp.css.gz"}]},{"Route":"_content/Common/background.png","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"_content/Common/background.x2rx4ajns0.png","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"_content/Common/background.png"}]},{"Route":"_content/Common/css/carousal.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"_content/Common/css/carousal.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"_content/Common/css/carousal.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"_content/Common/css/carousal.js"},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"_content/Common/css/carousal.js"}]},{"Route":"_content/Common/css/carousal.vnhftjewbd.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"_content/Common/css/carousal.js.gz"}]},{"Route":"_content/Common/exampleJsInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/Common/exampleJsInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"_content/Common/exampleJsInterop.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js"}]},{"Route":"_content/Common/exampleJsInterop.luzdqbu196.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"_content/Common/exampleJsInterop.js.gz"}]},{"Route":"_content/LayoutLib/LayoutLib.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/s5p096awx1-{0}-wql9u47zkx-wql9u47zkx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005882352941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="},{"Name":"original-resource","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""}]},{"Route":"_content/LayoutLib/LayoutLib.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/projectbundle/LayoutLib.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"195"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="}]},{"Route":"_content/LayoutLib/LayoutLib.bundle.scp.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/s5p096awx1-{0}-wql9u47zkx-wql9u47zkx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo="}]},{"Route":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/s5p096awx1-{0}-wql9u47zkx-wql9u47zkx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005882352941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wql9u47zkx"},{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="},{"Name":"label","Value":"_content/LayoutLib/LayoutLib.bundle.scp.css"},{"Name":"original-resource","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""}]},{"Route":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/projectbundle/LayoutLib.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"195"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wql9u47zkx"},{"Name":"integrity","Value":"sha256-WHTGGG62NBYLY3fhMU627V0ciYSDDOKBCKLTPQATOu0="},{"Name":"label","Value":"_content/LayoutLib/LayoutLib.bundle.scp.css"}]},{"Route":"_content/LayoutLib/LayoutLib.wql9u47zkx.bundle.scp.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/s5p096awx1-{0}-wql9u47zkx-wql9u47zkx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"169"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wql9u47zkx"},{"Name":"integrity","Value":"sha256-76sPcR+v1qgJCf/2YgJlFSSHzrrd4iJ0PJNQ5Fbs3Eo="},{"Name":"label","Value":"_content/LayoutLib/LayoutLib.bundle.scp.css.gz"}]},{"Route":"_content/LayoutLib/background.png","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"_content/LayoutLib/background.x2rx4ajns0.png","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"_content/LayoutLib/background.png"}]},{"Route":"_content/LayoutLib/exampleJsInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/j230ay6ibu-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/LayoutLib/exampleJsInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"_content/LayoutLib/exampleJsInterop.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/j230ay6ibu-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"_content/LayoutLib/exampleJsInterop.luzdqbu196.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/j230ay6ibu-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/LayoutLib/exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"_content/LayoutLib/exampleJsInterop.luzdqbu196.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"_content/LayoutLib/exampleJsInterop.js"}]},{"Route":"_content/LayoutLib/exampleJsInterop.luzdqbu196.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/j230ay6ibu-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"_content/LayoutLib/exampleJsInterop.js.gz"}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/rx6wnqzng0-{0}-w52k902j3l-w52k902j3l.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005208333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"original-resource","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"258"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 14:44:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.json.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/rx6wnqzng0-{0}-w52k902j3l-w52k902j3l.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg="}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.w52k902j3l.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/rx6wnqzng0-{0}-w52k902j3l-w52k902j3l.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005208333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.ar.json"},{"Name":"original-resource","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.w52k902j3l.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"258"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 14:44:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.ar.json"}]},{"Route":"_content/LayoutLib/resources/SharedRes.ar.w52k902j3l.json.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/rx6wnqzng0-{0}-w52k902j3l-w52k902j3l.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"191"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"w52k902j3l"},{"Name":"integrity","Value":"sha256-aqAUOmWpJYEqVwi7cTQFtfCEzk78obZ195AcfNRLTpg="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.ar.json.gz"}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/zamg5qeycn-{0}-z8qc8wrh10-z8qc8wrh10.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008333333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"original-resource","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/resources/SharedRes.en.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"204"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""},{"Name":"Last-Modified","Value":"Sat, 24 Jan 2026 19:32:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.json.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/zamg5qeycn-{0}-z8qc8wrh10-z8qc8wrh10.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0="}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.z8qc8wrh10.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/zamg5qeycn-{0}-z8qc8wrh10-z8qc8wrh10.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008333333333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.en.json"},{"Name":"original-resource","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.z8qc8wrh10.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/resources/SharedRes.en.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"204"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg=\""},{"Name":"Last-Modified","Value":"Sat, 24 Jan 2026 19:32:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-44f0YMMkZiMG4L510FizmT1i+ukZmQWFmhHYTBL+Rdg="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.en.json"}]},{"Route":"_content/LayoutLib/resources/SharedRes.en.z8qc8wrh10.json.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/zamg5qeycn-{0}-z8qc8wrh10-z8qc8wrh10.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"119"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z8qc8wrh10"},{"Name":"integrity","Value":"sha256-twH3rcUmLICkgqbNxoR8YBA7/6KTzxAa6J5Xs4FYND0="},{"Name":"label","Value":"_content/LayoutLib/resources/SharedRes.en.json.gz"}]},{"Route":"_content/Media/css/cropper.min.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"_content/Media/css/cropper.min.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"_content/Media/css/cropper.min.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="}]},{"Route":"_content/Media/css/cropper.min.ozxrxjrq84.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"_content/Media/css/cropper.min.css"},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"_content/Media/css/cropper.min.ozxrxjrq84.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"_content/Media/css/cropper.min.css"}]},{"Route":"_content/Media/css/cropper.min.ozxrxjrq84.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="},{"Name":"label","Value":"_content/Media/css/cropper.min.css.gz"}]},{"Route":"_content/Media/js/crop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"_content/Media/js/crop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"_content/Media/js/crop.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="}]},{"Route":"_content/Media/js/crop.rzaytjouo0.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"_content/Media/js/crop.js"},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"_content/Media/js/crop.rzaytjouo0.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"_content/Media/js/crop.js"}]},{"Route":"_content/Media/js/crop.rzaytjouo0.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="},{"Name":"label","Value":"_content/Media/js/crop.js.gz"}]},{"Route":"_content/Media/js/cropper.min.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"_content/Media/js/cropper.min.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"_content/Media/js/cropper.min.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="}]},{"Route":"_content/Media/js/cropper.min.llc9n82qda.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"_content/Media/js/cropper.min.js"},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"_content/Media/js/cropper.min.llc9n82qda.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"_content/Media/js/cropper.min.js"}]},{"Route":"_content/Media/js/cropper.min.llc9n82qda.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="},{"Name":"label","Value":"_content/Media/js/cropper.min.js.gz"}]},{"Route":"_content/Media/js/mediaInterop.j3t2utpur3.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"_content/Media/js/mediaInterop.js"},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"_content/Media/js/mediaInterop.j3t2utpur3.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"_content/Media/js/mediaInterop.js"}]},{"Route":"_content/Media/js/mediaInterop.j3t2utpur3.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="},{"Name":"label","Value":"_content/Media/js/mediaInterop.js.gz"}]},{"Route":"_content/Media/js/mediaInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"_content/Media/js/mediaInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"_content/Media/js/mediaInterop.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="}]},{"Route":"_content/Media/lib/cropper.min.9ydfkw1ttr.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"_content/Media/lib/cropper.min.js"},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"_content/Media/lib/cropper.min.9ydfkw1ttr.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"_content/Media/lib/cropper.min.js"}]},{"Route":"_content/Media/lib/cropper.min.9ydfkw1ttr.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="},{"Name":"label","Value":"_content/Media/lib/cropper.min.js.gz"}]},{"Route":"_content/Media/lib/cropper.min.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"_content/Media/lib/cropper.min.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"_content/Media/lib/cropper.min.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="}]},{"Route":"_content/Media/lib/cropper.min.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"_content/Media/lib/cropper.min.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"_content/Media/lib/cropper.min.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="}]},{"Route":"_content/Media/lib/cropper.min.tef8z25zm7.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"_content/Media/lib/cropper.min.css"},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"_content/Media/lib/cropper.min.tef8z25zm7.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"_content/Media/lib/cropper.min.css"}]},{"Route":"_content/Media/lib/cropper.min.tef8z25zm7.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="},{"Name":"label","Value":"_content/Media/lib/cropper.min.css.gz"}]},{"Route":"_content/MudBlazor/MudBlazor.min.b8x8f7e52z.js","AssetFile":"/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73366"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b8x8f7e52z"},{"Name":"integrity","Value":"sha256-O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606059"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73366"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-O2UJyVCl+4RaA/jZS/WQ4tMRIZbpXtfRhr5eVl0xLm8="}]},{"Route":"_content/MudBlazor/MudBlazor.min.sowobu9fea.css","AssetFile":"/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606059"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM=\""},{"Name":"Last-Modified","Value":"Tue, 01 Jul 2025 21:24:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sowobu9fea"},{"Name":"integrity","Value":"sha256-fC5+7WJvRi9RO0JSMRTe5Fw/ybv1XWp6LgTNpuRA4vM="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"background.png","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"exampleJsInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Tue, 30 Sep 2025 09:24:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]},{"Route":"resources/SharedRes.48a6awhjzd.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.043478260870"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"48a6awhjzd"},{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="},{"Name":"label","Value":"resources/SharedRes.json"},{"Name":"original-resource","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""}]},{"Route":"resources/SharedRes.48a6awhjzd.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 05:30:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"48a6awhjzd"},{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="},{"Name":"label","Value":"resources/SharedRes.json"}]},{"Route":"resources/SharedRes.48a6awhjzd.json.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"48a6awhjzd"},{"Name":"integrity","Value":"sha256-c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw="},{"Name":"label","Value":"resources/SharedRes.json.gz"}]},{"Route":"resources/SharedRes.ar.6ep70s2n95.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.011627906977"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6ep70s2n95"},{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="},{"Name":"label","Value":"resources/SharedRes.ar.json"},{"Name":"original-resource","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""}]},{"Route":"resources/SharedRes.ar.6ep70s2n95.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"74"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:01:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6ep70s2n95"},{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="},{"Name":"label","Value":"resources/SharedRes.ar.json"}]},{"Route":"resources/SharedRes.ar.6ep70s2n95.json.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6ep70s2n95"},{"Name":"integrity","Value":"sha256-jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE="},{"Name":"label","Value":"resources/SharedRes.ar.json.gz"}]},{"Route":"resources/SharedRes.ar.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.011627906977"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="},{"Name":"original-resource","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""}]},{"Route":"resources/SharedRes.ar.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.ar.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"74"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:01:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE="}]},{"Route":"resources/SharedRes.ar.json.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"85"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 14:03:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jVRRSyZr3/V/gIij0DCowJqk/+cdZFHf4rLmVWqSATE="}]},{"Route":"resources/SharedRes.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.043478260870"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="},{"Name":"original-resource","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""}]},{"Route":"resources/SharedRes.json","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 05:30:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o="}]},{"Route":"resources/SharedRes.json.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"22"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-c6G0OLAiFRH7Pd4Y4Bn1qwRYEbIkjSXUJOQJgMaDqdw="}]}]} \ 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 new file mode 100644 index 0000000..19f8c64 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +I+zMLUCiiROPW62nnQTM4J7pc2HDlMIKR30RIDBj5bc= \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets.development.json b/obj/Debug/net10.0/staticwebassets.development.json new file mode 100644 index 0000000..14dbb8d --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/bundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/compressed/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/projectbundle/","/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"ECommerceModule.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ECommerceModule.styles.css"},"Patterns":null},"ECommerceModule.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"co8wj9prwu-{0}-5b8rchxmj9-5b8rchxmj9.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"lvozo3cqjc-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"resources":{"Children":{"SharedRes.ar.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"resources/SharedRes.ar.json"},"Patterns":null},"SharedRes.ar.json.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"r5mevp9tpn-{0}-6ep70s2n95-6ep70s2n95.gz"},"Patterns":null},"SharedRes.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"resources/SharedRes.json"},"Patterns":null},"SharedRes.json.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"0mfr2yb45o-{0}-48a6awhjzd-48a6awhjzd.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Common":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"background.png"},"Patterns":null},"Common.dyev8wf6eo.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Common.bundle.scp.css"},"Patterns":null},"Common.dyev8wf6eo.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":3,"Pattern":"**","Depth":2}]},"LayoutLib":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"background.png"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"j230ay6ibu-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"LayoutLib.wql9u47zkx.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":8,"SubPath":"LayoutLib.bundle.scp.css"},"Patterns":null},"LayoutLib.wql9u47zkx.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"s5p096awx1-{0}-wql9u47zkx-wql9u47zkx.gz"},"Patterns":null},"resources":{"Children":{"SharedRes.ar.json":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"resources/SharedRes.ar.json"},"Patterns":null},"SharedRes.ar.json.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"rx6wnqzng0-{0}-w52k902j3l-w52k902j3l.gz"},"Patterns":null},"SharedRes.en.json":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"resources/SharedRes.en.json"},"Patterns":null},"SharedRes.en.json.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"zamg5qeycn-{0}-z8qc8wrh10-z8qc8wrh10.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":6,"Pattern":"**","Depth":2}]},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":9,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":9,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Media":{"Children":{"css":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"css/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"crop.js":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"js/crop.js"},"Patterns":null},"crop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"js/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz"},"Patterns":null},"mediaInterop.js":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"js/mediaInterop.js"},"Patterns":null},"mediaInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"lib/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":10,"SubPath":"lib/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":11,"SubPath":"xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":10,"Pattern":"**","Depth":2}]}},"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/staticwebassets.pack.json b/obj/Debug/net10.0/staticwebassets.pack.json new file mode 100644 index 0000000..2bc34f0 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.pack.json @@ -0,0 +1,45 @@ +{ + "Files": [ + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/Debug/net10.0/scopedcss/projectbundle/ECommerceModule.bundle.scp.css", + "PackagePath": "staticwebassets/ECommerceModule.pg7bw5f13f.bundle.scp.css" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/background.png", + "PackagePath": "staticwebassets/background.png" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/exampleJsInterop.js", + "PackagePath": "staticwebassets/exampleJsInterop.js" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.ar.json", + "PackagePath": "staticwebassets/resources/SharedRes.ar.json" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/wwwroot/resources/SharedRes.json", + "PackagePath": "staticwebassets/resources/SharedRes.json" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.ECommerceModule.Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssetEndpoints.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.ECommerceModule.Microsoft.AspNetCore.StaticWebAssets.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.build.ECommerceModule.props", + "PackagePath": "build\\ECommerceModule.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ECommerceModule.props", + "PackagePath": "buildMultiTargeting\\ECommerceModule.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ECommerceModule.props", + "PackagePath": "buildTransitive\\ECommerceModule.props" + } + ], + "ElementsToRemove": [] +} \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.ECommerceModule.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/obj/Debug/net10.0/staticwebassets/msbuild.ECommerceModule.Microsoft.AspNetCore.StaticWebAssetEndpoints.props new file mode 100644 index 0000000..3de9766 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.ECommerceModule.Microsoft.AspNetCore.StaticWebAssetEndpoints.props @@ -0,0 +1,64 @@ + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\ECommerceModule.pg7bw5f13f.bundle.scp.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\ECommerceModule.pg7bw5f13f.bundle.scp.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\resources\SharedRes.json')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\resources\SharedRes.ar.json')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\resources\SharedRes.ar.json')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\resources\SharedRes.json')) + + + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.ECommerceModule.Microsoft.AspNetCore.StaticWebAssets.props b/obj/Debug/net10.0/staticwebassets/msbuild.ECommerceModule.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..fa1aad6 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.ECommerceModule.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,104 @@ + + + + Package + ECommerceModule + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/ECommerceModule + background.png + All + All + Primary + + + + x2rx4ajns0 + WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY= + Never + PreserveNewest + 378 + Tue, 30 Sep 2025 09:24:51 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + Package + ECommerceModule + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/ECommerceModule + ECommerceModule.pg7bw5f13f.bundle.scp.css + All + Reference + Primary + + ScopedCss + ProjectBundle + pg7bw5f13f + iX5QgViS5FtT1PgBlP3dcUVWlJiBYHLEUxIqsE7/QmI= + Never + PreserveNewest + 201 + Sun, 01 Feb 2026 13:14:51 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\ECommerceModule.pg7bw5f13f.bundle.scp.css')) + + + Package + ECommerceModule + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/ECommerceModule + exampleJsInterop.js + All + All + Primary + + + + luzdqbu196 + Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk= + Never + PreserveNewest + 241 + Tue, 30 Sep 2025 09:24:51 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + Package + ECommerceModule + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/ECommerceModule + resources/SharedRes.json + All + All + Primary + + + + 48a6awhjzd + RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o= + Never + PreserveNewest + 2 + Sun, 21 Dec 2025 05:30:24 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\resources\SharedRes.json')) + + + Package + ECommerceModule + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/ECommerceModule + resources/SharedRes.ar.json + All + All + Primary + + + + 6ep70s2n95 + srNdfrSMJvbb4CgycnkqMDJGJtya40rlw1PqS2eSAUE= + Never + PreserveNewest + 74 + Sun, 01 Feb 2026 14:01:41 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\resources\SharedRes.ar.json')) + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.build.ECommerceModule.props b/obj/Debug/net10.0/staticwebassets/msbuild.build.ECommerceModule.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.build.ECommerceModule.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ECommerceModule.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ECommerceModule.props new file mode 100644 index 0000000..64b17cb --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ECommerceModule.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ECommerceModule.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ECommerceModule.props new file mode 100644 index 0000000..230f223 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ECommerceModule.props @@ -0,0 +1,3 @@ + + + \ 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 new file mode 100644 index 0000000..e69de29 diff --git a/obj/ECommerce.RCL.csproj.nuget.dgspec.json b/obj/ECommerce.RCL.csproj.nuget.dgspec.json new file mode 100644 index 0000000..ca6841d --- /dev/null +++ b/obj/ECommerce.RCL.csproj.nuget.dgspec.json @@ -0,0 +1,2780 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/ECommerce.RCL.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj", + "projectName": "Generic.CL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Backend/TempProjects/Templates/API_Template/ECommerce.Contracts/ECommerce.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/TempProjects/Templates/API_Template/ECommerce.Contracts/ECommerce.Contracts.csproj", + "projectName": "ECommerce.Contracts", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/TempProjects/Templates/API_Template/ECommerce.Contracts/ECommerce.Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/TempProjects/Templates/API_Template/ECommerce.Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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", + "dependencies": { + "FluentValidation": { + "target": "Package", + "version": "[12.1.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.RCL/Carousel.RCL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.RCL/Carousel.RCL.csproj", + "projectName": "Carousel.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.RCL/Carousel.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.RCL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj", + "projectName": "Common.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj", + "projectName": "ImageViewer.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj", + "projectName": "Media.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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", + "dependencies": { + "Blazored.LocalStorage": { + "target": "Package", + "version": "[4.5.0, )" + }, + "Microsoft.AspNetCore.Components.Authorization": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Http": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Localization": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/LayoutLib.RCL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/LayoutLib.RCL.csproj", + "projectName": "LayoutLib.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/LayoutLib.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/ECommerce.RCL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/ECommerce.RCL.csproj", + "projectName": "ECommerce.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/ECommerce.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/TempProjects/Templates/API_Template/ECommerce.Contracts/ECommerce.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/TempProjects/Templates/API_Template/ECommerce.Contracts/ECommerce.Contracts.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.RCL/Carousel.RCL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.RCL/Carousel.RCL.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/LayoutLib.RCL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/LayoutLib.RCL.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Blazored.FluentValidation": { + "target": "Package", + "version": "[2.2.0, )" + }, + "Blazored.LocalStorage": { + "target": "Package", + "version": "[4.5.0, )" + }, + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Localization": { + "target": "Package", + "version": "[10.0.1, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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/ECommerce.RCL.csproj.nuget.g.props b/obj/ECommerce.RCL.csproj.nuget.g.props new file mode 100644 index 0000000..a69bd5e --- /dev/null +++ b/obj/ECommerce.RCL.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + \ No newline at end of file diff --git a/obj/ECommerce.RCL.csproj.nuget.g.targets b/obj/ECommerce.RCL.csproj.nuget.g.targets new file mode 100644 index 0000000..90e881e --- /dev/null +++ b/obj/ECommerce.RCL.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/obj/ECommerceModule.csproj.nuget.dgspec.json b/obj/ECommerceModule.csproj.nuget.dgspec.json new file mode 100644 index 0000000..0229528 --- /dev/null +++ b/obj/ECommerceModule.csproj.nuget.dgspec.json @@ -0,0 +1,2776 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/ECommerceModule.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/ECommerce.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/ECommerce.Contracts.csproj", + "projectName": "ECommerce.Contracts", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/ECommerce.Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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", + "dependencies": { + "FluentValidation": { + "target": "Package", + "version": "[12.1.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "projectName": "Generic", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj", + "projectName": "Carousel", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj", + "projectName": "Common", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.csproj", + "projectName": "ImageViewer", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.csproj", + "projectName": "Media", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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", + "dependencies": { + "Blazored.LocalStorage": { + "target": "Package", + "version": "[4.5.0, )" + }, + "Microsoft.AspNetCore.Components.Authorization": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Http": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Localization": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.csproj", + "projectName": "LayoutLib", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/ECommerceModule.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/ECommerceModule.csproj", + "projectName": "ECommerceModule", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/ECommerceModule.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerceModule/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/ECommerce.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/ECommerce.Contracts.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Blazored.FluentValidation": { + "target": "Package", + "version": "[2.2.0, )" + }, + "Blazored.LocalStorage": { + "target": "Package", + "version": "[4.5.0, )" + }, + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Localization": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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/ECommerceModule.csproj.nuget.g.props b/obj/ECommerceModule.csproj.nuget.g.props new file mode 100644 index 0000000..a69bd5e --- /dev/null +++ b/obj/ECommerceModule.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + \ No newline at end of file diff --git a/obj/ECommerceModule.csproj.nuget.g.targets b/obj/ECommerceModule.csproj.nuget.g.targets new file mode 100644 index 0000000..7e0826c --- /dev/null +++ b/obj/ECommerceModule.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..76d3a95 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,1735 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Blazored.FluentValidation/2.2.0": { + "type": "package", + "dependencies": { + "FluentValidation": "11.9.1", + "Microsoft.AspNetCore.Components.Web": "8.0.6" + }, + "compile": { + "lib/net8.0/Blazored.FluentValidation.dll": {} + }, + "runtime": { + "lib/net8.0/Blazored.FluentValidation.dll": {} + } + }, + "Blazored.LocalStorage/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "8.0.0" + }, + "compile": { + "lib/net8.0/Blazored.LocalStorage.dll": {} + }, + "runtime": { + "lib/net8.0/Blazored.LocalStorage.dll": {} + } + }, + "FluentValidation/12.1.1": { + "type": "package", + "compile": { + "lib/net8.0/FluentValidation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Authorization/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components.Analyzers": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/10.0.1": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Authorization/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.Extensions.Validation": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.AspNetCore.Components.Forms": "10.0.1", + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1", + "Microsoft.JSInterop": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Localization/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Localization.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.Binder": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Validation/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "MudBlazor/8.9.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "compile": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "build": { + "build/MudBlazor.targets": {}, + "buildTransitive/MudBlazor.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/MudBlazor.props": {} + } + }, + "Carousel.RCL/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "compile": { + "bin/placeholder/Carousel.RCL.dll": {} + }, + "runtime": { + "bin/placeholder/Carousel.RCL.dll": {} + } + }, + "Common.RCL/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Generic.CL": "1.0.0", + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "compile": { + "bin/placeholder/Common.RCL.dll": {} + }, + "runtime": { + "bin/placeholder/Common.RCL.dll": {} + } + }, + "ECommerce.Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "FluentValidation": "12.1.1" + }, + "compile": { + "bin/placeholder/ECommerce.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/ECommerce.Contracts.dll": {} + } + }, + "Generic.CL/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/Generic.CL.dll": {} + }, + "runtime": { + "bin/placeholder/Generic.CL.dll": {} + } + }, + "ImageViewer.RCL/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "compile": { + "bin/placeholder/ImageViewer.RCL.dll": {} + }, + "runtime": { + "bin/placeholder/ImageViewer.RCL.dll": {} + } + }, + "LayoutLib.RCL/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Common.RCL": "1.0.0", + "Microsoft.AspNetCore.Components.Web": "10.0.1", + "MudBlazor": "8.9.0" + }, + "compile": { + "bin/placeholder/LayoutLib.RCL.dll": {} + }, + "runtime": { + "bin/placeholder/LayoutLib.RCL.dll": {} + } + }, + "Media.RCL/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Blazored.LocalStorage": "4.5.0", + "Microsoft.AspNetCore.Components.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components.Web": "10.0.1", + "Microsoft.Extensions.Http": "10.0.1", + "Microsoft.Extensions.Localization": "10.0.1" + }, + "compile": { + "bin/placeholder/Media.RCL.dll": {} + }, + "runtime": { + "bin/placeholder/Media.RCL.dll": {} + } + } + } + }, + "libraries": { + "Blazored.FluentValidation/2.2.0": { + "sha512": "lBSHW7faCJqwn7KtZt6vqHSiyGvTL5McpS4sQUW3RLu2R5eMmf4oolFeufZfcAB8TV8iI+/PYouz7sn773E8Og==", + "type": "package", + "path": "blazored.fluentvalidation/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "blazored.fluentvalidation.2.2.0.nupkg.sha512", + "blazored.fluentvalidation.nuspec", + "icon.png", + "lib/net6.0/Blazored.FluentValidation.dll", + "lib/net7.0/Blazored.FluentValidation.dll", + "lib/net8.0/Blazored.FluentValidation.dll" + ] + }, + "Blazored.LocalStorage/4.5.0": { + "sha512": "6nZuJwA7zNIKx83IsObiHXZb09ponJOpCClU3en+hI8ZFvrOKXeOw+H7TegQZQrvdR1n9fkrVkEBQZg8vx6ZTw==", + "type": "package", + "path": "blazored.localstorage/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "blazored.localstorage.4.5.0.nupkg.sha512", + "blazored.localstorage.nuspec", + "icon.png", + "lib/net6.0/Blazored.LocalStorage.dll", + "lib/net7.0/Blazored.LocalStorage.dll", + "lib/net8.0/Blazored.LocalStorage.dll" + ] + }, + "FluentValidation/12.1.1": { + "sha512": "EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==", + "type": "package", + "path": "fluentvalidation/12.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.12.1.1.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net8.0/FluentValidation.dll", + "lib/net8.0/FluentValidation.xml" + ] + }, + "Microsoft.AspNetCore.Authorization/10.0.1": { + "sha512": "Y9QE0gH4Q4cR7ZRToFju47c1MoeqxaLHdpzOviqD2TmnGGAeDMT9AV56j2BOVm5CsJAVyI/USxLYrkk2NVinZA==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net10.0/Microsoft.AspNetCore.Authorization.xml", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "sha512": "SbABcQ7soM9jC/HvPKrg/smQxsMD2gW9iHBRFtBiYTMSs5Vqh7+i47BTOe3OM3IGzly2FiOmeNHJhMYK7YFGWA==", + "type": "package", + "path": "microsoft.aspnetcore.components/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/10.0.1": { + "sha512": "V4nOq0mNoX9OWz9pJz4uLcAu4GXWUKKHeoxKwugYhFOh4Yh3n7/+xXfgSXK1PZZOIQ3e1vJ7CNvB6evv4YphEA==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll", + "build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "microsoft.aspnetcore.components.analyzers.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Authorization/10.0.1": { + "sha512": "Ahez1F0EfsPqIT/X/TcdJCDYjVACHJwIPgZSof33wqLXaENUJNDnzphkmXOiBY1tvok/ZIUVEpeFLWdkLh0IyA==", + "type": "package", + "path": "microsoft.aspnetcore.components.authorization/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.Authorization.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.Authorization.xml", + "microsoft.aspnetcore.components.authorization.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "sha512": "aWUpLOz749gwMMaKe81tet+INC8nfskbauF2VO5Qr3lspj/l8S24zNLr95Bl8EwAizvBCNqwb8fPFU1dnn3WbA==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "sha512": "hX74ijqAiUfIo6WpvLWignGYp7tkrRR3KRVBErwFSAcsiHeaCxGM81fYRXd9rf+gkFUNoKvcSxYyVZc2vFJVXg==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "sha512": "6JrG03xROuR4mQIHGcT8OnaKVBoPLLbto5RicKQIUV3JIU7cZYKIWDAnk0SQcl7ziQr6R327D6QBOo+PbYnnrw==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net10.0/Microsoft.AspNetCore.Metadata.xml", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "sha512": "njoRekyMIK+smav8B6KL2YgIfUtlsRNuT7wvurpLW+m/hoRKVnoELk2YxnUnWRGScCd1rukLMxShwLqEOKowDg==", + "type": "package", + "path": "microsoft.extensions.configuration/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.xml", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "sha512": "kPlU11hql+L9RjrN2N9/0GcRcRcZrNFlLLjadasFWeBORT6pL6OE+RYRk90GGCyVGSxTK+e1/f3dsMj5zpFFiQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "sha512": "Lp4CZIuTVXtlvkAnTq6QvMSW7+H62gX2cU2vdFxHQUxvrWTpi7LwYI3X+YAyIS0r12/p7gaosco7efIxL4yFNw==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "sha512": "zerXV0GAR9LCSXoSIApbWn+Dq1/T+6vbXMHGduq1LoVQRHT0BXsGQEau0jeLUBUcsoF/NaUT8ADPu8b+eNcIyg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.10.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "sha512": "oIy8fQxxbUsSrrOvgBqlVgOeCtDmrcynnTG+FQufcUWBrwyPfwlUkCDB2vaiBeYPyT+20u9/HeuHeBf+H4F/8g==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "sha512": "YaocqxscJLxLit0F5yq2XyB+9C7rSRfeTL7MJIl7XwaOoUO3i0EqfO2kmtjiRduYWw7yjcSINEApYZbzjau2gQ==", + "type": "package", + "path": "microsoft.extensions.diagnostics/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", + "microsoft.extensions.diagnostics.10.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "sha512": "QMoMrkNpnQym5mpfdxfxpRDuqLpsOuztguFvzH9p+Ex+do+uLFoi7UkAsBO4e9/tNR3eMFraFf2fOAi2cp3jjA==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Http/10.0.1": { + "sha512": "ZXJup9ReE1Ot3M8jqcw1b/lnc8USxyYS3cyLsssU39u04TES9JNGviWUGIvP3K7mMU3TF7kQl2aS0SmVwegflw==", + "type": "package", + "path": "microsoft.extensions.http/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Http.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Http.targets", + "lib/net10.0/Microsoft.Extensions.Http.dll", + "lib/net10.0/Microsoft.Extensions.Http.xml", + "lib/net462/Microsoft.Extensions.Http.dll", + "lib/net462/Microsoft.Extensions.Http.xml", + "lib/net8.0/Microsoft.Extensions.Http.dll", + "lib/net8.0/Microsoft.Extensions.Http.xml", + "lib/net9.0/Microsoft.Extensions.Http.dll", + "lib/net9.0/Microsoft.Extensions.Http.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.10.0.1.nupkg.sha512", + "microsoft.extensions.http.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Localization/10.0.1": { + "sha512": "yJBI3IRm9uTRu7cPc7i90/8+CuiiJJ5M4khj6iWQcYnq6VrG+H2U5GzpRLtkVCsgxc1LjtkNMEbSDatfBA+z5g==", + "type": "package", + "path": "microsoft.extensions.localization/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Localization.dll", + "lib/net10.0/Microsoft.Extensions.Localization.xml", + "lib/net462/Microsoft.Extensions.Localization.dll", + "lib/net462/Microsoft.Extensions.Localization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", + "microsoft.extensions.localization.10.0.1.nupkg.sha512", + "microsoft.extensions.localization.nuspec" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "sha512": "TQSQWF+iZdtGNgPiu7gKUqrTEeRD/mhk7KeYiuEwmTUPbawsYfPSNzSvOOeueJ0nU1697X8HZ2vCp2ByHNHkZg==", + "type": "package", + "path": "microsoft.extensions.localization.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml", + "microsoft.extensions.localization.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.localization.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/10.0.1": { + "sha512": "9ItMpMLFZFJFqCuHLLbR3LiA4ahA8dMtYuXpXl2YamSDWZhYS9BruPprkftY0tYi2bQ0slNrixdFm+4kpz1g5w==", + "type": "package", + "path": "microsoft.extensions.logging/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net10.0/Microsoft.Extensions.Logging.dll", + "lib/net10.0/Microsoft.Extensions.Logging.xml", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "sha512": "YkmyiPIWAXVb+lPIrM0LE5bbtLOJkCiRTFiHpkVOvhI7uTvCfoOHLEN0LcsY56GpSD7NqX3gJNpsaDe87/B3zg==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/10.0.1": { + "sha512": "G6VVwywpJI4XIobetGHwg7wDOYC2L2XBYdtskxLaKF/Ynb5QBwLl7Q//wxAR2aVCLkMpoQrjSP9VoORkyddsNQ==", + "type": "package", + "path": "microsoft.extensions.options/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net10.0/Microsoft.Extensions.Options.dll", + "lib/net10.0/Microsoft.Extensions.Options.xml", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.10.0.1.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "sha512": "pL78/Im7O3WmxHzlKUsWTYchKL881udU7E26gCD3T0+/tPhWVfjPwMzfN/MRKU7aoFYcOiqcG2k1QTlH5woWow==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "sha512": "DO8XrJkp5x4PddDuc/CH37yDBCs9BYN6ijlKyR3vMb55BP1Vwh90vOX8bNfnKxr5B2qEI3D8bvbY1fFbDveDHQ==", + "type": "package", + "path": "microsoft.extensions.primitives/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net10.0/Microsoft.Extensions.Primitives.dll", + "lib/net10.0/Microsoft.Extensions.Primitives.xml", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.10.0.1.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Validation/10.0.1": { + "sha512": "5bcu9zWhgY8AZUN1ERNH0BQKFh10xlx4UrCh+0cDn7wB01QkrK4S6Jh45fCgEqmWJWVGqBS2g8MN0Lu/99Zgdg==", + "type": "package", + "path": "microsoft.extensions.validation/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Validation.ValidationsGenerator.dll", + "lib/net10.0/Microsoft.Extensions.Validation.dll", + "lib/net10.0/Microsoft.Extensions.Validation.xml", + "microsoft.extensions.validation.10.0.1.nupkg.sha512", + "microsoft.extensions.validation.nuspec" + ] + }, + "Microsoft.JSInterop/10.0.1": { + "sha512": "pTfoYBjs7HKmTEk9cNWcSySdTKT8USjviLgmMaSs/YA0+oONufKy9hqqZ5EE4CNy9y24SDDc9lerXfV7aiVfWA==", + "type": "package", + "path": "microsoft.jsinterop/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.JSInterop.dll", + "lib/net10.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.10.0.1.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "MudBlazor/8.9.0": { + "sha512": "KdjXMXiSvl6uNr+S2YDhGI1aX/TULMQejQSniMlp6QTss35NKFrJyrMAmN082HNvOObuKdnTtLpntJ7rM5Op/A==", + "type": "package", + "path": "mudblazor/8.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Nuget.png", + "README.md", + "analyzers/dotnet/cs/MudBlazor.Analyzers.dll", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/MudBlazor.props", + "build/MudBlazor.targets", + "buildMultiTargeting/MudBlazor.props", + "buildTransitive/MudBlazor.props", + "lib/net8.0/MudBlazor.dll", + "lib/net8.0/MudBlazor.xml", + "lib/net9.0/MudBlazor.dll", + "lib/net9.0/MudBlazor.xml", + "mudblazor.8.9.0.nupkg.sha512", + "mudblazor.nuspec", + "staticwebassets/MudBlazor.min.css", + "staticwebassets/MudBlazor.min.js" + ] + }, + "Carousel.RCL/1.0.0": { + "type": "project", + "path": "../../../../../Generic/Carousel/Carousel.RCL/Carousel.RCL.csproj", + "msbuildProject": "../../../../../Generic/Carousel/Carousel.RCL/Carousel.RCL.csproj" + }, + "Common.RCL/1.0.0": { + "type": "project", + "path": "../../../../../Generic/Common/Common.RCL/Common.RCL.csproj", + "msbuildProject": "../../../../../Generic/Common/Common.RCL/Common.RCL.csproj" + }, + "ECommerce.Contracts/1.0.0": { + "type": "project", + "path": "../../../../../../../Backend/TempProjects/Templates/API_Template/ECommerce.Contracts/ECommerce.Contracts.csproj", + "msbuildProject": "../../../../../../../Backend/TempProjects/Templates/API_Template/ECommerce.Contracts/ECommerce.Contracts.csproj" + }, + "Generic.CL/1.0.0": { + "type": "project", + "path": "../../../../../../../Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj", + "msbuildProject": "../../../../../../../Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj" + }, + "ImageViewer.RCL/1.0.0": { + "type": "project", + "path": "../../../../../Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj", + "msbuildProject": "../../../../../Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj" + }, + "LayoutLib.RCL/1.0.0": { + "type": "project", + "path": "../../../../../Layouts/LayoutLib/LayoutLib.RCL/LayoutLib.RCL.csproj", + "msbuildProject": "../../../../../Layouts/LayoutLib/LayoutLib.RCL/LayoutLib.RCL.csproj" + }, + "Media.RCL/1.0.0": { + "type": "project", + "path": "../../../../../Generic/Media/Media.RCL/Media.RCL.csproj", + "msbuildProject": "../../../../../Generic/Media/Media.RCL/Media.RCL.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Blazored.FluentValidation >= 2.2.0", + "Blazored.LocalStorage >= 4.5.0", + "Carousel.RCL >= 1.0.0", + "Common.RCL >= 1.0.0", + "ECommerce.Contracts >= 1.0.0", + "Generic.CL >= 1.0.0", + "ImageViewer.RCL >= 1.0.0", + "LayoutLib.RCL >= 1.0.0", + "Media.RCL >= 1.0.0", + "Microsoft.AspNetCore.Components.Web >= 10.0.1", + "Microsoft.Extensions.Localization >= 10.0.1", + "MudBlazor >= 8.9.0" + ] + }, + "packageFolders": { + "/home/yla/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/ECommerce.RCL.csproj", + "projectName": "ECommerce.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/ECommerce.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/TempProjects/Templates/API_Template/ECommerce.Contracts/ECommerce.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/TempProjects/Templates/API_Template/ECommerce.Contracts/ECommerce.Contracts.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.RCL/Carousel.RCL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.RCL/Carousel.RCL.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/LayoutLib.RCL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/LayoutLib.RCL.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Blazored.FluentValidation": { + "target": "Package", + "version": "[2.2.0, )" + }, + "Blazored.LocalStorage": { + "target": "Package", + "version": "[4.5.0, )" + }, + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Localization": { + "target": "Package", + "version": "[10.0.1, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.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.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.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.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.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 new file mode 100644 index 0000000..9b739b7 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,37 @@ +{ + "version": 2, + "dgSpecHash": "qcKk8CBlt+0=", + "success": true, + "projectFilePath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Modules/ERP/Commerce/ECommerce/ECommerce.RCL/ECommerce.RCL.csproj", + "expectedPackageFiles": [ + "/home/yla/.nuget/packages/blazored.fluentvalidation/2.2.0/blazored.fluentvalidation.2.2.0.nupkg.sha512", + "/home/yla/.nuget/packages/blazored.localstorage/4.5.0/blazored.localstorage.4.5.0.nupkg.sha512", + "/home/yla/.nuget/packages/fluentvalidation/12.1.1/fluentvalidation.12.1.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.authorization/10.0.1/microsoft.aspnetcore.authorization.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.components/10.0.1/microsoft.aspnetcore.components.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.components.analyzers/10.0.1/microsoft.aspnetcore.components.analyzers.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.components.authorization/10.0.1/microsoft.aspnetcore.components.authorization.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.components.forms/10.0.1/microsoft.aspnetcore.components.forms.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.components.web/10.0.1/microsoft.aspnetcore.components.web.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.metadata/10.0.1/microsoft.aspnetcore.metadata.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration/10.0.1/microsoft.extensions.configuration.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.1/microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.binder/10.0.1/microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection/10.0.1/microsoft.extensions.dependencyinjection.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.1/microsoft.extensions.dependencyinjection.abstractions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.diagnostics/10.0.1/microsoft.extensions.diagnostics.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.diagnostics.abstractions/10.0.1/microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.http/10.0.1/microsoft.extensions.http.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.localization/10.0.1/microsoft.extensions.localization.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.localization.abstractions/10.0.1/microsoft.extensions.localization.abstractions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging/10.0.1/microsoft.extensions.logging.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.1/microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.options/10.0.1/microsoft.extensions.options.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.options.configurationextensions/10.0.1/microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.primitives/10.0.1/microsoft.extensions.primitives.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.validation/10.0.1/microsoft.extensions.validation.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.jsinterop/10.0.1/microsoft.jsinterop.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/mudblazor/8.9.0/mudblazor.8.9.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/wwwroot/background.png b/wwwroot/background.png new file mode 100644 index 0000000..e15a3bd Binary files /dev/null and b/wwwroot/background.png differ diff --git a/wwwroot/exampleJsInterop.js b/wwwroot/exampleJsInterop.js new file mode 100644 index 0000000..ea8d76a --- /dev/null +++ b/wwwroot/exampleJsInterop.js @@ -0,0 +1,6 @@ +// This is a JavaScript module that is loaded on demand. It can export any number of +// functions, and may import other JavaScript modules if required. + +export function showPrompt(message) { + return prompt(message, 'Type anything here'); +} diff --git a/wwwroot/resources/SharedRes.ar.json b/wwwroot/resources/SharedRes.ar.json new file mode 100644 index 0000000..aa37110 --- /dev/null +++ b/wwwroot/resources/SharedRes.ar.json @@ -0,0 +1,4 @@ +{ + "Hello": "Commerce Hello", + "See_More": "رؤية المزيد" +} \ No newline at end of file diff --git a/wwwroot/resources/SharedRes.json b/wwwroot/resources/SharedRes.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/wwwroot/resources/SharedRes.json @@ -0,0 +1 @@ +{} \ No newline at end of file